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

start on unicycler

parent 5a4a0440
No related branches found
No related tags found
2 merge requests!9Changes for virus assembly pipeline,!10Extra tasks required for assembly.
task unicycler {
String? preCommand
File short1
File short2
File? unpaired
File? long
String out
Int? minFastaLength
Int? keep
Boolean? vcf
Int? threads = 1
Int? memory = 4
String? mode
Int? linearSeqs
Int? verbosity
command {
set -e -o pipefail
mkdir -p ${out}
${preCommand}
unicycler \
--short1 ${short1}
--short2 ${short2}
}
runtime {
cpu: select_first([threads])
memory: select_first([memory])
}
}
\ No newline at end of file
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