Fixing labels for knownsites
[arvados-tutorial.git] / WGS-processing / cwl / helper / gatk-wf-with-interval.cwl
index a5d1993652859aacc0430f982f2b50851336d8ac..b3ea17f6eefda46ac0616ae4eeee0d4507768d73 100644 (file)
@@ -3,7 +3,7 @@ class: Workflow
 label: Variant calling workflow for given interval
 
 requirements:
-  - class: SubworkflowFeatureRequirement
+  SubworkflowFeatureRequirement: {}
 
 inputs:
   bam:
@@ -27,10 +27,16 @@ inputs:
   sample:
     type: string
     label: Sample Name
-  knownsites:
+  knownsites1:
     type: File
     format: edam:format_3016 # VCF
-    label: VCF of known polymorphic sites for BQSR
+    label: VCF of known SNPS sites for BQSR
+    secondaryFiles:
+      - .idx
+  knownsites2:
+    type: File
+    format: edam:format_3016 # VCF
+    label: VCF of known indel sites for BQSR
     secondaryFiles:
       - .tbi
   intervallist:
@@ -51,7 +57,8 @@ steps:
       bam: bam
       reference: reference
       sample: sample
-      knownsites: knownsites
+      knownsites1: knownsites1
+      knownsites2: knownsites2
       intervallist: intervallist
     out: [recaltable]
   applyBQSR: