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

Add nf-core mirtop #426

Merged
merged 12 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [[#405]](https://github.com/nf-core/smrnaseq/pull/405) - Fix [Umicollapse algo wrong set](https://github.com/nf-core/smrnaseq/issues/404) - Fix potential bug in Umicollapse (not effective as we do not allow PE data in smrnaseq - but for consistency)
- [[#420]](https://github.com/nf-core/smrnaseq/pull/420) - Fix [mirTrace produces an error in test nextflex](https://github.com/nf-core/smrnaseq/issues/419) - Allow config mode to be used in mirtrace/qc
- [[#425]](https://github.com/nf-core/smrnaseq/pull/425) - Raise [minimum required NXF version for pipeline](https://github.com/nf-core/smrnaseq/issues/424) - usage of `arity` in some modules now requires this
- [[#426]](https://github.com/nf-core/smrnaseq/pull/426) - Add [nf-core mirtop](https://github.com/nf-core/smrnaseq/issues/426) - replace local for nf-core `mirtop`

## v2.3.1 - 2024-04-18 - Gray Zinc Dalmation Patch

Expand Down
3 changes: 3 additions & 0 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ module_order:
info: "This section of the report shows FastQC results after UMI-based deduplication."
path_filters:
- "**/*.deduplicated_fastqc.zip"
sp:
mirtop:
fn: mirtop_stats.log
24 changes: 24 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,29 @@ process {
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

// Mirtop

withName: 'NFCORE_SMRNASEQ:MIRNA_QUANT:BAM_STATS_MIRNA_MIRTOP:.*' {
publishDir = [
path: { "${params.outdir}/mirna_quant/mirtop" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: 'MIRTOP_COUNTS' {
ext.args = '--add-extra'
}

withName: 'MIRTOP_GFF' {
publishDir = [
path: { "${params.outdir}/mirna_quant/mirtop/gff" },
mode: params.publish_dir_mode,
]
}


withName: 'NFCORE_SMRNASEQ:MIRNA_QUANT:TABLE_MERGE' {
publishDir = [
path: { "${params.outdir}/mirna_quant/mirtop" },
Expand All @@ -346,6 +369,7 @@ process {
}



//
// GENOME_QUANT
//
Expand Down
25 changes: 25 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,26 @@
"git_sha": "cf3ed075695639b0a0924eb0901146df1996dc08",
"installed_by": ["modules"]
},
"mirtop/counts": {
"branch": "master",
"git_sha": "43b2b702abd8ab2cb1aa1365763f518413ad5721",
"installed_by": ["bam_stats_mirna_mirtop"]
},
"mirtop/export": {
"branch": "master",
"git_sha": "43b2b702abd8ab2cb1aa1365763f518413ad5721",
"installed_by": ["bam_stats_mirna_mirtop"]
},
"mirtop/gff": {
"branch": "master",
"git_sha": "43b2b702abd8ab2cb1aa1365763f518413ad5721",
"installed_by": ["bam_stats_mirna_mirtop"]
},
"mirtop/stats": {
"branch": "master",
"git_sha": "43b2b702abd8ab2cb1aa1365763f518413ad5721",
"installed_by": ["bam_stats_mirna_mirtop"]
},
"mirtrace/qc": {
"branch": "master",
"git_sha": "6dd363c9b9b7cf30c4418597d20b6861848f0475",
Expand Down Expand Up @@ -105,6 +125,11 @@
"git_sha": "46eca555142d6e597729fcb682adcc791796f514",
"installed_by": ["subworkflows"]
},
"bam_stats_mirna_mirtop": {
"branch": "master",
"git_sha": "43b2b702abd8ab2cb1aa1365763f518413ad5721",
"installed_by": ["subworkflows"]
},
"bam_stats_samtools": {
"branch": "master",
"git_sha": "0eacd714effe5aac1c1de26593873960b3346cab",
Expand Down
9 changes: 9 additions & 0 deletions modules/nf-core/mirtop/counts/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 53 additions & 0 deletions modules/nf-core/mirtop/counts/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions modules/nf-core/mirtop/counts/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

97 changes: 97 additions & 0 deletions modules/nf-core/mirtop/counts/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions modules/nf-core/mirtop/counts/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions modules/nf-core/mirtop/counts/tests/nextflow.config

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions modules/nf-core/mirtop/export/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading