Skip to content

Commit 406b088

Browse files
authored
Merge pull request #222 from apeltzer/dev
Bumped to 2.0.7
2 parents 69c2373 + 00b9d71 commit 406b088

5 files changed

Lines changed: 15 additions & 14 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_install:
1414
- docker pull nfcore/eager:dev
1515
# Fake the tag locally so that the pipeline runs properly
1616
# Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
17-
- docker tag nfcore/eager:dev nfcore/eager:dev
17+
- docker tag nfcore/eager:dev nfcore/eager:2.0.7
1818

1919
install:
2020
# Install Nextflow

CHANGELOG.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unpublished Version / DEV]
8+
## [2.0.7] - 2019-06-10
99

1010
### `Added`
1111

@@ -17,7 +17,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1717
* Don't ignore DamageProfiler errors anymore
1818
* [#220](https://github.com/nf-core/eager/pull/220) - Added post-mapping filtering statistics module and corresponding MultiQC statistics [#217](https://github.com/nf-core/eager/issues/217)
1919

20-
2120
### `Fixed`
2221

2322
* [#152](https://github.com/nf-core/eager/pull/152) - DamageProfiler errors [won't crash entire pipeline anymore](https://github.com/nf-core/eager/issues/171)
@@ -34,10 +33,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3433

3534
* Added DeDup v0.12.5 (json support)
3635
* Added mtnucratio v0.5 (json support)
37-
* Updated Picard 2.18.27 -> 2.19.0
38-
* Updated GATK 4.1.0.0 -> 4.1.1.1
39-
* Updated damageprofiler 0.4.4 -> 0.4.5
36+
* Updated Picard 2.18.27 -> 2.20.2
37+
* Updated GATK 4.1.0.0 -> 4.1.2.0
38+
* Updated damageprofiler 0.4.4 -> 0.4.5
4039
* Updated r-rmarkdown 1.11 -> 1.12
40+
* Updated fastp 0.19.7 -> 0.20.0
41+
* Updated qualimap 2.2.2b -> 2.2.2c
4142

4243
## [2.0.6] - 2019-03-05
4344

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

environment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: nf-core-eager-2.0.7dev
1+
name: nf-core-eager-2.0.7
22
channels:
33
- defaults
44
- bioconda
@@ -9,13 +9,13 @@ dependencies:
99
- bioconda::adapterremoval=2.2.2
1010
- bioconda::adapterremovalfixprefix=0.0.4
1111
- bioconda::bwa=0.7.17
12-
- bioconda::picard=2.19.0
12+
- bioconda::picard=2.20.2
1313
- bioconda::samtools=1.9
1414
- bioconda::dedup=0.12.5
1515
- bioconda::angsd=0.923
1616
- bioconda::circularmapper=1.93.4
17-
- bioconda::gatk4=4.1.1.0
18-
- bioconda::qualimap=2.2.2b
17+
- bioconda::gatk4=4.1.2.0
18+
- bioconda::qualimap=2.2.2c
1919
- bioconda::vcf2genome=0.91
2020
- bioconda::damageprofiler=0.4.6
2121
- bioconda::multiqc=1.7
@@ -25,7 +25,7 @@ dependencies:
2525
- conda-forge::pigz=2.3.4
2626
- bioconda::sequencetools=1.2.2
2727
- bioconda::preseq=2.0.3
28-
- bioconda::fastp=0.19.7
28+
- bioconda::fastp=0.20.0
2929
- bioconda::bamutil=1.0.14
3030
- bioconda::mtnucratio=0.5
3131
- pysam=0.15.2

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ params {
5050
}
5151
// Container slug. Stable releases should specify release tag!
5252
// Developmental code should specify :dev
53-
process.container = 'nfcore/eager:dev'
53+
process.container = 'nfcore/eager:2.0.7'
5454

5555
// Load base.config by default for all pipelines
5656
includeConfig 'conf/base.config'
@@ -104,7 +104,7 @@ manifest {
104104
name = 'nf-core/eager'
105105
author = 'Alexander Peltzer, Stephen Clayton, James A. Fellows Yates, Maxime Borry'
106106
homePage = 'https://github.com/nf-core/eager'
107-
version = '2.0.7dev'
107+
version = '2.0.7'
108108
description = 'A fully reproducible ancient and modern DNA pipeline in Nextflow and with cloud support.'
109109
mainScript = 'main.nf'
110110
nextflowVersion = '>=0.32.0'

0 commit comments

Comments
 (0)