From 93bf83aa51550c09e4af5dc6eb44843e955e6a16 Mon Sep 17 00:00:00 2001 From: nservant <nservant@curie.fr> Date: Fri, 18 Oct 2019 13:31:40 +0200 Subject: [PATCH] dump v1.1.1dev --- .travis.yml | 2 +- Dockerfile | 2 +- environment.yml | 2 +- nextflow.config | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index da79ee6..2dd43f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ before_install: - docker pull nfcore/hic:dev # Fake the tag locally so that the pipeline runs properly # Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1) - - docker tag nfcore/hic:dev nfcore/hic:1.1.0 + - docker tag nfcore/hic:dev nfcore/hic:dev install: # Install Nextflow diff --git a/Dockerfile b/Dockerfile index 8b6ee9b..4714783 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ RUN apt-get update && apt-get install -y gcc g++ && apt-get clean -y COPY environment.yml / RUN conda env create -f /environment.yml && conda clean -a -ENV PATH /opt/conda/envs/nf-core-hic-1.1.0/bin:$PATH +ENV PATH /opt/conda/envs/nf-core-hic-1.1.1dev/bin:$PATH diff --git a/environment.yml b/environment.yml index 4d9c20c..271f3f5 100644 --- a/environment.yml +++ b/environment.yml @@ -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-hic-1.1.0 +name: nf-core-hic-1.1.1dev channels: - conda-forge - bioconda diff --git a/nextflow.config b/nextflow.config index a521f3f..5d69802 100644 --- a/nextflow.config +++ b/nextflow.config @@ -45,7 +45,7 @@ params { // Container slug. Stable releases should specify release tag! // Developmental code should specify :dev -process.container = 'nfcore/hic:1.1.0' +process.container = 'nfcore/hic:dev' // Load base.config by default for all pipelines includeConfig 'conf/base.config' @@ -102,7 +102,7 @@ manifest { description = 'Analysis of Chromosome Conformation Capture data (Hi-C)' mainScript = 'main.nf' nextflowVersion = '>=19.04.0' - version = '1.1.0' + version = '1.1.1dev' } // Function to ensure that resource requirements don't go beyond -- GitLab