Skip to content

Commit

Permalink
skip concoct due to excess in timelimt
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-VM committed Sep 5, 2024
1 parent a0d2446 commit 6549160
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions bu_isciii/templates/mag/ANALYSIS/ANALYSIS03_MAG_ALL/lablog
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ nextflow run /data/bi/pipelines/nf-core-mag/nf-core-mag-2.5.3/workflow/main.nf \
--input samplesheet.csv \\
--kraken2_db '/data/bi/references/kraken/minikraken_8GB_20200312.tgz' \\
--skip_spadeshybrid true \\
--skip_concoct true \\
--refine_bins_dastool true \\
--outdir $(date '+%Y%m%d')_mag_all \\
-resume
Expand Down
16 changes: 8 additions & 8 deletions bu_isciii/templates/mag/DOC/mag.config
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ process {
errorStrategy = { task.exitStatus in [ 1, 255 ] ? 'ignore' : 'retry' }
time = { 8.h * task.attempt }
}
// TODO: This bining tool takes ~24h to finish... Consider skipping it.
withName:'CONCOCT_CONCOCT' {
errorStrategy = { task.exitStatus in [140] ? 'retry' : 'finish' }
maxRetries = 2
cpus = { 8 * task.attempt }
memory = { 64.GB * task.attempt }
time = { 24.h * task.attempt }
}
// TODO: This bining tool takes ~24h to finish... skip was added in lablog, however it can be enabeled.
// withName:'CONCOCT_CONCOCT' {
// errorStrategy = { task.exitStatus in [140] ? 'retry' : 'finish' }
// maxRetries = 2
// cpus = { 8 * task.attempt }
// memory = { 64.GB * task.attempt }
// time = { 24.h * task.attempt }
// }
withName:'CHECKM_LINEAGEWF' {
errorStrategy = { task.exitStatus in [1] ? 'retry' : 'finish' }
maxRetries = 3
Expand Down

0 comments on commit 6549160

Please sign in to comment.