Moving to directory
[arvados-tutorial.git] / RNA-Seq / cwl / helper / alignment.cwl
index 6712aae6b83c7957840320eeaf3597fb3d717827..702ba05b8a0d454f81def6d9e088c517cc91e8b8 100644 (file)
@@ -1,6 +1,6 @@
 cwlVersion: v1.2
 class: Workflow
-label: RNAseq CWL practice workflow
+label: RNAseq Alignment workflow
 
 inputs:
   fq: File
@@ -12,7 +12,7 @@ requirements:
 
 steps:
   fastqc:
-    run: bio-cwl-tools/fastqc/fastqc_2.cwl
+    run: fastqc_2.cwl
     in:
       reads_file: fq
     out: [html_file]
@@ -21,7 +21,7 @@ steps:
     requirements:
       ResourceRequirement:
         ramMin: 9000
-    run: bio-cwl-tools/STAR/STAR-Align.cwl
+    run: STAR-Align.cwl
     in:
       RunThreadN: {default: 4}
       GenomeDir: genome
@@ -29,12 +29,11 @@ steps:
       OutSAMtype: {default: BAM}
       SortedByCoordinate: {default: true}
       OutSAMunmapped: {default: Within}
-      ### 1. Expressions on step inputs
       OutFileNamePrefix: {valueFrom: "$(inputs.ForwardReads.nameroot)."}
     out: [alignment]
 
   samtools:
-    run: bio-cwl-tools/samtools/samtools_index.cwl
+    run: samtools_index.cwl
     in:
       bam_sorted: STAR/alignment
     out: [bam_sorted_indexed]