Skip to content
Snippets Groups Projects
Commit 1eaad60f authored by bow's avatar bow
Browse files

Fix missing path separator in Flexiprep output

parent 7188f415
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ class Fastqc(root: Configurable) extends nl.lumc.sasc.biopet.extensions.Fastqc(r
"fastqc_data" -> "fastqc_data.txt")
.map {
case (name, relPath) =>
name -> Map("path" -> (outputDir + relPath))
name -> Map("path" -> (outputDir + File.pathSeparator + relPath))
}
ConfigUtils.mapToJson(outputMap)
......
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