updating metadata
[arvados-tutorial.git] / WGS-processing / cwl / helper / gatk-wf-with-interval.cwl
index e1e54eeef1d39b613f235b7fc4410a9c6414f205..cf815a5178cb9ab03c769f5acc11de7fe5f8fd8e 100644 (file)
@@ -1,6 +1,6 @@
 cwlVersion: v1.1
 class: Workflow
-label: Variant calling workflow for single interval 
+label: Variant calling workflow for given interval 
 
 requirements:
   - class: SubworkflowFeatureRequirement
@@ -8,10 +8,14 @@ requirements:
 inputs:
   bam:
     type: File
+    format: edam:format_2572 # BAM
+    label: Indexed sorted BAM with labeled duplicates
     secondaryFiles:
       - .bai
   reference:
     type: File
+    format: edam:format_1929 # FASTA
+    label: Reference genome
     secondaryFiles:
       - .amb
       - .ann
@@ -20,17 +24,24 @@ inputs:
       - .sa
       - .fai
       - ^.dict
-  sample: string
+  sample: 
+    type: string
+    label: Sample Name
   knownsites1:
     type: File
+    format: edam:format_3016 # VCF
+    label: VCF of known polymorphic sites for BQSR
     secondaryFiles:
       - .tbi
   intervallist:
     type: File
+    label: Scatter intervals file 
 
 outputs:
   gvcf:
     type: File
+    format: edam:format_3016 # GVCF
+    label: Given interval filtered GVCF
     outputSource: selectvariants/filteredgvcf
 
 steps: