Skip to content

Commit 6e62500

Browse files
authored
Fix
1 parent 95590f7 commit 6e62500

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

workflow/rules/pbrun_genotypegvcf.smk

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ rule pbrun_genotypegvcf:
44
refgenome = expand("{refgenome}", refgenome = config['REFGENOME'])
55
output:
66
protected("../results/called/{family}_raw_snps_indels.g.vcf")
7-
resources:
8-
gpu = config['GPU']
97
log:
108
"logs/pbrun_genotypegvcf/{family}.log"
119
benchmark:
1210
"benchmarks/pbrun_genotypegvcf/{family}.tsv"
1311
message:
1412
"Performing joint genotyping on one or more samples pre-called with HaplotypeCaller for {input.gvcf}"
1513
shell:
16-
"pbrun genotypegvcf --in-gvcf {input.gvcf} --ref {input.refgenome} --out-vcf {output} --num-gpus {resources.gpu} &> {log}"
14+
"pbrun genotypegvcf --in-gvcf {input.gvcf} --ref {input.refgenome} --out-vcf {output} &> {log}"

0 commit comments

Comments
 (0)