Skip to content
Snippets Groups Projects
Commit b3da2df1 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fix MatchError

parent 2a67db54
No related branches found
No related tags found
No related merge requests found
......@@ -91,8 +91,11 @@ class WriteSummary(val root: Configurable) extends InProcessFunction with Config
(
qscript.functions.flatMap(fetchVersion(_)) ++
qscript.functions.flatMap { case f: BiopetCommandLineFunction => f.pipesJobs }
.flatMap(fetchVersion(_))
qscript.functions
.flatMap {
case f: BiopetCommandLineFunction => f.pipesJobs
case _ => Nil
}.flatMap(fetchVersion(_))
).toMap
}
......
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