Skip to content
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
6 changes: 3 additions & 3 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ nf_core_version: 3.3.2
repository_type: pipeline
template:
author: "Harshil Patel, Phil Ewels, Rickard Hammarén"
description: RNA sequencing analysis pipeline for gene/isoform quantification
and extensive quality control.
description: RNA sequencing analysis pipeline for gene/isoform quantification and
extensive quality control.
force: false
is_nfcore: true
name: rnaseq
org: nf-core
outdir: .
version: 3.20.0
version: 3.21.0dev
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 3.20.0
## dev

### Credits

Special thanks to the following for their contributions to the release:

- [Maxime Garcia](https://github.com/maxulysse)

### Enhancements & fixes

- [PR #1597](https://github.com/nf-core/rnaseq/pull/1597) - Bump version after release 3.20.0

## [[3.20.0](https://github.com/nf-core/rnaseq/releases/tag/3.20.0)] - 2025-08-18

### Credits

Expand Down
28 changes: 18 additions & 10 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -350,70 +350,78 @@ manifest {
name: 'Harshil Patel',
affiliation: 'Seqera',
github: '@drpatelh',
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['author'],
orcid: '0000-0003-2707-7940'
],
[
name: 'Jonathan Manning',
affiliation: 'Seqera',
github: '@pinin4fjords',
contribution: ['maintainer', 'contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['maintainer', 'contributor'],
orcid: '0000-0002-3483-8456'
],
[
name: 'Maxime U Garcia',
affiliation: 'Seqera',
github: '@maxulysse',
contribution: ['contributor', 'maintainer'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['contributor', 'maintainer'],
orcid: '0000-0003-2827-9261'
],
[
name: 'Phil Ewels',
affiliation: 'Seqera',
github: '@ewels',
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['author'],
orcid: '0000-0003-4101-2502'
],
[
name: 'Alexander Peltzer',
affiliation: 'Boehringer Ingelheim',
github: '@apeltzer',
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['contributor'],
orcid: '0000-0002-6503-2180'
],
[
name: 'Rickard Hammarén',
affiliation: 'Scilifelab Data Centre',
github: '@Hammarn',
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['author'],
orcid: '0000-0001-9017-591X'
],
[
name: 'Olga Botvinnik',
affiliation: 'Seanome',
github: '@olgabot',
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['contributor'],
orcid: '0000-0003-4412-7970'
],
[
name: 'Adam Talbot',
affiliation: 'Seqera',
github: '@adamrtalbot',
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['contributor'],
],
[
name: 'Friederike Hanssen',
affiliation: 'Seqera',
github: '@FriederikeHanssen',
contribution: ['contributor'], // List of contribution types ('author', 'maintainer' or 'contributor')
contribution: ['contributor'],
orcid: '0009-0001-9875-5262'
],
[
name: 'Robert Syme',
affiliation: 'Seqera',
github: '@robsyme',
contribution: ['contributor'],
orcid: '0000-0002-8721-2350'
],
]
homePage = 'https://github.com/nf-core/rnaseq'
description = """RNA sequencing analysis pipeline for gene/isoform quantification and extensive quality control."""
mainScript = 'main.nf'
defaultBranch = 'master'
nextflowVersion = '!>=24.10.5'
version = '3.20.0'
version = '3.21.0dev'
doi = 'https://doi.org/10.5281/zenodo.1400710'
}

Expand Down
Loading