Skip to content
Snippets Groups Projects
Commit 3634558e authored by Phil Ewels's avatar Phil Ewels
Browse files

nf-core bump versions to pipeline version 1.3dev

parent b93833f5
No related branches found
No related tags found
No related merge requests found
...@@ -34,13 +34,13 @@ jobs: ...@@ -34,13 +34,13 @@ jobs:
- name: Build new docker image - name: Build new docker image
if: env.GIT_DIFF if: env.GIT_DIFF
run: docker build --no-cache . -t nfcore/hic:1.2.2 run: docker build --no-cache . -t nfcore/hic:dev
- name: Pull docker image - name: Pull docker image
if: ${{ !env.GIT_DIFF }} if: ${{ !env.GIT_DIFF }}
run: | run: |
docker pull nfcore/hic:dev docker pull nfcore/hic:dev
docker tag nfcore/hic:dev nfcore/hic:1.2.2 docker tag nfcore/hic:dev nfcore/hic:dev
- name: Install Nextflow - name: Install Nextflow
run: | run: |
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## v1.2.3dev ## v1.3dev
* Template update for nf-core/tools v1.11 * Template update for nf-core/tools v1.11
......
...@@ -9,10 +9,10 @@ COPY environment.yml / ...@@ -9,10 +9,10 @@ COPY environment.yml /
RUN conda env create --quiet -f /environment.yml && conda clean -a RUN conda env create --quiet -f /environment.yml && conda clean -a
# Add conda installation dir to PATH (instead of doing 'conda activate') # Add conda installation dir to PATH (instead of doing 'conda activate')
ENV PATH /opt/conda/envs/nf-core-hic-1.2.2/bin:$PATH ENV PATH /opt/conda/envs/nf-core-hic-1.3dev/bin:$PATH
# Dump the details of the installed packages to a file for posterity # Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-hic-1.2.2 > nf-core-hic-1.2.2.yml RUN conda env export --name nf-core-hic-1.3dev > nf-core-hic-1.3dev.yml
# Instruct R processes to use these empty files instead of clashing with a local version # Instruct R processes to use these empty files instead of clashing with a local version
RUN touch .Rprofile RUN touch .Rprofile
......
# You can use this file to create a conda environment for this pipeline: # You can use this file to create a conda environment for this pipeline:
# conda env create -f environment.yml # conda env create -f environment.yml
name: nf-core-hic-1.2.2 name: nf-core-hic-1.3dev
channels: channels:
- conda-forge - conda-forge
- bioconda - bioconda
......
...@@ -80,7 +80,7 @@ params { ...@@ -80,7 +80,7 @@ params {
// Container slug. Stable releases should specify release tag! // Container slug. Stable releases should specify release tag!
// Developmental code should specify :dev // Developmental code should specify :dev
process.container = 'nfcore/hic:1.2.2' process.container = 'nfcore/hic:dev'
// Load base.config by default for all pipelines // Load base.config by default for all pipelines
includeConfig 'conf/base.config' includeConfig 'conf/base.config'
...@@ -153,7 +153,7 @@ manifest { ...@@ -153,7 +153,7 @@ manifest {
description = 'Analysis of Chromosome Conformation Capture data (Hi-C)' description = 'Analysis of Chromosome Conformation Capture data (Hi-C)'
mainScript = 'main.nf' mainScript = 'main.nf'
nextflowVersion = '>=19.10.0' nextflowVersion = '>=19.10.0'
version = '1.2.2' version = '1.3dev'
} }
// Function to ensure that resource requirements don't go beyond // Function to ensure that resource requirements don't go beyond
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment