Skip to content

Commit

Permalink
Version bump to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciot committed Apr 16, 2019
1 parent 0bae68e commit cac526b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ before_install:
- docker pull nfcore/nascent: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/nascent:dev nfcore/nascent:dev
- docker tag nfcore/nascent:dev nfcore/nascent:1.0

install:
# Install Nextflow
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ LABEL authors="Ignacio Tripodi ([email protected]), Margaret Gruca (m

COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/nf-core-nascent-1.0dev/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-nascent-1.0/bin:$PATH
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: nf-core-nascent-1.0dev
name: nf-core-nascent-1.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 @@ -60,7 +60,7 @@ params {

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

// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
Expand Down Expand Up @@ -113,7 +113,7 @@ manifest {
description = 'Nascent Transcription Processing Pipeline'
mainScript = 'main.nf'
nextflowVersion = '>=0.32.0'
version = '1.0dev'
version = '1.0'
}

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

0 comments on commit cac526b

Please sign in to comment.