Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
deep_genome
cedalion
Commits
e6c2b009
Commit
e6c2b009
authored
Nov 14, 2018
by
Thomas Van Parys
Browse files
Set time constraints for most processes and reduce mem req for WGD (fixes
#54
)
parent
11546a31
Changes
1
Hide whitespace changes
Inline
Side-by-side
main.nf
View file @
e6c2b009
...
...
@@ -731,7 +731,8 @@ phymlPublish
process
ev01
{
publishDir
"${params.output}/parsimony"
,
mode:
'copy'
memory
'4 GB'
time
'30min'
input:
file
species_tree
from
phymlTree
file
domain_annotation
from
all_ipsTSV_ev01
...
...
@@ -1040,7 +1041,8 @@ process wgd_mcl{
tag
"$species - $databaseSpecies"
module
'mcl'
memory
'8 GB'
time
'1h'
input:
set
file
(
blast_results
),
val
(
species
),
val
(
databaseSpecies
)
from
new_species_blasts_tagged
...
...
@@ -1091,6 +1093,8 @@ process wgd_ksd_paranome{
module
'paml'
module
'fasttree'
time
'1h'
memory
{
4
.
GB
+
2
.
GB
*
task
.
attempt
}
errorStrategy
'retry'
maxRetries
4
...
...
@@ -1121,9 +1125,11 @@ process wgd_ksd_one_v_one{
module
'paml'
module
'fasttree'
memory
{
4
.
GB
+
2
.
GB
*
task
.
attempt
}
time
'1h'
memory
{
1
.
GB
+
1
.
GB
*
task
.
attempt
}
errorStrategy
'retry'
maxRetries
4
maxRetries
5
cpus
4
...
...
@@ -1150,6 +1156,7 @@ process wgd_gmm{
publishDir
"${params.output}/wgd/${species}"
,
mode:
'copy'
tag
"$species"
time
'1h'
memory
'6 GB'
input:
...
...
@@ -1170,6 +1177,7 @@ process wgd_bgmm{
publishDir
"${params.output}/wgd/${species}"
,
mode:
'copy'
tag
"$species"
time
'1h'
memory
'6 GB'
input:
...
...
@@ -1188,6 +1196,7 @@ process wgd_kde{
publishDir
"${params.output}/wgd/${species}"
,
mode:
'copy'
tag
"$species"
time
'1h'
memory
'6 GB'
input:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment