Skip to content

Commit b2d9f40

Browse files
committed
Version 2.0.5 PR for release
1 parent 368387a commit b2d9f40

6 files changed

Lines changed: 14 additions & 7 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:latest
16+
- docker tag nfcore/eager:dev nfcore/eager:2.0.5
1717

1818
install:
1919
# Install Nextflow

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unpublished / Dev Branch]
88

9+
## [2.0.5] - 2019-01-28
10+
911
### `Added`
1012
* [#127](https://github.com/nf-core/eager/pull/127) - Added a second testcase for testing the pipeline properly
1113
* [#129](https://github.com/nf-core/eager/pull/129) - Support BAM files as [input format](https://github.com/nf-core/eager/issues/41)
@@ -14,6 +16,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1416
### `Fixed`
1517
* [#128](https://github.com/nf-core/eager/issues/128) - Fixed reference genome handling errors
1618

19+
### `Dependencies`
20+
* Picard Tools 2.18.21 -> 2.18.23
21+
* R-Markdown 1.10 -> 1.11
22+
* FastP 0.19.5 -> 0.19.6
23+
1724
## [2.0.4] - 2019-01-09
1825

1926
### `Added`

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.5dev/bin:$PATH
6+
ENV PATH /opt/conda/envs/nf-core-eager-2.0.5/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.5dev
7+
VERSION 2.0.5
88

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

1313
%files

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.5dev
1+
name: nf-core-eager-2.0.5
22
channels:
33
- defaults
44
- bioconda

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:latest'
13+
container = 'nfcore/eager:2.0.5'
1414

1515
//Pipeline options
1616
aligner = 'bwa'
@@ -87,7 +87,7 @@ manifest {
8787
name = 'nf-core/eager'
8888
author = 'Alexander Peltzer, Stephen Clayton, James A Fellows-Yates'
8989
homePage = 'https://github.com/nf-core/eager'
90-
version = '2.0.5dev'
90+
version = '2.0.5'
9191
description = 'A fully reproducible and modern ancient DNA pipeline in Nextflow and with cloud support.'
9292
mainScript = 'main.nf'
9393
nextflowVersion = '>=0.32.0'

0 commit comments

Comments
 (0)