-
Notifications
You must be signed in to change notification settings - Fork 11
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
Template update3.1.1 #308
Template update3.1.1 #308
Conversation
|
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 good, except for a few questions and at least one test is failing.
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
IMPORT FUNCTIONS / MODULES / SUBWORKFLOWS / WORKFLOWS | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
*/ | ||
|
||
include { METATDENOVO } from './workflows/metatdenovo' | ||
include { METATDENOVO } from './workflows/metatdenovo' |
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 suppose the indentation was good as it was, but got updated. I don't mind, so leave it if you want to.
@@ -114,39 +113,39 @@ include { UTILS_NFVALIDATION_PLUGIN } from '../subworkflows/nf- | |||
workflow METATDENOVO { | |||
|
|||
take: | |||
ch_samplesheet // channel: path(sample_sheet.csv) | |||
ch_versions // channel: [ path(versions.yml) ] | |||
ch_samplesheet // channel: samplesheet read in from --input |
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.
Is it correct that ch_versions
is not there any more? I see a commented line with versions below too.
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, now it takes only ch_samplesheet and the ch_version is created in the workflow
workflows/metatdenovo.nf
Outdated
@@ -157,7 +156,7 @@ workflow METATDENOVO { | |||
.mix(ch_fastq.single) | |||
.set { ch_cat_fastq } | |||
|
|||
ch_versions = ch_versions.mix(CAT_FASTQ.out.versions.first()) | |||
// ch_versions = ch_versions.mix(CAT_FASTQ.out.versions.first()) |
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.
Correct that this is commented out?
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 probably forgot to uncomment
PR checklist
nf-core 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).I did not updated the modules. I will do it after this PR is merged.