File tree Expand file tree Collapse file tree 6 files changed +31
-9
lines changed Expand file tree Collapse file tree 6 files changed +31
-9
lines changed 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.1
16+ - docker tag nfcore/eager nfcore/eager:2.0.2
1717
1818install :
1919 # Install Nextflow
@@ -22,6 +22,10 @@ install:
2222 - sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
2323 # Install nf-core/tools
2424 - pip install nf-core
25+ # Install Conda
26+ - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
27+ - bash Miniconda3-latest-Linux-x86_64.sh -b -f -p $HOME/miniconda
28+ - export PATH="$HOME/miniconda/bin:$PATH"
2529 # Reset
2630 - mkdir ${TRAVIS_BUILD_DIR}/tests && cd ${TRAVIS_BUILD_DIR}/tests
2731
@@ -44,3 +48,5 @@ script:
4448 - nextflow run ${TRAVIS_BUILD_DIR} -profile test,docker --pairedEnd --circularmapper --circulartarget 'NC_007596.2'
4549 # Test running with BWA Mem
4650 - nextflow run ${TRAVIS_BUILD_DIR} -profile test,docker --pairedEnd --bwamem
51+ # Test basic pipeline with Conda too
52+ - nextflow run ${TRAVIS_BUILD_DIR} -profile test,conda --pairedEnd
Original file line number Diff line number Diff line change @@ -4,9 +4,23 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## unpublished
8+
9+
10+ ## [ 2.0.2] - 2018-11-03
11+
12+ ### ` Changed `
13+ * [ #70 ] ( https://github.com/nf-core/eager/issues/70 ) - Uninitialized ` readPaths ` warning removed
14+
15+ ### ` Added `
16+ * [ #73 ] ( https://github.com/nf-core/eager/pull/73 ) - Travis CI Testing of Conda Environment added
17+
18+ ### ` Fixed `
19+ * [ #72 ] ( https://github.com/nf-core/eager/issues/72 ) - iconv Issue with R in conda environment
20+
721## [ 2.0.1] - 2018-11-02
822
9- ### ` Fixed ` s
23+ ### ` Fixed `
1024
1125* [ #69 ] ( https://github.com/nf-core/eager/issues/67 ) - FastQC issues with conda environments
1226
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.1 /bin:$PATH
6+ ENV PATH /opt/conda/envs/nf-core-eager-2.0.2 /bin:$PATH
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ Bootstrap:docker
44% labels
55 MAINTAINER Alexander Peltzer <
[email protected] >
66 DESCRIPTION Container image containing all requirements for the nf-core/eager pipeline
7- VERSION 2.0.1
7+ VERSION 2.0.2
88
99% environment
10- PATH=/opt/conda/envs/nf-core-eager-2.0.1 /bin:$PATH
10+ PATH=/opt/conda/envs/nf-core-eager-2.0.2 /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.1
1+ name : nf-core-eager-2.0.2
22channels :
33 - defaults
44 - bioconda
@@ -20,7 +20,8 @@ dependencies:
2020 - damageprofiler=0.3.11
2121 - multiqc=1.6
2222 - pmdtools=0.60
23- - r-markdown=0.8
23+ - r-rmarkdown=1.10
24+ - libiconv=1.15
2425 - sequencetools=1.2.2
2526 - preseq=2.0.3
2627 - fastp=0.19.4
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.1 '
14+ container = ' nfcore/eager:2.0.2 '
1515
1616 // Pipeline options
1717 aligner = ' bwa'
@@ -22,6 +22,7 @@ params {
2222 reads = " data/*{1,2}.fastq.gz"
2323 outdir = ' ./results'
2424 tracedir = " ${ params.outdir} /pipeline_info"
25+ readPaths = false
2526
2627 // More defaults
2728 complexity_filter = false
@@ -99,7 +100,7 @@ manifest {
99100 name = ' nf-core/eager'
100101 author = ' Alexander Peltzer, Stephen Clayton, James A Fellows-Yates'
101102 homePage = ' https://github.com/nf-core/eager'
102- version = ' 2.0.1 '
103+ version = ' 2.0.2 '
103104 description = ' A fully reproducible and modern ancient DNA pipeline in Nextflow and with cloud support.'
104105 mainScript = ' main.nf'
105106 nextflowVersion = ' >=0.32.0'
You can’t perform that action at this time.
0 commit comments