Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
1eaad60f
Commit
1eaad60f
authored
Feb 10, 2015
by
bow
Browse files
Fix missing path separator in Flexiprep output
parent
7188f415
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/flexiprep/src/main/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/Fastqc.scala
View file @
1eaad60f
...
...
@@ -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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment