Skip to content
Snippets Groups Projects
Commit 3ddf2f10 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

fix bugs

parent c4cbdc2b
No related branches found
No related tags found
2 merge requests!9Changes for virus assembly pipeline,!10Extra tasks required for assembly.
...@@ -22,10 +22,10 @@ task fastq { ...@@ -22,10 +22,10 @@ task fastq {
${"--end " + end } \ ${"--end " + end } \
${"--min-length " + minLength } \ ${"--min-length " + minLength } \
${"--max-length " + maxLength } \ ${"--max-length " + maxLength } \
${if highQuality then "--high-quality" else ""} \ ${true="--high-quality" false="" highQuality} \
${if normalQuality then "--normal-quality" else ""} \ ${true="--normal-quality" false="" normalQuality} \
${"--group " + group} \ ${"--group " + group} \
${sep=" " files} ${if gzip then "| gzip " else ""}> ${outputFile} ${sep=" " files} ${true="| gzip " false="" gzip}> ${outputFile}
} }
output { output {
......
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