-
Notifications
You must be signed in to change notification settings - Fork 5
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
larger genome alignment should go to basement for now #258
Conversation
|
LGTM |
Replace {} with ()
I knew it was something small!! |
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.
Let's wait until the tests pass and then we can just commit this change and merge straight away
time = { check_max( 10.h * task.attempt, 'time' ) } | ||
} | ||
|
||
// Standard parameters, covers most insecta | ||
withName: '.*:.*:READ_COVERAGE:MINIMAP2_ALIGN' { | ||
cpus = { check_max( 20 * 1, 'cpus' ) } | ||
memory = { check_max( 50.GB * task.attempt, 'memory' ) } | ||
time = { check_max( 20.h * task.attempt, 'time' ) } | ||
time = { check_max( 1.h * (reference.size() < 1e9 ? 10 : reference.size() < 2.5e9 ? 30 : 300), 'time' ) } | ||
//time = { check_max( 30.h * task.attempt, 'time' ) } |
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.
Remove the unneeded time line
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).