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

flash to 1.0

parent 39cbad54
No related branches found
No related tags found
1 merge request!34Move all files to version 1.0
version 1.0
task flash {
String? preCommand
File inputR1
File inputR2
String outdirPath
String? outPrefix = "flash"
Int? minOverlap
Int? maxOverlap
Boolean? compress = true
Int? threads
Int? memory
input {
String? preCommand
File inputR1
File inputR2
String outdirPath
String? outPrefix = "flash"
Int? minOverlap
Int? maxOverlap
Boolean? compress = true
Int? threads
Int? memory
}
command {
set -e -o pipefail
mkdir -p ${outdirPath}
${preCommand}
mkdir -p ~{outdirPath}
~{preCommand}
flash \
${"--threads=" + threads} \
${"--output-directory=" + outdirPath} \
${"--output-prefix=" + outPrefix} \
${true="--compress " false="" defined(compress)} \
${"--min-overlap=" + minOverlap} \
${"--max-overlap=" + maxOverlap} \
${inputR1} ${inputR2}
~{"--threads=" + threads} \
~{"--output-directory=" + outdirPath} \
~{"--output-prefix=" + outPrefix} \
~{true="--compress " false="" defined(compress)} \
~{"--min-overlap=" + minOverlap} \
~{"--max-overlap=" + maxOverlap} \
~{inputR1} ~{inputR2}
}
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