X-Git-Url: https://git.arvados.org/arvados-tutorial.git/blobdiff_plain/e765e4108a00e88c4738908835baff52e4abb54a:/cwl/gatk-baserecalibrator.cwl..cc2f0d302b6f536f680a8459b12ec9972c9507ff:/cwl/helper/static/gitweb.js diff --git a/cwl/gatk-baserecalibrator.cwl b/cwl/gatk-baserecalibrator.cwl deleted file mode 100644 index a5105e8..0000000 --- a/cwl/gatk-baserecalibrator.cwl +++ /dev/null @@ -1,62 +0,0 @@ -cwlVersion: v1.1 -class: CommandLineTool -label: Generating recalibration table for BQSR - -$namespaces: - arv: "http://arvados.org/cwl#" - cwltool: "http://commonwl.org/cwltool#" - -requirements: - DockerRequirement: - dockerPull: broadinstitute/gatk:4.1.7.0 - InitialWorkDirRequirement: - listing: - - $(inputs.bam) - -hints: - arv:RuntimeConstraints: - outputDirType: keep_output_dir - keep_cache: 1024 - ResourceRequirement: - ramMin: 5000 - coresMin: 2 - -inputs: - bam: - type: File - reference: - type: File - secondaryFiles: - - .amb - - .ann - - .bwt - - .pac - - .sa - - .fai - - ^.dict - sample: string - knownsites1: - type: File - secondaryFiles: - - .tbi - -outputs: - recaltable: - type: File - outputBinding: - glob: "*.table" - -baseCommand: /gatk/gatk - -arguments: - - "--java-options" - - "-Xmx4G" - - BaseRecalibrator - - prefix: "-R" - valueFrom: $(inputs.reference) - - prefix: "-I" - valueFrom: $(inputs.bam.basename) - - prefix: "--known-sites" - valueFrom: $(inputs.knownsites1) - - prefix: "-O" - valueFrom: $(inputs.sample)_recal_data.table