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

Add directory creation to samtools fastq.

parent 235fb43f
No related branches found
No related tags found
No related merge requests found
......@@ -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`.
......
......@@ -122,6 +122,8 @@ task Fastq {
}
command {
set -e
mkdir -p "$(dirname ~{outputRead1})"
samtools fastq \
~{true="-1" false="-s" defined(outputRead2)} ~{outputRead1} \
~{"-2 " + outputRead2} \
......
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