Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
63c2d46b
Commit
63c2d46b
authored
6 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
fix unicycler memory
parent
dabe9af0
No related branches found
No related tags found
2 merge requests
!9
Changes for virus assembly pipeline
,
!10
Extra tasks required for assembly.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
spades.wdl
+1
-1
1 addition, 1 deletion
spades.wdl
unicycler.wdl
+7
-5
7 additions, 5 deletions
unicycler.wdl
with
8 additions
and
6 deletions
spades.wdl
+
1
−
1
View file @
63c2d46b
...
...
@@ -49,7 +49,7 @@ task spades {
${"--nanopore " + nanoporeReads } \
${"--tslr " + tslrContigs } \
${"--trusted-contigs " + trustedContigs } \
${"--untrusted-contigs" + untrustedContigs } \
${"--untrusted-contigs
" + untrustedContigs } \
${true="--only-error-correction" false="" onlyErrorCorrection } \
${true="--only-assembler" false="" onlyAssembler } \
${true="--careful" false="" careful } \
...
...
This diff is collapsed.
Click to expand it.
unicycler.wdl
+
7
−
5
View file @
63c2d46b
...
...
@@ -9,8 +9,10 @@ task unicycler {
Int? minFastaLength
Int? keep
Boolean? vcf
Int threads
Int memory
Int? threads
Int? memory
Int finalThreads = select_first(threads, 1)
Int finalMemory = select_first(memory, 4)
String? mode
Float? minBridgeQual
Int? linearSeqs
...
...
@@ -55,7 +57,7 @@ task unicycler {
${"--min_fasta_length " + minFastaLength} \
${"--keep " + keep } \
${true="--vcf" false="" vcf } \
${"--threads " +
t
hreads } \
${"--threads " +
finalT
hreads } \
${"--mode " + mode } \
${"--min_bridge_qual " + minBridgeQual } \
${"--linear_seqs " + linearSeqs } \
...
...
@@ -94,7 +96,7 @@ task unicycler {
File log = out + "/unicycler.log"
}
runtime {
cpu:
t
hreads
memory:
m
emory
cpu:
finalT
hreads
memory:
finalM
emory
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment