Updating for proper loadListing
[arvados-tutorial.git] / RNA-Seq / cwl / RNA-seq-wf.cwl
index 8da505cd8bb507ae0c6829860954ffcdccb1b61d..cb00e167719a37d2f2b09c88e44fd92194f64fdd 100644 (file)
@@ -1,9 +1,11 @@
 cwlVersion: v1.2
 class: Workflow
-label: RNAseq CWL practice workflow
+label: RNAseq workflow 
 
 inputs:
-  fq: File[]
+  fqdir: 
+    type: Directory 
+    loadListing: shallow_listing
   genome: Directory
   gtf: File
 
@@ -12,7 +14,8 @@ steps:
     run: helper/alignment.cwl
     scatter: fq
     in:
-      fq: fq
+      fq:
+        valueFrom: $(inputs.fqdir.listing)
       genome: genome
       gtf: gtf
     out: [qc_html, bam_sorted_indexed]
@@ -30,7 +33,8 @@ steps:
   output-subdirs:
     run: helper/subdirs.cwl
     in:
-      fq: fq
+      fq: 
+       valueFrom: $(inputs.fqdir.listing)
       bams: alignment/bam_sorted_indexed
       qc: alignment/qc_html
     out: [dirs]
@@ -47,3 +51,4 @@ outputs:
 requirements:
   SubworkflowFeatureRequirement: {}
   ScatterFeatureRequirement: {}
+  StepInputExpressionRequirement: {}