-
Notifications
You must be signed in to change notification settings - Fork 18
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
Update nf-core odgi modules to version 0.9.0 #233
Conversation
|
Note commits from #223 were necessary here to pass CI for the community runs. |
Warning Newer version of the nf-core template is available. Your pipeline is using an old version of the nf-core template: 3.1.2. For more documentation on how to update your pipeline, please see the nf-core documentation and Synchronisation documentation. |
Unfortunately, the ODGI table in the MultiQC report(s) is not appearing anymore with this PR. Maybe some |
I just pushed a fix, the |
Just added |
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.
LGTM!
'https://depot.galaxyproject.org/singularity/multiqc:1.15--pyhdfd78af_0' : | ||
'biocontainers/multiqc:1.15--pyhdfd78af_0' }" | ||
'https://depot.galaxyproject.org/singularity/multiqc:1.25.1--pyhdfd78af_0' : | ||
'biocontainers/multiqc:1.25.1--pyhdfd78af_0' }" |
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.
We need 1.26 here. My old PR did not incorporate this, because I wasn't aware of the bug.
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- bioconda::multiqc=1.25.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.
1.26
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? | ||
'https://depot.galaxyproject.org/singularity/multiqc:1.15--pyhdfd78af_0' : | ||
'biocontainers/multiqc:1.15--pyhdfd78af_0' }" | ||
'https://depot.galaxyproject.org/singularity/multiqc:1.25.1--pyhdfd78af_0' : |
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.
1.26
@@ -63,6 +67,11 @@ workflow PANGENOME { | |||
) | |||
ch_versions = ch_versions.mix(INPUT_CHECK.out.versions) | |||
ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true) | |||
|
|||
ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true) | |||
ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config, checkIfExists: true) : Channel.empty() |
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.
This line is now 3 times in this file. Please remove two instances.
@@ -63,6 +67,11 @@ workflow PANGENOME { | |||
) | |||
ch_versions = ch_versions.mix(INPUT_CHECK.out.versions) | |||
ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true) |
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 think this line is 2 times in the file.
ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true) | ||
ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config, checkIfExists: true) : Channel.empty() | ||
|
||
|
||
ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config) : Channel.empty() | ||
ch_multiqc_logo = params.multiqc_logo ? Channel.fromPath(params.multiqc_logo) : Channel.empty() |
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.
While not introduced in this PR, this line is there 2 times, too.
Fixes #214
Fixes #217
PR checklist
nf-core lint
).nf-test test main.nf.test -profile test,docker
).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).