Skip to content
Snippets Groups Projects
Commit dc0495a6 authored by pjvan_thof's avatar pjvan_thof
Browse files

Change fastq to intermediate

parent 9b1ebb8b
No related branches found
Tags v0.5.1
No related merge requests found
......@@ -123,7 +123,9 @@ class GearsSingle(val parent: Configurable)
if (r1.size == 1) r1.head
else {
val outputFile = new File(outputDir, "merged.R1.fq.gz")
add(Zcat(this, r1) | new Gzip(this) > outputFile)
val merge = Zcat(this, r1) | new Gzip(this) > outputFile
merge.isIntermediate = true
add(merge)
outputFile
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment