Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
2a82bccc
Commit
2a82bccc
authored
5 years ago
by
JasperBoom
Browse files
Options
Downloads
Patches
Plain Diff
Add workaround for glob command in lima.
parent
8c8cc282
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
lima.wdl
+12
-4
12 additions, 4 deletions
lima.wdl
with
13 additions
and
4 deletions
CHANGELOG.md
+
1
−
0
View file @
2a82bccc
...
...
@@ -10,6 +10,7 @@ that users understand how the changes affect the new version.
-->
Version 3.1.0-dev
---------------------------
+
Lima: Add workaround for glob command not locating files in output directory.
+
CCS: Add missing backslash.
+
Cutadapt now explicitly calls the
`--compression-level`
flag with compression
level 1 to prevent cutadapt from using very high gzip compression level 6
...
...
This diff is collapsed.
Click to expand it.
lima.wdl
+
12
−
4
View file @
2a82bccc
...
...
@@ -86,6 +86,14 @@ task Lima {
~{inputBamFile} \
~{barcodeFile} \
~{basename(outputPrefix) + ".fl.bam"}
# Move commands below are needed because glob command does not find
# multiple bam/bam.pbi/subreadset.xml files when not located in working
# directory.
mv "~{basename(outputPrefix)}.fl.json" "~{outputPrefix}.fl.json"
mv "~{basename(outputPrefix)}.fl.lima.counts" "~{outputPrefix}.fl.lima.counts"
mv "~{basename(outputPrefix)}.fl.lima.report" "~{outputPrefix}.fl.lima.report"
mv "~{basename(outputPrefix)}.fl.lima.summary" "~{outputPrefix}.fl.lima.summary"
}
output {
...
...
@@ -93,10 +101,10 @@ task Lima {
Array[File] outputFLindexFile = glob("~{basename(outputPrefix)}*.bam.pbi")
Array[File] outputFLxmlFile = glob("~{basename(outputPrefix)}*.subreadset.xml")
File outputSTDERRfile = outputPrefix + ".fl.stderr.log"
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"
File outputJSONfile = outputPrefix
+ "
.fl.json"
File outputCountsFile = outputPrefix
+ "
.fl.lima.counts"
File outputReportFile = outputPrefix
+ "
.fl.lima.report"
File outputSummaryFile = outputPrefix
+ "
.fl.lima.summary"
}
runtime {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment