diff --git a/.bumpversion.cfg b/.bumpversion.cfg deleted file mode 100644 index 079dcdaa..00000000 --- a/.bumpversion.cfg +++ /dev/null @@ -1,25 +0,0 @@ -[bumpversion] -current_version = 1.0.0 -commit = True -tag = False -parse = (?P\d+)\.(?P\d+)\.(?P[a-z0-9+]+) - -[bumpversion:file:nextflow.config] -search = version = '{current_version}' -replace = version = '{new_version}' - -[bumpversion:file:README.md] -search = -revision {current_version} -replace = -revision {new_version} - -[bumpversion:file (example commands):docs/usage.md] -search = -revision {current_version} -replace = -revision {new_version} - -[bumpversion:file (urls):docs/usage.md] -search = /{current_version}/ -replace = /{new_version}/ - -[bumpversion:file (templated example):docs/usage.md] -search = {current_version}` -replace = {new_version}` diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d2bcdbe..35aa93f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [dev] + +- [95](https://github.com/nf-core/oncoanalyser/pull/95) - Post-release bump + ## [[1.0.0](https://github.com/nf-core/oncoanalyser/releases/tag/1.0.0)] Pied Currawong - 2024-08-26 Initial release of nf-core/oncoanalyser, created with the [nf-core](https://nf-co.re/) template. diff --git a/README.md b/README.md index 89e4062d..453c6c71 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Launch `oncoanalyser`: ```bash nextflow run nf-core/oncoanalyser \ -profile docker \ - -revision 1.0.0 \ + -revision dev \ --mode wgts \ --genome GRCh38_hmf \ --input samplesheet.csv \ diff --git a/docs/usage.md b/docs/usage.md index 31aa71c3..78748174 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -66,7 +66,7 @@ details and columns are [described below](#column-descriptions). Several different input filetypes beyond FASTQ and BAM are recognised, including intermediate output files generated during execution such as the PURPLE output directory. The full list of recognised input filetypes is available -[here](https://github.com/nf-core/oncoanalyser/blob/1.0.0/lib/Constants.groovy#L58-L90). +[here](https://github.com/nf-core/oncoanalyser/blob/dev/lib/Constants.groovy#L58-L90). ### Simple example @@ -157,7 +157,7 @@ The typical command for running the pipeline is as follows: ```bash nextflow run nf-core/oncoanalyser \ -profile docker \ - -revision 1.0.0 \ + -revision dev \ --mode \ --genome \ --input samplesheet.csv \ @@ -241,7 +241,7 @@ If you wish to share such profile (such as upload as supplementary material for ### Selecting processes Most of the major components in `oncoanalyser` can be skipped using `--processes_exclude` (the full list of available -processes can be viewed [here](https://github.com/nf-core/oncoanalyser/blob/1.0.0/lib/Constants.groovy#L36-L56)). +processes can be viewed [here](https://github.com/nf-core/oncoanalyser/blob/dev/lib/Constants.groovy#L36-L56)). Multiple processes can be given as a comma-separated list. While there are some use-cases for this feature (e.g. skipping resource intensive processes such as VIRUSBreakend), it becomes more powerful when combined with existing inputs as described in the following section. @@ -284,7 +284,7 @@ And now run and skip variant calling: ```bash nextflow run nf-core/oncoanalyser \ -profile docker \ - -revision 1.0.0 \ + -revision dev \ --mode wgts \ --processes_exclude markdups,amber,cobalt,gridss,gripss,sage,pave \ --genome GRCh38_hmf \ @@ -354,7 +354,7 @@ P1_wgts,P1,SC,tumor,rna,bam,/path/to/P1.SC.tumor.rna.wts.bam ```bash nextflow run nf-core/oncoanalyser \ -profile docker \ - -revision 1.0.0 \ + -revision dev \ --mode wgts \ --genome GRCh38_hmf \ --prepare_reference_only \ @@ -363,7 +363,7 @@ nextflow run nf-core/oncoanalyser \ ``` Executing the above command will download and unpack default reference data without running any analysis, and once -complete the prepared reference files can found in `./prepare_reference/reference_data/1.0.0//`. It is +complete the prepared reference files can found in `./prepare_reference/reference_data/1.1.0dev//`. It is recommended to remove the Nextflow work directory after staging data to free disk space. For `oncoanalyser` to use locally staged reference data a custom config can be used: @@ -455,7 +455,7 @@ config file. This avoids having to regenerate indexes for each new analysis. ```bash nextflow run nf-core/oncoanalyser \ -profile docker \ - -revision 1.0.0 \ + -revision dev \ -config genome.custom.config \ --mode wgts \ \ diff --git a/nextflow.config b/nextflow.config index 21529327..4de7027f 100644 --- a/nextflow.config +++ b/nextflow.config @@ -294,7 +294,7 @@ manifest { description = """A comprehensive cancer DNA/RNA analysis and reporting pipeline""" mainScript = 'main.nf' nextflowVersion = '!>=22.10.5' - version = '1.0.0' + version = '1.1.0dev' doi = '' }