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

Remove outputPrefix variable from output section.

parent 38a36a81
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ that users understand how the changes affect the new version.
-->
Version 3.1.0-dev
---------------------------
+ Lima: Remove outputPrefix variable from output section.
+ Isoseq3: Make sure stderr log file from Refine is unique and not overwritten.
+ Isoseq3: Add workaround in Refine for glob command not locating files in output directory.
+ Isoseq3: Fix --min-polya-length argument syntax.
......
......@@ -97,9 +97,9 @@ task Lima {
}
output {
Array[File] outputFLfile = glob("~{basename(outputPrefix)}*.bam")
Array[File] outputFLindexFile = glob("~{basename(outputPrefix)}*.bam.pbi")
Array[File] outputFLxmlFile = glob("~{basename(outputPrefix)}*.subreadset.xml")
Array[File] outputFLfile = glob("*.bam")
Array[File] outputFLindexFile = glob("*.bam.pbi")
Array[File] outputFLxmlFile = glob("*.subreadset.xml")
File outputSTDERRfile = outputPrefix + ".fl.stderr.log"
File outputJSONfile = outputPrefix + ".fl.json"
File outputCountsFile = outputPrefix + ".fl.lima.counts"
......
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