Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Jul 1, 2020
1 parent 51677ac commit 1c395ff
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
- name: Build new docker image
if: env.GIT_DIFF
run: docker build --no-cache . -t nfcore/atacseq:dev
run: docker build --no-cache . -t nfcore/atacseq:1.2.0

- name: Pull docker image
if: ${{ !env.GIT_DIFF }}
run: |
docker pull nfcore/atacseq:dev
docker tag nfcore/atacseq:dev nfcore/atacseq:dev
docker tag nfcore/atacseq:dev nfcore/atacseq:1.2.0
- name: Install Nextflow
run: |
Expand Down Expand Up @@ -75,13 +75,13 @@ jobs:
- name: Build new docker image
if: env.GIT_DIFF
run: docker build --no-cache . -t nfcore/atacseq:dev
run: docker build --no-cache . -t nfcore/atacseq:1.2.0

- name: Pull docker image
if: ${{ !env.GIT_DIFF }}
run: |
docker pull nfcore/atacseq:dev
docker tag nfcore/atacseq:dev nfcore/atacseq:dev
docker tag nfcore/atacseq:dev nfcore/atacseq:1.2.0
- name: Install Nextflow
run: |
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2020-06-04
## [1.2.0] - 2020-07-02

### `Added`

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a

# Add conda installation dir to PATH (instead of doing 'conda activate')
ENV PATH /opt/conda/envs/nf-core-atacseq-1.1.1dev/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-atacseq-1.2.0/bin:$PATH

# Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-atacseq-1.1.1dev > nf-core-atacseq-1.1.1dev.yml
RUN conda env export --name nf-core-atacseq-1.2.0 > nf-core-atacseq-1.2.0.yml

# Instruct R processes to use these empty files instead of clashing with a local version
RUN touch .Rprofile
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# You can use this file to create a conda environment for this pipeline:
# conda env create -f environment.yml
name: nf-core-atacseq-1.1.1dev
name: nf-core-atacseq-1.2.0
channels:
- conda-forge
- bioconda
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ params {

// Container slug. Stable releases should specify release tag!
// Developmental code should specify :dev
process.container = 'nfcore/atacseq:dev'
process.container = 'nfcore/atacseq:1.2.0'

// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
Expand Down Expand Up @@ -172,7 +172,7 @@ manifest {
description = 'ATACSeq peak-calling and differential analysis pipeline.'
mainScript = 'main.nf'
nextflowVersion = '>=19.10.0'
version = '1.1.1dev'
version = '1.2.0'
}

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

0 comments on commit 1c395ff

Please sign in to comment.