Skip to content
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

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions conf/test_full.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,28 @@ params {
// File containing SRA ids from nf-core/rnaseq -profile test_full for full-sized test
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/100736c99d87667fb7c247c267bc8acfac647bed/testdata/v1.12.0/sra_ids_rnaseq_test_full.csv'
}

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
}
Comment on lines +21 to +44
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That seems...optimistic.

Copy link
Contributor Author

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 🙃

Copy link
Contributor

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?

Loading