File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 17
17
export NXF_VER=${{ matrix.nxf_ver }}
18
18
wget -qO- get.nextflow.io | bash
19
19
sudo mv nextflow /usr/local/bin/
20
+ - name : Download and tag image
21
+ run : |
22
+ docker pull nfcore/ampliseq:dev
23
+ docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.1.1
20
24
- name : Run test
21
25
run : |
22
26
nextflow run ${GITHUB_WORKSPACE} -profile test,docker
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ before_install:
12
12
- ' [ $TRAVIS_PULL_REQUEST = "false" ] || [ $TRAVIS_BRANCH != "master" ] || ([ $TRAVIS_PULL_REQUEST_SLUG = $TRAVIS_REPO_SLUG ] && ([ $TRAVIS_PULL_REQUEST_BRANCH = "dev" ] || [ $TRAVIS_PULL_REQUEST_BRANCH = "patch" ]))' # Pull the docker image first so the test doesn't wait for this
13
13
- docker pull nfcore/ampliseq:dev
14
14
# Fake the tag locally so that the pipeline runs properly
15
- - docker tag nfcore/ampliseq:dev nfcore/ampliseq:dev
15
+ - docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.1.1
16
16
17
17
install :
18
18
# Install Nextflow
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM nfcore/base:1.7
2
2
LABEL description="Docker image containing all requirements for nf-core/ampliseq pipeline"
3
3
COPY environment.yml /
4
4
RUN conda env create -f /environment.yml && conda clean -a
5
- ENV PATH /opt/conda/envs/nf-core-ampliseq-dev /bin:$PATH
5
+ ENV PATH /opt/conda/envs/nf-core-ampliseq-1.1.1 /bin:$PATH
6
6
# # Required to build the container properly
7
7
RUN mkdir -p /root/.config/matplotlib
8
8
RUN echo "backend : Agg" > /root/.config/matplotlib/matplotlibrc
Original file line number Diff line number Diff line change 1
- name : nf-core-ampliseq-dev
1
+ name : nf-core-ampliseq-1.1.1
2
2
channels :
3
3
- qiime2
4
4
- qiime2/label/r2019.10
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ includeConfig 'conf/base.config'
66
66
67
67
// Container slug. Stable releases should specify release tag!
68
68
// Developmental code should specify :dev
69
- process. container = ' nfcore/ampliseq:dev '
69
+ process. container = ' nfcore/ampliseq:1.1.1 '
70
70
71
71
// Load base.config by default for all pipelines
72
72
includeConfig ' conf/base.config'
@@ -125,7 +125,7 @@ manifest {
125
125
homePage = ' https://github.com/nf-core/ampliseq'
126
126
description = ' 16S rRNA amplicon sequencing analysis workflow using QIIME2'
127
127
homePage = ' https://github.com/nf-core/ampliseq'
128
- version = ' dev '
128
+ version = ' 1.1.1 '
129
129
mainScript = ' main.nf'
130
130
nextflowVersion = ' >=19.10.0'
131
131
}
You can’t perform that action at this time.
0 commit comments