Rearranging for clarity
[arvados-tutorial.git] / cwl / helper / gatk-selectvariants.cwl
diff --git a/cwl/helper/gatk-selectvariants.cwl b/cwl/helper/gatk-selectvariants.cwl
deleted file mode 100644 (file)
index 66b5d5c..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-cwlVersion: v1.1
-class: CommandLineTool
-
-$namespaces:
-  arv: "http://arvados.org/cwl#"
-  cwltool: "http://commonwl.org/cwltool#"
-
-requirements:
-  DockerRequirement:
-    dockerPull: broadinstitute/gatk:4.1.7.0
-
-hints:
-  arv:RuntimeConstraints:
-    outputDirType: keep_output_dir
-    keep_cache: 1024
-  ResourceRequirement:
-    ramMin: 5000
-    coresMin: 2
-
-inputs:
-  gvcf:
-    type: File
-    secondaryFiles:
-      - .tbi
-  reference:
-    type: File
-    secondaryFiles:
-      - .amb
-      - .ann
-      - .bwt
-      - .pac
-      - .sa
-      - .fai
-      - ^.dict
-  sample: string
-
-outputs:
-  filteredgvcf:
-    type: File
-    outputBinding:
-      glob: "*g.vcf.gz"
-
-baseCommand: /gatk/gatk
-
-arguments:
-  - "--java-options"
-  - "-Xmx4G"
-  - SelectVariants 
-  - prefix: "-R"
-    valueFrom: $(inputs.reference)
-  - prefix: "--remove-unused-alternates"
-    valueFrom: "true"
-  - prefix: "-V"
-    valueFrom: $(inputs.gvcf.path)
-  - prefix: "-O"
-    valueFrom: selected$(inputs.gvcf.basename)