Skip to content
Snippets Groups Projects
Commit b9ab2f02 authored by pjvan_thof's avatar pjvan_thof
Browse files

Fixed sep

parent f91f5982
No related branches found
No related tags found
No related merge requests found
task SamtoolsIndex {
task Index {
String bamFilePath
command {
......@@ -10,15 +10,15 @@ task SamtoolsIndex {
}
}
task SamtoolsMerge {
Array[File] bamFiles
task Merge {
Array[File]+ bamFiles
String outputBamPath
command {
samtools merge ${outputBamPath} ${bamFiles}
samtools merge ${outputBamPath} ${sep=' ' bamFiles}
}
output {
File bamFile = outputBamPath
File outputBam = outputBamPath
}
}
\ No newline at end of file
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