diff --git a/.travis.yml b/.travis.yml index 06d9ef46f..5517fcd9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ before_install: - docker pull nfcore/eager:dev # Fake the tag locally so that the pipeline runs properly # Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1) - - docker tag nfcore/eager:dev nfcore/eager:dev + - docker tag nfcore/eager:dev nfcore/eager:2.0.7 install: # Install Nextflow diff --git a/Dockerfile b/Dockerfile index 16eed4cc4..83ea249ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,4 @@ FROM nfcore/base LABEL description="Docker image containing all requirements for nf-core/eager pipeline" COPY environment.yml / RUN conda env create -f /environment.yml && conda clean -a -ENV PATH /opt/conda/envs/nf-core-eager-2.0.7dev/bin:$PATH +ENV PATH /opt/conda/envs/nf-core-eager-2.0.7/bin:$PATH diff --git a/environment.yml b/environment.yml index 02ab2de61..759fdc002 100644 --- a/environment.yml +++ b/environment.yml @@ -1,4 +1,4 @@ -name: nf-core-eager-2.0.7dev +name: nf-core-eager-2.0.7 channels: - defaults - bioconda diff --git a/nextflow.config b/nextflow.config index 7e2b8c382..ebe8b801b 100644 --- a/nextflow.config +++ b/nextflow.config @@ -55,7 +55,7 @@ params { // Container slug. Stable releases should specify release tag! // Developmental code should specify :dev -process.container = 'nfcore/eager:dev' +process.container = 'nfcore/eager:2.0.7' // Load base.config by default for all pipelines includeConfig 'conf/base.config' @@ -110,7 +110,7 @@ manifest { name = 'nf-core/eager' author = 'Alexander Peltzer, Stephen Clayton, James A. Fellows Yates, Maxime Borry' homePage = 'https://github.com/nf-core/eager' - version = '2.0.7dev' + version = '2.0.7' description = 'A fully reproducible ancient and modern DNA pipeline in Nextflow and with cloud support.' mainScript = 'main.nf' nextflowVersion = '>=0.32.0'