Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
biowdl
tasks
Commits
f2f7411a
Commit
f2f7411a
authored
Jun 15, 2021
by
Boom
Browse files
Add directory creation to samtools fastq.
parent
235fb43f
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
f2f7411a
...
...
@@ -10,8 +10,7 @@ that users understand how the changes affect the new version.
version 5.0.0-dev
---------------------------
+
Change the way localization of the input bam files and index are handled
in the bam2fastx tasks.
+
Samtools: Add mkdir line to
`Fastq`
task.
+
Add new parameters from CCS version 6.0.0 and add two new outputs:
`ccs_report.txt`
&
`zmw_metrics.json.gz`
.
+
Change CutAdapt memory to
`5G`
.
...
...
samtools.wdl
View file @
f2f7411a
...
...
@@ -122,6 +122,8 @@ task Fastq {
}
command {
set -e
mkdir -p "$(dirname ~{outputRead1})"
samtools fastq \
~{true="-1" false="-s" defined(outputRead2)} ~{outputRead1} \
~{"-2 " + outputRead2} \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment