X-Git-Url: https://git.arvados.org/arvados-tutorial.git/blobdiff_plain/4452835b3d539a461619efb8c935ccbbc00a35ab..f16e6e59b1b76019fa08892a347cde18409ccdce:/cwl/gatk-haplotypecaller.cwl diff --git a/cwl/gatk-haplotypecaller.cwl b/cwl/gatk-haplotypecaller.cwl index ae34a00..f101783 100644 --- a/cwl/gatk-haplotypecaller.cwl +++ b/cwl/gatk-haplotypecaller.cwl @@ -11,7 +11,7 @@ requirements: hints: ResourceRequirement: - ramMin: 10000 + ramMin: 20000 coresMin: 4 inputs: @@ -37,16 +37,23 @@ outputs: outputBinding: glob: "*vcf.gz" +baseCommand: /gatk/gatk + arguments: - - java - - -jar - - /gatk/gatk.jar + - "--java-options" + - "-Xmx8G" - HaplotypeCaller - - -R - - $(inputs.reference) - - -I - - $(inputs.bam) - - -O - - $(runtime.outdir)/$(inputs.sample).gatk.g.vcf.gz - - -ERC - - "GVCF" + - prefix: "-R" + valueFrom: $(inputs.reference) + - prefix: "-I" + valueFrom: $(inputs.bam) + - prefix: "-O" + valueFrom: $(runtime.outdir)/$(inputs.sample).gatk.g.vcf.gz + - prefix: "-ERC" + valueFrom: "GVCF" + - prefix: "-GQB" + valueFrom: "5" + - prefix: "-GQB" + valueFrom: "20" + - prefix: "-GQB" + valueFrom: "60"