Skip to content
Snippets Groups Projects
Unverified Commit afb07b5a authored by Jasper's avatar Jasper Committed by GitHub
Browse files

Merge pull request #214 from biowdl/BIOWDL-449

BIOWDL-449: Remove dirname command from output folder creation step.
parents 3cc32bc7 92c7e923
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
---------------------------
+ Isoseq3: Remove dirname command from output folder creation step.
+ Isoseq3: Requires more memory by default, is now 2G.
+ Isoseq3: Remove cp commands and other bash magic, file naming is now solved by pipeline.
+ Lima: Replace mv command with cp.
......
......@@ -35,9 +35,9 @@ task Refine {
String dockerImage = "quay.io/biocontainers/isoseq3:3.3.0--0"
}
command <<<
command {
set -e
mkdir -p "$(dirname ~{outputDir})"
mkdir -p "~{outputDir}"
isoseq3 refine \
--min-polya-length ~{minPolyAlength} \
~{true="--require-polya" false="" requirePolyA} \
......@@ -47,7 +47,7 @@ task Refine {
~{inputBamFile} \
~{primerFile} \
"~{outputDir}/~{outputNamePrefix}.bam"
>>>
}
output {
File outputFLNCfile = outputDir + "/" + outputNamePrefix + ".bam"
......
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