Skip to content

Commit 0dee04e

Browse files
authored
Merge pull request #119 from apeltzer/dev
PR Bump for 2.0.4
2 parents 8066fb7 + 3182733 commit 0dee04e

7 files changed

Lines changed: 13 additions & 11 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.4
1717

1818
install:
1919
# Install Nextflow

CHANGELOG.md

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

77
## [Unpublished / Dev Branch]
88

9+
## [2.0.4] - 2019-01-07
10+
911
### `Added`
1012
* [#111](https://github.com/nf-core/eager/pull/110) - Allow [Zipped FastA reference input](https://github.com/nf-core/eager/issues/91)
11-
* [#113](https://github.com/nf-core/eager/pull/113) - All files are now staged via channels, which is considered best practice by Nextflow.
13+
* [#113](https://github.com/nf-core/eager/pull/113) - All files are now staged via channels, which is considered best practice by Nextflow
1214
* [#114](https://github.com/nf-core/eager/pull/113) - Add proper runtime defaults for multiple processes
13-
* [#118](https://github.com/nf-core/eager/pull/118) - Add centralized configs handling
15+
* [#118](https://github.com/nf-core/eager/pull/118) - Add centralized configs handling by https://github.com/nf-core/configs
16+
* [#115](https://github.com/nf-core/eager/pull/115) - Add DamageProfiler MultiQC support
1417

1518
### `Fixed`
1619
* [#110](https://github.com/nf-core/eager/pull/110) - Fix for [MultiQC Missing Second FastQC report](https://github.com/nf-core/eager/issues/107)

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

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

1313
%files

conf/test.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ params {
1414
genome = "Custom"
1515
//Input data
1616
singleEnd = false
17-
readPaths = [
18-
['JK2782_TGGCCGATCAACGA_L008', ['https://github.com/nf-core/test-datasets/raw/eager2/testdata/Mammoth/JK2782_TGGCCGATCAACGA_L008_R1_001.fastq.gz.tengrand.fq.gz','https://github.com/nf-core/test-datasets/raw/eager2/testdata/Mammoth/JK2782_TGGCCGATCAACGA_L008_R2_001.fastq.gz.tengrand.fq.gz']],
17+
readPaths = [['JK2782_TGGCCGATCAACGA_L008', ['https://github.com/nf-core/test-datasets/raw/eager2/testdata/Mammoth/JK2782_TGGCCGATCAACGA_L008_R1_001.fastq.gz.tengrand.fq.gz','https://github.com/nf-core/test-datasets/raw/eager2/testdata/Mammoth/JK2782_TGGCCGATCAACGA_L008_R2_001.fastq.gz.tengrand.fq.gz']],
1918
]
2019
// Genome references
2120
fasta = 'https://raw.githubusercontent.com/nf-core/test-datasets/eager2/reference/Mammoth_MT_Krause.fasta'

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.4dev
1+
name: nf-core-eager-2.0.4
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.4'
1414

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

0 commit comments

Comments
 (0)