Skip to content
Draft
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d30a2da
update project description in .nf-core.yml
beatrizsavinhas Mar 12, 2026
e008c65
Merge branch 'dev' into 28-update-documentation
beatrizsavinhas Mar 12, 2026
da7f3d9
update parameters.md
beatrizsavinhas Mar 12, 2026
9149209
pre-commit
beatrizsavinhas Mar 12, 2026
6ea0452
update changelog
beatrizsavinhas Mar 12, 2026
bad6f1c
update changelog
beatrizsavinhas Mar 12, 2026
f3fcb3c
add template update instructions to contributing.md
beatrizsavinhas Mar 13, 2026
d2a98bd
add template update instructions to contributing.md
beatrizsavinhas Mar 13, 2026
617bf49
Add installation instructions to contributing
beatrizsavinhas Mar 13, 2026
acb8b3c
update installation instructions to contributing
beatrizsavinhas Mar 13, 2026
5465fa5
update contributors
beatrizsavinhas Mar 13, 2026
53a82b3
re-arrange contributing.md
beatrizsavinhas Mar 13, 2026
7a2c865
add information on PR and reviews in contributing
beatrizsavinhas Mar 13, 2026
f2edb4e
fix linting issues
beatrizsavinhas Mar 13, 2026
fb07914
update changelog
beatrizsavinhas Mar 13, 2026
4a374da
update CONTRIBUTING.md
beatrizsavinhas Mar 16, 2026
7752749
refactor changelog
beatrizsavinhas Mar 16, 2026
5d93dbc
Merge branch 'dev' into 28-update-documentation
beatrizsavinhas Mar 16, 2026
ede68d2
pre-commit to update parameters.md
beatrizsavinhas Mar 16, 2026
7548675
Add Felix as contributor
beatrizsavinhas Mar 16, 2026
068d74d
update README.md usage
beatrizsavinhas Mar 16, 2026
17c2903
Fill in introduction in README.md
beatrizsavinhas Mar 16, 2026
3c85e5f
Add logo code
beatrizsavinhas Mar 16, 2026
1b7885e
add note to CITATIONS.md
beatrizsavinhas Mar 16, 2026
0f68e0f
Added introduction to README.md
beatrizsavinhas Mar 17, 2026
5c75381
update citations
beatrizsavinhas Mar 17, 2026
0ba2b3e
update usage
beatrizsavinhas Mar 17, 2026
4a899ad
update usage
beatrizsavinhas Mar 17, 2026
356575d
Add output example.
beatrizsavinhas Mar 17, 2026
4c5204e
update CHANGELOG.md
beatrizsavinhas Mar 17, 2026
8bdbcbb
Merge branch 'dev' into 28-update-documentation
beatrizsavinhas Mar 17, 2026
efd6985
update CHANGELOG.md
beatrizsavinhas Mar 17, 2026
de8eb66
update ISSUE_TEMPLATE/config
beatrizsavinhas Mar 19, 2026
ed01899
Update CITATIONS.md
beatrizsavinhas Mar 19, 2026
21ca245
Update CITATIONS.md
beatrizsavinhas Mar 19, 2026
913441f
Move contributing to root directory
beatrizsavinhas Mar 19, 2026
46e2fe0
update docker installation link
beatrizsavinhas Mar 20, 2026
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
47 changes: 47 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,46 @@ If you'd like to write some code for Clinical-Genomics/oncorefiner, the standard

If you're not used to this workflow with git, you can start with some [docs from GitHub](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests) or even their [excellent `git` resources](https://try.github.io/).

### Pull Requests

