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

Adding mkdir

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