Skip to content
Snippets Groups Projects
Commit 83d47884 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Merge branch '65-trim_galore' into 'develop'

Add back parallel trim step. Moved fastqc step after trim.

Closes #65

See merge request !50
parents 3ccdc626 6728b926
Branches
Tags
2 merge requests!58Develop,!50Add back parallel trim step. Moved fastqc step after trim.
Pipeline #8379 passed with stages
in 1 minute and 54 seconds
......@@ -9,6 +9,7 @@
* Make pull references from BioHPC default (including in biohpc.config)
* Start using new gudmaprbk dockerhub (images autobuilt)
* Moved consistency checks to be fully python
* Changed order of steps so that fastqc is done after the trim step
*Known Bugs*
* Datahub reference pull uses dev.gudmap.org as source until referencencs are placed on production
......
docs/dag.png

767 KiB | W: | H:

docs/dag.png

762 KiB | W: | H:

docs/dag.png
docs/dag.png
docs/dag.png
docs/dag.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -227,14 +227,12 @@ if (fastqsForce != "") {
Channel
.fromPath(fastqsForce)
.ifEmpty { exit 1, "override inputBag file not found: ${fastqsForce}" }
.collect().into {
.collect().set {
fastqs_trimData
fastqs_fastqc
}
} else {
fastqs.into {
fastqs.set {
fastqs_trimData
fastqs_fastqc
}
}
......@@ -343,6 +341,7 @@ process trimData {
output:
path ("*.fq.gz") into fastqsTrim
path ("*.fastq.gz", includeInputs:true) into fastqs_fastqc
path ("*_trimming_report.txt") into trimQC
path ("readLength.csv") into inferMetadata_readLength
......
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