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

added flag

parent afa80b82
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ task FastqSplitter {
command {
mkdir -p ${sep=' ' prefix(outputPath + "/chunk_", range(numberChunks))}
${if (numberChunks > 1) then ("java -jar " + tool_jar + " -i " + inputFastq + write_lines(prefix("-o ", range(numberChunks))))
else ("ln -s " + inputFastq + " " + outputPath + "/chunk_0/" + basename(inputFastq))}
else ("ln -sf " + inputFastq + " " + outputPath + "/chunk_0/" + basename(inputFastq))}
}
output {
......
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