Skip to content

Commit 7c1887f

Browse files
authored
Merge pull request #203 from ewels/1.7dev-bump
1.7dev bump
2 parents 0bfbb89 + 2017664 commit 7c1887f

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
4343
- name: Build new docker image
4444
if: env.MATCHED_FILES
45-
run: docker build --no-cache . -t nfcore/methylseq:1.6
45+
run: docker build --no-cache . -t nfcore/methylseq:dev
4646

4747
- name: Pull docker image
4848
if: ${{ !env.MATCHED_FILES }}
4949
run: |
5050
docker pull nfcore/methylseq:dev
51-
docker tag nfcore/methylseq:dev nfcore/methylseq:1.6
51+
docker tag nfcore/methylseq:dev nfcore/methylseq:dev
5252
5353
- name: Install Nextflow
5454
env:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# nf-core/methylseq
22

3+
## v1.7dev
4+
5+
_..nothing yet.._
6+
37
## [v1.6](https://github.com/nf-core/methylseq/releases/tag/1.6) - 2021-03-26
48

59
**:warning: Breaking change!**

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY environment.yml /
1313
RUN conda env create --quiet -f /environment.yml && conda clean -a
1414

1515
# Add conda installation dir to PATH (instead of doing 'conda activate')
16-
ENV PATH /opt/conda/envs/nf-core-methylseq-1.6/bin:$PATH
16+
ENV PATH /opt/conda/envs/nf-core-methylseq-1.7dev/bin:$PATH
1717

1818
# Dump the details of the installed packages to a file for posterity
19-
RUN conda env export --name nf-core-methylseq-1.6 > nf-core-methylseq-1.6.yml
19+
RUN conda env export --name nf-core-methylseq-1.7dev > nf-core-methylseq-1.7dev.yml

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: nf-core-methylseq-1.6
3+
name: nf-core-methylseq-1.7dev
44
channels:
55
- conda-forge
66
- bioconda

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ params {
8686

8787
// Container slug. Stable releases should specify release tag!
8888
// Developmental code should specify :dev
89-
process.container = 'nfcore/methylseq:1.6'
89+
process.container = 'nfcore/methylseq:dev'
9090

9191
// Load base.config by default for all pipelines
9292
includeConfig 'conf/base.config'
@@ -192,7 +192,7 @@ manifest {
192192
description = 'Methylation (Bisulfite-Sequencing) Best Practice analysis pipeline, part of the nf-core community.'
193193
mainScript = 'main.nf'
194194
nextflowVersion = '>=20.07.1'
195-
version = '1.6'
195+
version = '1.7dev'
196196
}
197197

198198
// Function to ensure that resource requirements don't go beyond

0 commit comments

Comments
 (0)