We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95590f7 commit 6e62500Copy full SHA for 6e62500
workflow/rules/pbrun_genotypegvcf.smk
@@ -4,13 +4,11 @@ rule pbrun_genotypegvcf:
4
refgenome = expand("{refgenome}", refgenome = config['REFGENOME'])
5
output:
6
protected("../results/called/{family}_raw_snps_indels.g.vcf")
7
- resources:
8
- gpu = config['GPU']
9
log:
10
"logs/pbrun_genotypegvcf/{family}.log"
11
benchmark:
12
"benchmarks/pbrun_genotypegvcf/{family}.tsv"
13
message:
14
"Performing joint genotyping on one or more samples pre-called with HaplotypeCaller for {input.gvcf}"
15
shell:
16
- "pbrun genotypegvcf --in-gvcf {input.gvcf} --ref {input.refgenome} --out-vcf {output} --num-gpus {resources.gpu} &> {log}"
+ "pbrun genotypegvcf --in-gvcf {input.gvcf} --ref {input.refgenome} --out-vcf {output} &> {log}"
0 commit comments