File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ jobs:
42
42
43
43
- name : Build new docker image
44
44
if : env.MATCHED_FILES
45
- run : docker build --no-cache . -t nfcore/methylseq:dev
45
+ run : docker build --no-cache . -t nfcore/methylseq:1.6.1
46
46
47
47
- name : Pull docker image
48
48
if : ${{ !env.MATCHED_FILES }}
49
49
run : |
50
50
docker pull nfcore/methylseq:dev
51
- docker tag nfcore/methylseq:dev nfcore/methylseq:dev
51
+ docker tag nfcore/methylseq:dev nfcore/methylseq:1.6.1
52
52
53
53
- name : Install Nextflow
54
54
env :
Original file line number Diff line number Diff line change 1
1
# nf-core/methylseq
2
2
3
- ## v1.7dev
3
+ ## [ v1.6.1 ] ( https://github.com/nf-core/methylseq/releases/tag/1.6.1 ) - 2021-05-08
4
4
5
5
### Pipeline Updates
6
6
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ COPY environment.yml /
13
13
RUN conda env create --quiet -f /environment.yml && conda clean -a
14
14
15
15
# Add conda installation dir to PATH (instead of doing 'conda activate')
16
- ENV PATH /opt/conda/envs/nf-core-methylseq-1.7dev /bin:$PATH
16
+ ENV PATH /opt/conda/envs/nf-core-methylseq-1.6.1 /bin:$PATH
17
17
18
18
# Dump the details of the installed packages to a file for posterity
19
- RUN conda env export --name nf-core-methylseq-1.7dev > nf-core-methylseq-1.7dev .yml
19
+ RUN conda env export --name nf-core-methylseq-1.6.1 > nf-core-methylseq-1.6.1 .yml
Original file line number Diff line number Diff line change 1
1
# You can use this file to create a conda environment for this pipeline:
2
2
# conda env create -f environment.yml
3
- name : nf-core-methylseq-1.7dev
3
+ name : nf-core-methylseq-1.6.1
4
4
channels :
5
5
- conda-forge
6
6
- bioconda
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ params {
86
86
87
87
// Container slug. Stable releases should specify release tag!
88
88
// Developmental code should specify :dev
89
- process. container = ' nfcore/methylseq:dev '
89
+ process. container = ' nfcore/methylseq:1.6.1 '
90
90
91
91
// Load base.config by default for all pipelines
92
92
includeConfig ' conf/base.config'
@@ -193,7 +193,7 @@ manifest {
193
193
description = ' Methylation (Bisulfite-Sequencing) Best Practice analysis pipeline, part of the nf-core community.'
194
194
mainScript = ' main.nf'
195
195
nextflowVersion = ' >=20.07.1'
196
- version = ' 1.7dev '
196
+ version = ' 1.6.1 '
197
197
}
198
198
199
199
// Function to ensure that resource requirements don't go beyond
You can’t perform that action at this time.
0 commit comments