File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1515 # Fake the tag locally so that the pipeline runs properly
16- - docker tag nfcore/eager nfcore/eager:2.0.0
16+ - docker tag nfcore/eager nfcore/eager:2.0.1
1717
1818install :
1919 # Install Nextflow
Original file line number Diff line number Diff line change 11# nf-core/eager: Changelog
2+ All notable changes to this project will be documented in this file.
23
3- ## 2.0 "Kaufbeuren" - 2018-10-17
4+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5+ and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
46
5- Initial release of nf-core/eager featuring:
7+ ## [ 2.0.1] - 2018-11-02
8+
9+ ### ` Fixed ` s
10+
11+ * [ #69 ] ( https://github.com/nf-core/eager/issues/67 ) - FastQC issues with conda environments
12+
13+ ## [ 2.0.0] "Kaufbeuren" - 2018-10-17
14+
15+ Initial release of nf-core/eager:
16+
17+ ### ` Added `
618
719* FastQC read quality control
820* (Optional) Read complexity filtering with FastP
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ FROM nfcore/base
33LABEL description="Docker image containing all requirements for nf-core/eager pipeline"
44COPY environment.yml /
55RUN conda env create -f /environment.yml && conda clean -a
6- ENV PATH /opt/conda/envs/nf-core-eager-2.0.0 /bin:$PATH
6+ ENV PATH /opt/conda/envs/nf-core-eager-2.0.1 /bin:$PATH
Original file line number Diff line number Diff line change 66[ ![ install with bioconda] ( https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg )] ( http://bioconda.github.io/ )
77[ ![ Docker Container available] ( https://img.shields.io/docker/automated/nfcore/eager.svg )] ( https://hub.docker.com/r/nfcore/eager/ )
88![ Singularity Container available] ( https://img.shields.io/badge/singularity-available-7E4C74.svg )
9+ [ ![ DOI] ( https://zenodo.org/badge/135918251.svg )] ( https://zenodo.org/badge/latestdoi/135918251 )
10+
11+
912
1013## Introduction
1114
Original file line number Diff line number Diff 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.0
7+ VERSION 2.0.1
88
99% environment
10- PATH=/opt/conda/envs/nf-core-eager-2.0.0 /bin:$PATH
10+ PATH=/opt/conda/envs/nf-core-eager-2.0.1 /bin:$PATH
1111 export PATH
1212
1313% files
Original file line number Diff line number Diff line change 1- name : nf-core-eager-2.0.0
1+ name : nf-core-eager-2.0.1
22channels :
33 - defaults
4- - conda-forge
54 - bioconda
5+ - conda-forge
66dependencies :
7- - conda-forge ::openjdk=8.0.144 # Needed for FastQC docker - see bioconda/bioconda-recipes#5026
7+ - defaults ::openjdk=8.0.152
88 - fastqc=0.11.8
99 - adapterremoval=2.2.2
1010 - adapterremovalfixprefix=0.0.4
1111 - bwa=0.7.17
12- - picard=2.18.14
12+ - picard=2.18.15
1313 - samtools=1.9
1414 - dedup=0.12.3
15- - angsd=0.921
15+ - angsd=0.923
1616 - circularmapper=1.93.4
1717 - gatk4=4.0.10.0
1818 - qualimap=2.2.2b
Original file line number Diff line number Diff line change 1111// Global default params, used in configs
1212params {
1313 pipelineVersion = ' 2.0.0dev' // Pipeline version
14- container = ' nfcore/eager:2.0.0 '
14+ container = ' nfcore/eager:2.0.1 '
1515
1616 // Pipeline options
1717 aligner = ' bwa'
@@ -41,7 +41,6 @@ profiles {
4141 }
4242 singularity {
4343 singularity. enabled = true
44- process. container = {" shub://${ params.container.replace('nfcore', 'nf-core')} " }
4544 }
4645 standard {
4746 includeConfig ' conf/base.config'
@@ -100,7 +99,7 @@ manifest {
10099 name = ' nf-core/eager'
101100 author = ' Alexander Peltzer, Stephen Clayton, James A Fellows-Yates'
102101 homePage = ' https://github.com/nf-core/eager'
103- version = ' 2.0.0 '
102+ version = ' 2.0.1 '
104103 description = ' A fully reproducible and modern ancient DNA pipeline in Nextflow and with cloud support.'
105104 mainScript = ' main.nf'
106105 nextflowVersion = ' >=0.32.0'
You can’t perform that action at this time.
0 commit comments