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 String bamFilePath
command { command {
...@@ -10,15 +10,15 @@ task SamtoolsIndex { ...@@ -10,15 +10,15 @@ task SamtoolsIndex {
} }
} }
task SamtoolsMerge { task Merge {
Array[File] bamFiles Array[File]+ bamFiles
String outputBamPath String outputBamPath
command { command {
samtools merge ${outputBamPath} ${bamFiles} samtools merge ${outputBamPath} ${sep=' ' bamFiles}
} }
output { 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