Add tabs, arvados specific instructions & links to solutions
[rnaseq-cwl-training.git] / assets / answers / ep5 / part1 / static / gitweb.js
diff --git a/answers/ep5/part2/alignment.cwl b/answers/ep5/part2/alignment.cwl
deleted file mode 100644 (file)
index 8ab6bd2..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-cwlVersion: v1.2
-class: Workflow
-label: RNAseq CWL practice workflow
-
-inputs:
-  fq: File
-  genome: Directory
-  gtf: File
-
-steps:
-  fastqc:
-    run: bio-cwl-tools/fastqc/fastqc_2.cwl
-    in:
-      reads_file: fq
-    out: [html_file]
-
-  STAR:
-    requirements:
-      ResourceRequirement:
-        ramMin: 9000
-    run: bio-cwl-tools/STAR/STAR-Align.cwl
-    in:
-      RunThreadN: {default: 4}
-      GenomeDir: genome
-      ForwardReads: fq
-      OutSAMtype: {default: BAM}
-      OutSAMunmapped: {default: Within}
-    out: [alignment]
-
-  samtools:
-    run: bio-cwl-tools/samtools/samtools_index.cwl
-    in:
-      bam_sorted: STAR/alignment
-    out: [bam_sorted_indexed]
-
-  featureCounts:
-    requirements:
-      ResourceRequirement:
-        ramMin: 500
-    run: featureCounts.cwl
-    in:
-      counts_input_bam: samtools/bam_sorted_indexed
-      gtf: gtf
-    out: [featurecounts]
-
-outputs:
-  qc_html:
-    type: File
-    outputSource: fastqc/html_file
-  bam_sorted_indexed:
-    type: File
-    outputSource: samtools/bam_sorted_indexed
-
-  featurecounts:
-    type: File
-    outputSource: featureCounts/featurecounts