When opening a pull request to suggest changes to the code, please make sure to follow the [Pipeline contribution conventions](#pipeline-contribution-conventions) for the code and to fill in the necessary information in the pull request template as well as address all points in the `PR checklist`.

#### PR title conventions

We have implemented a standardised PR title format to make it easier to understand the type of change being proposed at a glance.
Addionally, there is an automated check for every PR that will only allow mergere if the title adheres to one of the following formats:

- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- refactor: A code change that neither fixes a bug nor adds a feature
- perf: A code change that improves performance
- test: Adding missing tests or correcting existing tests
- build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
- ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
- chore: Other changes that don't modify src or test files
- revert: Reverts a previous commit

#### Review

When reviewing a PR, make sure to check that:

- The code follows the [Pipeline contribution conventions](#pipeline-contribution-conventions).
- The information in the PR (and related issue) is clear and sufficient to understand the change and the motivation for it - title, description and entry in `CHANGELOG.md`, if applicable.
- All the items in the `PR checklist` have been addressed, the changes are well documented and the tests are passing.

Be positive and constructive in your review, and whenever possible offer suggestions for improvement rather than just pointing out issues.

## Installation and dependencies for development

In order to run the pipeline, develop and test your changes locally, we recommend that you set up:

- A conda environment with `nextflow` and `nf-core` tools. - For this, follow the instructions from the [nf-core documentation](https://nf-co.re/docs/nf-core-tools/installation). Additional information about [Installation of nf-core dependencies](https://nf-co.re/docs/usage/getting_started/installation/) is also available, if needed.
- Install Docker (https://docs.docker.com/engine/install/) and make sure the daemon is running when you want to run the tests locally.

Make sure to [test your setup](https://nf-co.re/docs/usage/introduction#how-to-run-a-pipeline) with `-profile test` before running the workflow on actual data.

## Tests

You have the option to test your changes locally by running the pipeline. For receiving warnings about process selectors and other `debug` information, it is recommended to use the debug profile. Execute all the tests with the following command:
Expand Down Expand Up @@ -98,6 +138,13 @@ Please use the following naming schemes, to make it easy to understand what is g

If you are using a new feature from core Nextflow, you may bump the minimum required version of nextflow in the pipeline with: `nf-core pipelines bump-version --nextflow . [min-nf-version]`

### Update nf-core template

Since this is not an nf-core pipeline, the nf-core template is not automatically updated in the `TEMPLATE` branch. Follow these step to update the template:

1. Update the `TEMPLATE` branch by running `nf-core pipelines sync`. Fix any merge conflicts and open a PR to then merge the changes.
1. Open a PR to merge the `TEMPLATE` branch into `dev` to update the template files in the main codebase.

### Images and figures

For overview images and other documents we follow the nf-core [style guidelines and examples](https://nf-co.re/developers/design_guidelines).
Expand Down
8 changes: 4 additions & 4 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ lint:
- .prettierignore
- assets/sendmail_template.txt
- docs/README.md
- .github/CONTRIBUTING.md
multiqc_config: false
nf_core_version: 3.5.2
repository_type: pipeline
template:
author: Clinical Genomics Stockholm
description: Customizable post-processing and extension layer built on top of Oncoanalyser
that adapts its outputs to clinical and operational needs, adds missing analyses,
and ensures flexibility for evolving standards while retaining Oncoanalyser robust
core
description: Customizable post-processing and extension layer for Oncoanalyser that adapts
its outputs according to clinical and operational needs, adds missing analyses, and
ensures flexibility for evolving standards while retaining Oncoanalyser's robust core.
force: false
is_nfcore: false
name: oncorefiner
Expand Down
69 changes: 35 additions & 34 deletions CHANGELOG.md
Copy link
Contributor Author

@beatrizsavinhas beatrizsavinhas Mar 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved PR link to the beginning of the line as I think it makes it easier to read when rendered. Thoughts?

Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,48 @@ Initial release of Clinical-Genomics/oncorefiner, created with the [nf-core](htt

### `Added`

- Added Ensembl VEP annotation for SNV vcf file [#1](https://github.com/Clinical-Genomics/oncorefiner/pull/1)
- Added VCFANNO annotation for SNV vcf file [#2](https://github.com/Clinical-Genomics/oncorefiner/pull/2)
- Added filtering for SNV vcf file [#3](https://github.com/Clinical-Genomics/oncorefiner/pull/3)
- Added annotation for SV vcf file [#4](https://github.com/Clinical-Genomics/oncorefiner/pull/4)
- Added filtering for SV vcf file [#5](https://github.com/Clinical-Genomics/oncorefiner/pull/5)
- Added small test profile. The related test dataset have been added as a branch called oncorefiner under [Clinical-Genomics/test-datasets](https://github.com/Clinical-Genomics/test-datasets/tree/oncorefiner) [#8](https://github.com/Clinical-Genomics/oncorefiner/pull/8)
- Added CI checks for `Conventional PR title`, `Updated changelog` and `Add PR checklist comment` [#18](https://github.com/Clinical-Genomics/oncorefiner/pull/18)
- Added parameters documentation [#25](https://github.com/Clinical-Genomics/oncorefiner/pull/25)
- Added pre-commit hook for automatic generation of parameters documentation [#25](https://github.com/Clinical-Genomics/oncorefiner/pull/25)
- Added Nextflow strict syntax compatibility [#30](https://github.com/Clinical-Genomics/oncorefiner/pull/30)

### Changed

- Updated PR template, PR checklist, feature request template, bug report template and issue template chooser [#24](https://github.com/Clinical-Genomics/oncorefiner/pull/24)
- Updated nf-schema to 2.6.1 [#30](https://github.com/Clinical-Genomics/oncorefiner/pull/30)
- Updated minimum Nextflow version to 25.10.0 [#30](https://github.com/Clinical-Genomics/oncorefiner/pull/30)
- Added wgs-cancer-pipeline projects list in the issue templates [#37](https://github.com/Clinical-Genomics/oncorefiner/pull/37)
- [#1](https://github.com/Clinical-Genomics/oncorefiner/pull/1) Added Ensembl VEP annotation for SNV vcf file.
- [#2](https://github.com/Clinical-Genomics/oncorefiner/pull/2) Added VCFANNO annotation for SNV vcf file.
- [#3](https://github.com/Clinical-Genomics/oncorefiner/pull/3) Added filtering for SNV vcf file.
- [#4](https://github.com/Clinical-Genomics/oncorefiner/pull/4) Added annotation for SV vcf file.
- [#5](https://github.com/Clinical-Genomics/oncorefiner/pull/5) Added filtering for SV vcf file.
- [#8](https://github.com/Clinical-Genomics/oncorefiner/pull/8) Added small test profile. The related test dataset have been added as a branch called oncorefiner under [Clinical-Genomics/test-datasets](https://github.com/Clinical-Genomics/test-datasets/tree/oncorefiner).
- [#18](https://github.com/Clinical-Genomics/oncorefiner/pull/18) Added CI checks for `Conventional PR title`, `Updated changelog` and `Add PR checklist comment`.
- [#25](https://github.com/Clinical-Genomics/oncorefiner/pull/25) Added parameters documentation.
- [#25](https://github.com/Clinical-Genomics/oncorefiner/pull/25) Added pre-commit hook for automatic generation of parameters documentation.
- [#30](https://github.com/Clinical-Genomics/oncorefiner/pull/30) Added Nextflow strict syntax compatibility.

### `Changed`

- [#24](https://github.com/Clinical-Genomics/oncorefiner/pull/24) Updated PR template, PR checklist, feature request template, bug report template and issue template chooser.
- [#30](https://github.com/Clinical-Genomics/oncorefiner/pull/30) Updated nf-schema to 2.6.1.
- [#30](https://github.com/Clinical-Genomics/oncorefiner/pull/30) Updated minimum Nextflow version to 25.10.0.
- [#37](https://github.com/Clinical-Genomics/oncorefiner/pull/37) Added wgs-cancer-pipeline projects list in the issue templates.
- [#48](https://github.com/Clinical-Genomics/oncorefiner/pull/48) Updated documentation.

### `Fixed`

- Removed snv_vcf_tbi and sv_vcf_tbi parameter. VCF indexes are now automatically detected [#9](https://github.com/Clinical-Genomics/oncorefiner/pull/9)
- Renamed pipeline from postprocessing to oncorefiner []()
- Fixed linting issues [#20](https://github.com/Clinical-Genomics/oncorefiner/pull/20)
- Fixed nf-test to run a functional default test, and generated a snapshot [#26](https://github.com/Clinical-Genomics/oncorefiner/pull/26)
- Added missing description to bug_report.yml [32](https://github.com/Clinical-Genomics/oncorefiner/pull/32)
- Updated template settings to set organisation to `Clinical-Genomics` and skip unused features `igenomes` and `fastqc` [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35)
- Refactored `genome` parameter to have default value 'GRCh38' and no longer refer to igenomes [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35)
- Updated linting config to fix linting issues and re-added/removed checks for files where nf-core file structure is no longer required [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35)
- Updated template for nf-core/tools version 3.5.2 to apply updated settings and changes missed in previous template update ([14](https://github.com/Clinical-Genomics/oncorefiner/pull/14)) [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35)
- Fixed prepare_references config that was defined but not used [36](https://github.com/Clinical-Genomics/oncorefiner/pull/36)
- Fixed bug and formatting in feature request template [#39](https://github.com/Clinical-Genomics/oncorefiner/pull/39)
- Fixed merge mistake introduced in [#25](https://github.com/Clinical-Genomics/oncorefiner/pull/25) [#41](https://github.com/Clinical-Genomics/oncorefiner/pull/41)
- Added necessary GITHUB_TOKEN permissions for action add_pr_checklist_comment [#42](https://github.com/Clinical-Genomics/oncorefiner/pull/42)
- Updated all modules and removed deprecated `ch_versions` to implement latest nf-core changes that use the `versions` topic channel to collect software versions [#34](https://github.com/Clinical-Genomics/oncorefiner/pull/34)
- Fixed settings for `add_pr_checklist_comment` to allow action to run on a PR originated from a fork [#45](https://github.com/Clinical-Genomics/oncorefiner/pull/45)
- Added `species` parameter to provide information for annotation which was previously hardcoded [#49](https://github.com/Clinical-Genomics/oncorefiner/pull/49)
- [#9](https://github.com/Clinical-Genomics/oncorefiner/pull/9) Removed snv_vcf_tbi and sv_vcf_tbi parameter. VCF indexes are now automatically detected.
- [#10](https://github.com/Clinical-Genomics/oncorefiner/pull/10) Renamed pipeline from postprocessing to oncorefiner.
- [#20](https://github.com/Clinical-Genomics/oncorefiner/pull/20) Fixed linting issues.
- [#26](https://github.com/Clinical-Genomics/oncorefiner/pull/26) Fixed nf-test to run a functional default test, and generated a snapshot.
- [#32](https://github.com/Clinical-Genomics/oncorefiner/pull/32) Added missing description in bug report template.
- [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35) Updated template settings to set organisation to `Clinical-Genomics` and skip unused features `igenomes` and `fastqc`.
- [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35) Refactored `genome` parameter to have default value 'GRCh38' and no longer refer to igenomes.
- [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35) Updated linting config to fix linting issues and re-added/removed checks for files where nf-core file structure is no longer required.
- [#35](https://github.com/Clinical-Genomics/oncorefiner/pull/35) Updated template for nf-core/tools version 3.5.2 to apply updated settings and changes missed in previous template update ([#14](https://github.com/Clinical-Genomics/oncorefiner/pull/14)).
- [36](https://github.com/Clinical-Genomics/oncorefiner/pull/36) Fixed prepare_references config that was defined but not used.
- [#39](https://github.com/Clinical-Genomics/oncorefiner/pull/39) Fixed bug and formatting in feature request template.
- [#41](https://github.com/Clinical-Genomics/oncorefiner/pull/41) Fixed merge mistake in `.nf-core.yml` introduced in previous PR ([#25](https://github.com/Clinical-Genomics/oncorefiner/pull/25)).
- [#42](https://github.com/Clinical-Genomics/oncorefiner/pull/42) Added necessary GITHUB_TOKEN permissions for action add_pr_checklist_comment.
- [#34](https://github.com/Clinical-Genomics/oncorefiner/pull/34) Updated all modules and removed deprecated `ch_versions` to implement latest nf-core changes that use the `versions` topic channel to collect software versions.
- [#45](https://github.com/Clinical-Genomics/oncorefiner/pull/45) Fixed settings for `add_pr_checklist_comment` to allow action to run on a PR originated from a fork.
- [#49](https://github.com/Clinical-Genomics/oncorefiner/pull/49) Added `species` parameter to provide information for annotation which was previously hardcoded.

### `Dependencies`

### `Deprecated`

### `Removed`

- Removed CI checks `awstest` and `awsfulltest` [#18](https://github.com/Clinical-Genomics/oncorefiner/pull/18)
- [#18](https://github.com/Clinical-Genomics/oncorefiner/pull/18) Removed CI checks `awstest` and `awsfulltest`.
12 changes: 12 additions & 0 deletions CITATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@

## Pipeline tools

- [`Vcfanno`](https://github.com/brentp/vcfanno)

> Pedersen BS, Layer RM, Quinlan AR. Vcfanno: fast, flexible annotation of genetic variants. Genome Biol. 2016 Jun 1;17(1):118. doi: 10.1186/s13059-016-0973-5. PMID: 27250555; PMCID: PMC4888505.

- [`bcftools`](https://github.com/samtools/bcftools)

> Danecek P, Bonfield JK, Liddle J, Marshall J, Ohan V, Pollard MO, Whitwham A, Keane T, McCarthy SA, Davies RM, Li H. Twelve years of SAMtools and BCFtools. Gigascience. 2021 Jan 29;10(2):giab008. doi: 10.1093/gigascience/giab008. PubMed PMID: 33590861; PubMed Central PMCID: PMC7931819.

- [`Ensembl VEP`](https://www.ensembl.org/info/docs/tools/vep/index.html)

> McLaren W, Gil L, Hunt SE, Riat HS, Ritchie GR, Thormann A, Flicek P, Cunningham F. The Ensembl Variant Effect Predictor. Genome Biology. Jun 6;17(1):122. doi:10.1186/s13059-016-0974-4. PubMed PMID: 27268795; PMCID: PMC4893825.

- [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/)

> Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924.
Expand Down
Loading
Loading