-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
optimized resources #269
base: dev
Are you sure you want to change the base?
optimized resources #269
Conversation
|
process { | ||
withName: 'NFCORE_FETCHNGS:SRA:FASTQ_DOWNLOAD_PREFETCH_FASTERQDUMP_SRATOOLS:CUSTOM_SRATOOLSNCBISETTINGS' { | ||
cpus = { 1 * task.attempt } | ||
memory = { 1.GB * task.attempt } | ||
} | ||
withName: 'NFCORE_FETCHNGS:SRA:MULTIQC_MAPPINGS_CONFIG' { | ||
cpus = { 1 * task.attempt } | ||
memory = { 1.GB * task.attempt } | ||
} | ||
withName: 'NFCORE_FETCHNGS:SRA:SRA_FASTQ_FTP' { | ||
cpus = { 1 * task.attempt } | ||
memory = { 1.GB * task.attempt } | ||
} | ||
withName: 'NFCORE_FETCHNGS:SRA:SRA_IDS_TO_RUNINFO' { | ||
cpus = { 1 * task.attempt } | ||
memory = { 1.GB * task.attempt } | ||
} | ||
withName: 'NFCORE_FETCHNGS:SRA:SRA_RUNINFO_TO_FTP' { | ||
cpus = { 1 * task.attempt } | ||
memory = { 1.GB * task.attempt } | ||
} | ||
errorStrategy = 'retry' | ||
maxRetries = 2 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems...optimistic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guess platform is an optimist 🙃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it is. Can we get some proof it works, perhaps with a big test?
No description provided.