Skip to content

Commit 631f18e

Browse files
authored
Merge pull request #984 from nf-core/patch
2.4.7 Patch
2 parents bb32ae3 + 72fcc1a commit 631f18e

5 files changed

Lines changed: 26 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
# Nextflow versions: check pipeline minimum and current latest
26-
nxf_ver: ['20.07.1', '']
26+
nxf_ver: ['20.07.1', '22.10.6']
2727
steps:
2828
- name: Check out pipeline code
2929
uses: actions/checkout@v2
@@ -37,13 +37,13 @@ jobs:
3737
3838
- name: Build new docker image
3939
if: env.MATCHED_FILES
40-
run: docker build --no-cache . -t nfcore/eager:2.4.6
40+
run: docker build --no-cache . -t nfcore/eager:2.4.7
4141

4242
- name: Pull docker image
4343
if: ${{ !env.MATCHED_FILES }}
4444
run: |
4545
docker pull nfcore/eager:dev
46-
docker tag nfcore/eager:dev nfcore/eager:2.4.6
46+
docker tag nfcore/eager:dev nfcore/eager:2.4.7
4747
4848
- name: Install Nextflow
4949
env:
@@ -216,4 +216,4 @@ jobs:
216216
nextflow run ${GITHUB_WORKSPACE} -profile test_tsv_humanbam,docker --skip_fastqc --skip_adapterremoval --skip_deduplication --skip_qualimap --skip_preseq --skip_damage_calculation --run_mtnucratio
217217
- name: RESCALING Run basic pipeline with basic pipeline but with mapDamage rescaling of BAM files. Note this will be slow
218218
run: |
219-
nextflow run ${GITHUB_WORKSPACE} -profile test,docker --run_mapdamage_rescaling --run_genotyping --genotyping_tool hc --genotyping_source 'rescaled'
219+
nextflow run ${GITHUB_WORKSPACE} -profile test,docker --run_mapdamage_rescaling --run_genotyping --genotyping_tool hc --genotyping_source 'rescaled'

CHANGELOG.md

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

6+
## [2.4.7] - 2023-05-16
7+
8+
### `Added`
9+
10+
### `Fixed`
11+
12+
- [#983](https://github.com/nf-core/eager/issues/983) Bump `pygments` version due to incompatibility with MultiQC dependencies (♥ to @MinLuke for reporting)
13+
14+
### `Dependencies`
15+
16+
- `pygments`: 2.9 -> 2.14
17+
- `multiqc`: 1.13 -> 1.14
18+
19+
### `Deprecated`
20+
621
## [2.4.6] - 2022-11-14
722

823
### `Added`

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY environment.yml /
77
RUN conda env create --quiet -f /environment.yml && conda clean -a
88

99
# Add conda installation dir to PATH (instead of doing 'conda activate')
10-
ENV PATH /opt/conda/envs/nf-core-eager-2.4.6/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.4.7/bin:$PATH
1111

1212
# Dump the details of the installed packages to a file for posterity
13-
RUN conda env export --name nf-core-eager-2.4.6 > nf-core-eager-2.4.6.yml
13+
RUN conda env export --name nf-core-eager-2.4.7 > nf-core-eager-2.4.7.yml

environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: nf-core-eager-2.4.6
3+
name: nf-core-eager-2.4.7
44
channels:
55
- conda-forge
66
- bioconda
@@ -9,7 +9,7 @@ dependencies:
99
- conda-forge::python=3.9.4
1010
- conda-forge::markdown=3.3.4
1111
- conda-forge::pymdown-extensions=8.2
12-
- conda-forge::pygments=2.9.0
12+
- conda-forge::pygments=2.14.0
1313
- bioconda::rename=1.601
1414
- conda-forge::openjdk=8.0.144 # Don't upgrade - required for GATK
1515
- bioconda::fastqc=0.11.9
@@ -26,7 +26,7 @@ dependencies:
2626
- bioconda::qualimap=2.2.2d
2727
- bioconda::vcf2genome=0.91
2828
- bioconda::damageprofiler=0.4.9 # Don't upgrade - later versions don't allow java 8
29-
- bioconda::multiqc=1.13
29+
- bioconda::multiqc=1.14
3030
- bioconda::pmdtools=0.60
3131
- bioconda::bedtools=2.30.0
3232
- conda-forge::libiconv=1.16

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ params {
285285

286286
// Container slug. Stable releases should specify release tag!
287287
// Developmental code should specify :dev
288-
process.container = 'nfcore/eager:2.4.6'
288+
process.container = 'nfcore/eager:2.4.7'
289289

290290
// Load base.config by default for all pipelines
291291
includeConfig 'conf/base.config'
@@ -415,7 +415,7 @@ manifest {
415415
description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline'
416416
mainScript = 'main.nf'
417417
nextflowVersion = '>=20.07.1'
418-
version = '2.4.6'
418+
version = '2.4.7'
419419
}
420420

421421
// Function to ensure that resource requirements don't go beyond

0 commit comments

Comments
 (0)