Skip to content
Snippets Groups Projects
Commit 8caea82e authored by Cats's avatar Cats
Browse files

fix glob issue

parent 6d4a3a7f
No related branches found
No related tags found
1 merge request!17Caching related changes
...@@ -88,7 +88,8 @@ task FastqSplitter { ...@@ -88,7 +88,8 @@ task FastqSplitter {
} }
output { output {
Array[File] outputFastqFiles = glob(outputPath + "/chunk_*/" + basename(inputFastq)) Array[File] chunkDirs = prefix(outputPath + "/chunk_", chunks)
String filename = 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