Skip to content

Commit

Permalink
Remove cpu/memory allocation for some tasks
Browse files Browse the repository at this point in the history
Some transdecoder tasks were having more memory allocated than necessary
  • Loading branch information
N-Hoffmann committed Nov 8, 2024
1 parent a9352c6 commit 0e4f952
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions modules/transdecoder/convert_to_gtf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ process AGAT_CONVERTSPGFF2GTF {
container "${ workflow.containerEngine == 'singularity' ?
'https://depot.galaxyproject.org/singularity/agat:1.4.0--pl5321hdfd78af_0' :
'biocontainers/agat:1.4.0--pl5321hdfd78af_0' }"
cpus params.maxCpu
memory params.maxMemory

input:
path gff3
Expand Down
2 changes: 0 additions & 2 deletions modules/transdecoder/gtfsort.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ process GTFSORT {
'biocontainers/gtfsort:0.2.2--h4ac6f70_0' }"
publishDir "$params.outdir/transdecoder", mode: 'copy', pattern: 'novel.full.gtf'
publishDir "$params.outdir/final", mode: 'copy', pattern: 'novel.full.gtf', saveAs: {filename -> 'novel.full.gtf'}, overwrite: true
cpus params.maxCpu
memory params.maxMemory

input:
path fixed_novel
Expand Down
2 changes: 0 additions & 2 deletions modules/transdecoder/transdecoder_predict.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ process TRANSDECODER_PREDICT {
'https://depot.galaxyproject.org/singularity/transdecoder:5.5.0--pl5262hdfd78af_4' :
'quay.io/comp-bio-aging/transdecoder' }"
publishDir "$params.outdir/transdecoder", mode: 'copy'
cpus params.maxCpu
memory params.maxMemory

input:
path novel_full_gtf
Expand Down

0 comments on commit 0e4f952

Please sign in to comment.