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

Update with set for since only 1 variable. Also update pattern to pass files.

parent 7cf5d610
Branches
Tags
2 merge requests!58Develop,!50Add back parallel trim step. Moved fastqc step after trim.
Pipeline #8359 failed with stages
in 38 minutes and 12 seconds
...@@ -227,11 +227,11 @@ if (fastqsForce != "") { ...@@ -227,11 +227,11 @@ if (fastqsForce != "") {
Channel Channel
.fromPath(fastqsForce) .fromPath(fastqsForce)
.ifEmpty { exit 1, "override inputBag file not found: ${fastqsForce}" } .ifEmpty { exit 1, "override inputBag file not found: ${fastqsForce}" }
.collect().into { .collect().set {
fastqs_trimData fastqs_trimData
} }
} else { } else {
fastqs.into { fastqs.set {
fastqs_trimData fastqs_trimData
} }
} }
...@@ -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 ("*.R{1,2}.fastq.gz") into fastqs_fastqc path ("*.fastq.gz") 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.into { rawBam.set {
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