Skip to content
Snippets Groups Projects
Commit c1834fcf authored by Peter van 't Hof's avatar Peter van 't Hof Committed by Wai Yi Leung
Browse files

Fix dependency bug in flexiprep

(cherry picked from commit 95db7a53)
parent d215796c
No related branches found
No related tags found
Loading
......@@ -186,12 +186,14 @@ class Flexiprep(val root: Configurable) extends QScript with SummaryQScript with
val seqstat_R1 = Seqstat(this, R1, outDir)
seqstat_R1.isIntermediate = true
seqstat_R1.deps = deps
add(seqstat_R1)
addSummarizable(seqstat_R1, "seqstat_R1")
if (paired) {
val seqstat_R2 = Seqstat(this, R2, outDir)
seqstat_R2.isIntermediate = true
seqstat_R2.deps = deps
add(seqstat_R2)
addSummarizable(seqstat_R2, "seqstat_R2")
}
......
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