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

complete unicycler

parent 87a75fe0
No related branches found
No related tags found
2 merge requests!9Changes for virus assembly pipeline,!10Extra tasks required for assembly.
...@@ -47,8 +47,8 @@ task unicycler { ...@@ -47,8 +47,8 @@ task unicycler {
mkdir -p ${out} mkdir -p ${out}
${preCommand} ${preCommand}
unicycler \ unicycler \
--short1 ${short1} \ ${"--short1 " + short1} \
--short2 ${short2} \ ${"--short2 " + short2} \
${"--unpaired " + unpaired} \ ${"--unpaired " + unpaired} \
${"--long " + long} \ ${"--long " + long} \
--out ${out} \ --out ${out} \
...@@ -88,7 +88,11 @@ task unicycler { ...@@ -88,7 +88,11 @@ task unicycler {
${"--scores " + scores } \ ${"--scores " + scores } \
${"--low_score " + lowScore } ${"--low_score " + lowScore }
} }
output {
File assemblyFasta = out + "/assembly.fasta"
File assemblyGfa = out + "/assembly.gfa"
File log = out + "/unicycler.log"
}
runtime { runtime {
cpu: threads cpu: threads
memory: memory memory: memory
......
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