Skip to content
Snippets Groups Projects
Commit c0a39ab8 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Update changes to reflect only the change in order of steps. Fix output files.

parent ecf2f89e
Branches
Tags
2 merge requests!58Develop,!50Add back parallel trim step. Moved fastqc step after trim.
Pipeline #8367 failed with stages
in 15 seconds
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* Make pull references from BioHPC default (including in biohpc.config) * Make pull references from BioHPC default (including in biohpc.config)
* Start using new gudmaprbk dockerhub (images autobuilt) * Start using new gudmaprbk dockerhub (images autobuilt)
* Moved consistency checks to be fully python * Moved consistency checks to be fully python
* Added back parallel form of trim_galore and now use fastqc after trim step * Changed order of steps so that fastqc is done after the trim step
*Known Bugs* *Known Bugs*
* Datahub reference pull uses dev.gudmap.org as source until referencencs are placed on production * Datahub reference pull uses dev.gudmap.org as source until referencencs are placed on production
......
...@@ -341,7 +341,7 @@ process trimData { ...@@ -341,7 +341,7 @@ process trimData {
output: output:
path ("*.fq.gz") into fastqsTrim path ("*.fq.gz") into fastqsTrim
path ("*.fastq.gz") into fastqs_fastqc path ("*.fastq.gz") includeInput:true into fastqs_fastqc
path ("*_trimming_report.txt") into trimQC path ("*_trimming_report.txt") into trimQC
path ("readLength.csv") into inferMetadata_readLength path ("readLength.csv") into inferMetadata_readLength
...@@ -881,7 +881,7 @@ process alignData { ...@@ -881,7 +881,7 @@ process alignData {
} }
// Replicate rawBam for multiple process inputs // Replicate rawBam for multiple process inputs
rawBam.set { rawBam.into {
rawBam_dedupData rawBam_dedupData
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment