-
Notifications
You must be signed in to change notification settings - Fork 0
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
Pre-release tweaks #22
base: dev
Are you sure you want to change the base?
Conversation
… provided instead of depths
|
…y estimated for an assembly using gzip -l
…st changes; fix missed rename in module config
…eta to allow dynamic resourcing based on length
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.
Looks really good to me! I'd suggest the README could benefit from more detail on how to run a test and maybe the used nextflow version could be specified.
Also, a couple of really minor comments to the code, if you think it makes sense.
Once the remaining test works should be ready to merge.
@@ -75,8 +75,8 @@ process { | |||
} | |||
|
|||
withName: CRAM_FILTER_ALIGN_BWAMEM2_FIXMATE_SORT { | |||
cpus = 16 | |||
memory = { 1.GB * (reference.size() < 2e9 ? 80 : Math.ceil(( reference.size() / 1e+9) * 30) * task.attempt) } | |||
cpus = { 16 * 1 } |
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.
16 * 1 == 16 ?
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.
I blame the TreeVal folks... I copied this code verbatim from them!
include { METATOR_PIPELINE } from '../../../modules/local/metator/pipeline/main' | ||
include { METATOR_PROCESS_INPUT_BAM } from '../../../modules/local/metator/process_input_bam/main' | ||
include { BIN3C_MKMAP } from '../../../modules/local/bin3c/mkmap/main.nf' | ||
include { BIN3C_CLUSTER } from '../../../modules/local/bin3c/cluster/main.nf' |
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.
Could '.nf' extensions be dropped for consistency in style?
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.
Nice catch 👍
PR checklist
nf-core pipelines lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,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).