Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: nf-core-eager-2.0.7dev
name: nf-core-eager-2.0.7
channels:
- defaults
- bioconda
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down