Rearranging for clarity
[arvados-tutorial.git] / cwl / helper / not-in-use / samtools-fixmate.cwl
diff --git a/cwl/helper/not-in-use/samtools-fixmate.cwl b/cwl/helper/not-in-use/samtools-fixmate.cwl
deleted file mode 100644 (file)
index 61d5c1f..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-cwlVersion: v1.1
-class: CommandLineTool
-
-$namespaces:
-  arv: "http://arvados.org/cwl#"
-  cwltool: "http://commonwl.org/cwltool#"
-
-requirements:
-  DockerRequirement:
-    dockerPull: curii/bwa-samtools-picard
-  ShellCommandRequirement: {}
-  ResourceRequirement:
-    ramMin: 10000
-    coresMin: 4
-
-hints:
-  arv:RuntimeConstraints:
-    outputDirType: keep_output_dir
-
-inputs:
-  bam: File
-  sample: string
-
-outputs:
-  out:
-    type: File
-    outputBinding:
-      glob: "*fixed.bam"
-
-baseCommand: samtools
-
-arguments:
-  - fixmate 
-  - -O
-  - "bam"
-  - $(inputs.bam.path)
-  - $(runtime.outdir)/$(inputs.sample).fixed.bam