Skip to content

Commit f5447f7

Browse files
authored
Merge pull request #198 from apeltzer/dev
PR for 2.0.7
2 parents d6f038e + 06af1e6 commit f5447f7

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_install:
1414
- docker pull nfcore/eager:dev
1515
# Fake the tag locally so that the pipeline runs properly
1616
# Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
17-
- docker tag nfcore/eager:dev nfcore/eager:dev
17+
- docker tag nfcore/eager:dev nfcore/eager:2.0.7
1818

1919
install:
2020
# Install Nextflow

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ FROM nfcore/base
33
LABEL description="Docker image containing all requirements for nf-core/eager pipeline"
44
COPY environment.yml /
55
RUN conda env create -f /environment.yml && conda clean -a
6-
ENV PATH /opt/conda/envs/nf-core-eager-2.0.7dev/bin:$PATH
6+
ENV PATH /opt/conda/envs/nf-core-eager-2.0.7/bin:$PATH

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: nf-core-eager-2.0.7dev
1+
name: nf-core-eager-2.0.7
22
channels:
33
- defaults
44
- bioconda

nextflow.config

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

5656
// Container slug. Stable releases should specify release tag!
5757
// Developmental code should specify :dev
58-
process.container = 'nfcore/eager:dev'
58+
process.container = 'nfcore/eager:2.0.7'
5959

6060
// Load base.config by default for all pipelines
6161
includeConfig 'conf/base.config'
@@ -110,7 +110,7 @@ manifest {
110110
name = 'nf-core/eager'
111111
author = 'Alexander Peltzer, Stephen Clayton, James A. Fellows Yates, Maxime Borry'
112112
homePage = 'https://github.com/nf-core/eager'
113-
version = '2.0.7dev'
113+
version = '2.0.7'
114114
description = 'A fully reproducible ancient and modern DNA pipeline in Nextflow and with cloud support.'
115115
mainScript = 'main.nf'
116116
nextflowVersion = '>=0.32.0'

0 commit comments

Comments
 (0)