Skip to content

Commit 9d8488a

Browse files
committed
Update to 2.0.4dev
1 parent 428adda commit 9d8488a

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ before_install:
1313
# Pull the docker image first so the test doesn't wait for this
1414
- docker pull nfcore/eager:dev
1515
# Fake the tag locally so that the pipeline runs properly
16-
- docker tag nfcore/eager:dev nfcore/eager:2.0.3
16+
- docker tag nfcore/eager:dev nfcore/eager:latest
1717

1818
install:
1919
# 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.3/bin:$PATH
6+
ENV PATH /opt/conda/envs/nf-core-eager-2.0.4dev/bin:$PATH

Singularity

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Bootstrap:docker
44
%labels
55
MAINTAINER Alexander Peltzer <alexander.peltzer@qbic.uni-tuebingen.de>
66
DESCRIPTION Container image containing all requirements for the nf-core/eager pipeline
7-
VERSION 2.0.3
7+
VERSION 2.0.4dev
88

99
%environment
10-
PATH=/opt/conda/envs/nf-core-eager-2.0.3/bin:$PATH
10+
PATH=/opt/conda/envs/nf-core-eager-2.0.4dev/bin:$PATH
1111
export PATH
1212

1313
%files

environment.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: nf-core-eager-2.0.3
1+
name: nf-core-eager-2.0.4dev
22
channels:
33
- defaults
44
- bioconda
@@ -9,22 +9,22 @@ dependencies:
99
- bioconda::adapterremoval=2.2.2
1010
- bioconda::adapterremovalfixprefix=0.0.4
1111
- bioconda::bwa=0.7.17
12-
- bioconda::picard=2.18.15
12+
- bioconda::picard=2.18.21
1313
- bioconda::samtools=1.9
1414
- bioconda::dedup=0.12.3
1515
- bioconda::angsd=0.923
1616
- bioconda::circularmapper=1.93.4
17-
- bioconda::gatk4=4.0.11.0
17+
- bioconda::gatk4=4.0.12.0
1818
- bioconda::qualimap=2.2.2b
1919
- bioconda::vcf2genome=0.91
20-
- bioconda::damageprofiler=0.3.11
21-
- bioconda::multiqc=1.6
20+
- bioconda::damageprofiler=0.4.4
21+
- bioconda::multiqc=1.7
2222
- bioconda::pmdtools=0.60
2323
- conda-forge::r-rmarkdown=1.10
2424
- conda-forge::libiconv=1.15
2525
- conda-forge::pigz=2.3.4
2626
- bioconda::sequencetools=1.2.2
2727
- bioconda::preseq=2.0.3
28-
- bioconda::fastp=0.19.4
28+
- bioconda::fastp=0.19.5
2929
- bioconda::bamutil=1.0.14
3030
#Missing Schmutzi,snpAD

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// Global default params, used in configs
1212
params {
13-
container = 'nfcore/eager:dev'
13+
container = 'nfcore/eager:latest'
1414

1515
//Pipeline options
1616
aligner = 'bwa'
@@ -107,7 +107,7 @@ manifest {
107107
name = 'nf-core/eager'
108108
author = 'Alexander Peltzer, Stephen Clayton, James A Fellows-Yates'
109109
homePage = 'https://github.com/nf-core/eager'
110-
version = '2.0.3'
110+
version = '2.0.4dev'
111111
description = 'A fully reproducible and modern ancient DNA pipeline in Nextflow and with cloud support.'
112112
mainScript = 'main.nf'
113113
nextflowVersion = '>=0.32.0'

0 commit comments

Comments
 (0)