Skip to content
Snippets Groups Projects

Fix fastqc and cutadapt for use with WDL 1.0

Merged Ruben Vorderman requested to merge BIOWDL-68 into develop
2 files
+ 5
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
1
@@ -61,10 +61,12 @@ task Cutadapt {
String? reportPath
}
String read2outputArg = if (defined(read2output)) then "mkdir -p $(dirname " + read2output + ")" else ""
command {
set -e -o pipefail
~{"mkdir -p $(dirname " + read1output + ")"}
~{"mkdir -p $(dirname " + read2output + ")"}
~{read2outputArg}
~{"mkdir -p $(dirname " + reportPath + ")"}
~{preCommand}
cutadapt \
Loading