Skip to content
Snippets Groups Projects
Unverified Commit 20c6a12b authored by Nicolas Servant's avatar Nicolas Servant Committed by GitHub
Browse files

Merge pull request #14 from nf-core/dev

bump v1.0.0 from nf-core devel
parents 06bc08ea 0dfb8bda
Branches
Tags
No related merge requests found
...@@ -14,7 +14,7 @@ before_install: ...@@ -14,7 +14,7 @@ before_install:
- docker pull nfcore/hic:dev - docker pull nfcore/hic:dev
# Fake the tag locally so that the pipeline runs properly # 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) # 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:dev - docker tag nfcore/hic:dev nfcore/hic:1.0.0
install: install:
# Install Nextflow # Install Nextflow
......
...@@ -7,4 +7,4 @@ RUN apt-get update && apt-get install -y gcc g++ && apt-get clean -y ...@@ -7,4 +7,4 @@ RUN apt-get update && apt-get install -y gcc g++ && apt-get clean -y
COPY environment.yml / COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/nf-core-hic-1.0dev/bin:$PATH ENV PATH /opt/conda/envs/nf-core-hic-1.0.0/bin:$PATH
# 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.0dev name: nf-core-hic-1.0.0
channels: channels:
- conda-forge - conda-forge
- bioconda - bioconda
......
...@@ -45,7 +45,7 @@ params { ...@@ -45,7 +45,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:dev' process.container = 'nfcore/hic:1.0.0'
// Load base.config by default for all pipelines // Load base.config by default for all pipelines
includeConfig 'conf/base.config' includeConfig 'conf/base.config'
...@@ -102,7 +102,7 @@ manifest { ...@@ -102,7 +102,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 = '>=0.32.0' nextflowVersion = '>=0.32.0'
version = '1.0dev' version = '1.0.0'
} }
// 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.
Please register or to comment