Skip to content

Commit d04bf03

Browse files
authored
Merge pull request #292 from JoseEspinosa/updates
Bump pipeline version to 2.0
2 parents 9e39ea2 + f1894d1 commit d04bf03

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## [1.2.2] - 2022-08-22
6+
## [2.0.0] - 2022-08-11
77

88
### Enhancements & fixes
99

@@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- [[280](https://github.com/nf-core/chipseq/issues/280)] - Update `macs_gsize` in `igenomes.config`, create a new `--read_length` parameter and implement the logic to calculate `--macs_gsize` when the parameter is missing
2626
- Eliminate `if`s conditions from `deseq2_qc` and `macs2_consensus` (local module and use `ext.when` instead)
2727
- Remove `deseq2` differential binding analysis of consensus peaks.
28-
- Filter paired-end files produced by `chromap` due to [this](https://github.com/nf-core/chipseq/issues/291) issue
28+
- [[280](https://github.com/nf-core/chipseq/issues/291) - Filter paired-end files produced by `chromap` since the resulting `BAM` files can not be processed downstream.
2929
- Remove <ANTIBODY> from the macs2 consensus publish directory since it can not be referred as input from the IGV process (meta.id not resolved at execution time)
3030
- Add bytesize link to readme.
3131

@@ -61,7 +61,7 @@ Note, since the pipeline is now using Nextflow DSL2, each process will be run wi
6161
| `deeptools` | 3.4.3 | 3.5.1 |
6262
| `pigz` | 2.3.4 | 2.6 |
6363
| `preseq` | 2.0.3 | 3.1.2 |
64-
| `multiqc` | 1.9 | 1.12 |
64+
| `multiqc` | 1.9 | 1.13a |
6565
| `r-base` | 3.6.1 | 4.0.3 |
6666
| `r-ggplot2` | 3.3.2 | 3.3.3 |
6767
| `bioconductor-deseq2` | 1.26.0 | 1.28.0 |

modules/local/multiqc.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
process MULTIQC {
22
label 'process_medium'
33

4-
conda (params.enable_conda ? "bioconda::multiqc=1.10.1" : null)
4+
conda (params.enable_conda ? "bioconda::multiqc=1.13a" : null)
55
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
6-
'https://depot.galaxyproject.org/singularity/multiqc:1.10.1--pyhdfd78af_1':
7-
'quay.io/biocontainers/multiqc:1.10.1--pyhdfd78af_1' }"
6+
'https://depot.galaxyproject.org/singularity/multiqc:1.13a--pyhdfd78af_1':
7+
'quay.io/biocontainers/multiqc:1.13a--pyhdfd78af_1' }"
88

99
input:
1010
path multiqc_config

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ manifest {
218218
description = 'ChIP-seq peak-calling and differential analysis pipeline.'
219219
mainScript = 'main.nf'
220220
nextflowVersion = '!>=21.10.3'
221-
version = '1.3.0dev'
221+
version = '2.0.0'
222222
}
223223

224224
// Load modules.config for DSL2 module specific options

0 commit comments

Comments
 (0)