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

Fixed if

parent ba792ad0
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@ task FastqSplitter {
command {
mkdir -p ${sep=' ' prefix(outputPath + "/chunk_", chunks)}
if [ ${numberChunks} -gt 1 ]; then
java -jar ${tool_jar} -I ${inputFastq} -o ${sep='/${basename(inputFastq)} -o ' prefix(outputPath + "/chunk_", chunks)}/${basename(inputFastq)}
SEP="/${basename(inputFastq)} -o "
java -jar ${tool_jar} -I ${inputFastq} -o ${sep='$SEP' prefix(outputPath + "/chunk_", chunks)}/${basename(inputFastq)}
else
ln -sf ${inputFastq} ${outputPath}/chunk_0/${basename(inputFastq)}
fi
......
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