Skip to content

Commit fb94810

Browse files
committed
bump version to 2.5.2
1 parent 5739ae2 commit fb94810

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -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.5.1
40+
run: docker build --no-cache . -t nfcore/eager:2.5.2
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.5.1
46+
docker tag nfcore/eager:dev nfcore/eager:2.5.2
4747
4848
- name: Install Nextflow
4949
env:

Dockerfile

+2-2
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.5.1/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.5.2/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.5.1 > nf-core-eager-2.5.1.yml
13+
RUN conda env export --name nf-core-eager-2.5.2 > nf-core-eager-2.5.2.yml

environment.yml

+1-1
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.5.1
3+
name: nf-core-eager-2.5.2
44
channels:
55
- conda-forge
66
- bioconda

nextflow.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ params {
289289

290290
// Container slug. Stable releases should specify release tag!
291291
// Developmental code should specify :dev
292-
process.container = 'nfcore/eager:2.5.1'
292+
process.container = 'nfcore/eager:2.5.2'
293293

294294
// Load base.config by default for all pipelines
295295
includeConfig 'conf/base.config'
@@ -419,7 +419,7 @@ manifest {
419419
description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline'
420420
mainScript = 'main.nf'
421421
nextflowVersion = '>=20.07.1'
422-
version = '2.5.1'
422+
version = '2.5.2'
423423
}
424424

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

0 commit comments

Comments
 (0)