Skip to content

Commit

Permalink
fixed SNPsVariantRecalibrator syntax for resources parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bshifaw committed Jan 13, 2020
1 parent 2407524 commit 56fd73d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions joint-discovery-gatk4-local.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -670,10 +670,10 @@ task SNPsVariantRecalibrator {
-mode SNP \
${"--input-model " + model_report + " --output-tranches-for-scatter "} \
--max-gaussians 6 \
--resource:hapmap,known=false,training=true,truth=true,prior=15:${hapmap_resource_vcf} \
--resource:omni,known=false,training=true,truth=true,prior=12:${omni_resource_vcf} \
--resource:1000G,known=false,training=true,truth=false,prior=10:${one_thousand_genomes_resource_vcf} \
--resource:dbsnp,known=true,training=false,truth=false,prior=7:${dbsnp_resource_vcf}
--resource:hapmap,known=false,training=true,truth=true,prior=15 ${hapmap_resource_vcf} \
--resource:omni,known=false,training=true,truth=true,prior=12 ${omni_resource_vcf} \
--resource:1000G,known=false,training=true,truth=false,prior=10 ${one_thousand_genomes_resource_vcf} \
--resource:dbsnp,known=true,training=false,truth=false,prior=7 ${dbsnp_resource_vcf}
}
runtime {
docker: docker
Expand Down

0 comments on commit 56fd73d

Please sign in to comment.