File tree 6 files changed +31
-9
lines changed
6 files changed +31
-9
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ before_install:
13
13
# Pull the docker image first so the test doesn't wait for this
14
14
- docker pull nfcore/eager
15
15
# 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
17
17
18
18
install :
19
19
# Install Nextflow
@@ -22,6 +22,10 @@ install:
22
22
- sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
23
23
# Install nf-core/tools
24
24
- 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"
25
29
# Reset
26
30
- mkdir ${TRAVIS_BUILD_DIR}/tests && cd ${TRAVIS_BUILD_DIR}/tests
27
31
@@ -44,3 +48,5 @@ script:
44
48
- nextflow run ${TRAVIS_BUILD_DIR} -profile test,docker --pairedEnd --circularmapper --circulartarget 'NC_007596.2'
45
49
# Test running with BWA Mem
46
50
- 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.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
21
## [ 2.0.1] - 2018-11-02
8
22
9
- ### ` Fixed ` s
23
+ ### ` Fixed `
10
24
11
25
* [ #69 ] ( https://github.com/nf-core/eager/issues/67 ) - FastQC issues with conda environments
12
26
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ FROM nfcore/base
3
3
LABEL description="Docker image containing all requirements for nf-core/eager pipeline"
4
4
COPY environment.yml /
5
5
RUN 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
4
4
% labels
5
5
MAINTAINER Alexander Peltzer <
[email protected] >
6
6
DESCRIPTION Container image containing all requirements for the nf-core/eager pipeline
7
- VERSION 2.0.1
7
+ VERSION 2.0.2
8
8
9
9
% 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
11
11
export PATH
12
12
13
13
% 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
2
2
channels :
3
3
- defaults
4
4
- bioconda
@@ -20,7 +20,8 @@ dependencies:
20
20
- damageprofiler=0.3.11
21
21
- multiqc=1.6
22
22
- pmdtools=0.60
23
- - r-markdown=0.8
23
+ - r-rmarkdown=1.10
24
+ - libiconv=1.15
24
25
- sequencetools=1.2.2
25
26
- preseq=2.0.3
26
27
- fastp=0.19.4
Original file line number Diff line number Diff line change 11
11
// Global default params, used in configs
12
12
params {
13
13
pipelineVersion = ' 2.0.0dev' // Pipeline version
14
- container = ' nfcore/eager:2.0.1 '
14
+ container = ' nfcore/eager:2.0.2 '
15
15
16
16
// Pipeline options
17
17
aligner = ' bwa'
@@ -22,6 +22,7 @@ params {
22
22
reads = " data/*{1,2}.fastq.gz"
23
23
outdir = ' ./results'
24
24
tracedir = " ${ params.outdir} /pipeline_info"
25
+ readPaths = false
25
26
26
27
// More defaults
27
28
complexity_filter = false
@@ -99,7 +100,7 @@ manifest {
99
100
name = ' nf-core/eager'
100
101
author = ' Alexander Peltzer, Stephen Clayton, James A Fellows-Yates'
101
102
homePage = ' https://github.com/nf-core/eager'
102
- version = ' 2.0.1 '
103
+ version = ' 2.0.2 '
103
104
description = ' A fully reproducible and modern ancient DNA pipeline in Nextflow and with cloud support.'
104
105
mainScript = ' main.nf'
105
106
nextflowVersion = ' >=0.32.0'
You can’t perform that action at this time.
0 commit comments