Skip to content
Snippets Groups Projects
Commit 8c8cc282 authored by JasperBoom's avatar JasperBoom
Browse files

Update lima to correctly collect bam files.

parent 69d895c6
No related branches found
No related tags found
No related merge requests found
......@@ -85,17 +85,18 @@ task Lima {
~{"--log-file " + outputPrefix + ".fl.stderr.log"} \
~{inputBamFile} \
~{barcodeFile} \
~{outputPrefix + ".fl.bam"}
~{basename(outputPrefix) + ".fl.bam"}
}
output {
File outputFLfile = outputPrefix + "*.bam"
File outputFLindexFile = outputPrefix + "*.bam.pbi"
Array[File] outputFLfile = glob("~{basename(outputPrefix)}*.bam")
Array[File] outputFLindexFile = glob("~{basename(outputPrefix)}*.bam.pbi")
Array[File] outputFLxmlFile = glob("~{basename(outputPrefix)}*.subreadset.xml")
File outputSTDERRfile = outputPrefix + ".fl.stderr.log"
File outputJSONfile = outputPrefix + ".fl.json"
File outputCountsFile = outputPrefix + ".fl.lima.counts"
File outputReportFile = outputPrefix + ".fl.lima.report"
File outputSummaryFile = outputPrefix + ".fl.lima.summary"
File outputJSONfile = "~{basename(outputPrefix)}.fl.json"
File outputCountsFile = "~{basename(outputPrefix)}.fl.lima.counts"
File outputReportFile = "~{basename(outputPrefix)}.fl.lima.report"
File outputSummaryFile = "~{basename(outputPrefix)}.fl.lima.summary"
}
runtime {
......
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