Skip to content

Commit 24e4601

Browse files
authored
Prepare release (#37)
* nf-core bump-version . 2.5 * add --skipQC all to ANNOTATE test * update usage of download_image script * update CHANGELOG
1 parent e64c3a4 commit 24e4601

File tree

15 files changed

+30
-23
lines changed

15 files changed

+30
-23
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
- checkout
1111
- setup_remote_docker
1212
- run:
13-
command: docker build -t nfcore/sareksnpeff:dev.${GENOME} containers/snpeff/. --build-arg GENOME=${GENOME} --build-arg SNPEFF_CACHE_VERSION=${SNPEFF_CACHE_VERSION}
13+
command: docker build -t nfcore/sareksnpeff:2.5.${GENOME} containers/snpeff/. --build-arg GENOME=${GENOME} --build-arg SNPEFF_CACHE_VERSION=${SNPEFF_CACHE_VERSION}
1414
- run:
1515
command: |
1616
echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
17-
docker push nfcore/sareksnpeff:dev.${GENOME}
17+
docker push nfcore/sareksnpeff:2.5.${GENOME}
1818
1919
snpeffgrch38:
2020
<< : *buildsnpeff
@@ -45,10 +45,10 @@ jobs:
4545
- checkout
4646
- setup_remote_docker
4747
- run:
48-
command: docker build -t nfcore/sarekvep:dev.${GENOME} containers/vep/. --build-arg GENOME=${GENOME} --build-arg SPECIES=${SPECIES} --build-arg VEP_VERSION=${VEP_VERSION}
48+
command: docker build -t nfcore/sarekvep:2.5.${GENOME} containers/vep/. --build-arg GENOME=${GENOME} --build-arg SPECIES=${SPECIES} --build-arg VEP_VERSION=${VEP_VERSION}
4949
no_output_timeout: 3h
5050
- run:
51-
command: echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin ; docker push nfcore/sarekvep:dev.${GENOME}
51+
command: echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin ; docker push nfcore/sarekvep:2.5.${GENOME}
5252

5353
vepgrch38:
5454
<< : *buildvep

.github/workflows/ci-extra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
sudo mv nextflow /usr/local/bin/
1919
- name: Download image
2020
run: |
21-
${GITHUB_WORKSPACE}/scripts/download_image.sh -n docker --test ${{ matrix.test }}
21+
${GITHUB_WORKSPACE}/scripts/download_image.sh -n docker --source-version dev --target-version 2.5 --test ${{ matrix.test }}
2222
- name: Run test
2323
run: |
2424
${GITHUB_WORKSPACE}/scripts/run_tests.sh --test ${{ matrix.test }} --verbose

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Download and tag image
1919
run: |
2020
docker pull nfcore/sarek:dev
21-
docker tag nfcore/sarek:dev nfcore/sarek:dev
21+
docker tag nfcore/sarek:dev nfcore/sarek:2.5
2222
- name: Run test
2323
run: |
2424
nextflow run ${GITHUB_WORKSPACE} -profile test,docker

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_install:
1414
- docker pull nfcore/sarek:dev
1515
# Fake the tag locally so that the pipeline runs properly
1616
# Looks weird when this is :dev to :dev, but makes sense when testing code for a release (:dev to :1.0.1)
17-
- docker tag nfcore/sarek:dev nfcore/sarek:dev
17+
- docker tag nfcore/sarek:dev nfcore/sarek:2.5
1818

1919
install:
2020
# Install Nextflow

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [2.5] - Ålkatj
99

1010
Initial release of `nf-core/sarek`, created with the [nf-core](http://nf-co.re/) template.
1111

@@ -90,6 +90,7 @@ Initial release of `nf-core/sarek`, created with the [nf-core](http://nf-co.re/)
9090
- [#35](https://github.com/nf-core/sarek/pull/35) - Use `tabix` instead of `IGVtools` to build vcf indexes
9191
- [#35](https://github.com/nf-core/sarek/pull/35) - Refactor references handling
9292
- [#35](https://github.com/nf-core/sarek/pull/35) - use Channel values instead of `referenceMap`
93+
- [#37](https://github.com/nf-core/sarek/pull/37) - Bump version for Release
9394

9495
### `Removed`
9596

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ LABEL authors="Maxime Garcia, Szilveszter Juhos" \
44

55
COPY environment.yml /
66
RUN conda env create -f /environment.yml && conda clean -a
7-
ENV PATH /opt/conda/envs/nf-core-sarek-2.5dev/bin:$PATH
7+
ENV PATH /opt/conda/envs/nf-core-sarek-2.5/bin:$PATH

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pipeline {
88
stages {
99
stage('Docker setup') {
1010
steps {
11-
sh "./scripts/download_image.sh -n docker -t ALL -T dev -g smallGRCh37"
11+
sh "./scripts/download_image.sh -n docker -t ALL --source-version dev --target-version 2.5 -g smallGRCh37"
1212
}
1313
}
1414
stage('Germline') {

containers/snpeff/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL \
77

88
COPY environment.yml /
99
RUN conda env create -f /environment.yml && conda clean -a
10-
ENV PATH /opt/conda/envs/sarek-snpeff-2.5dev/bin:$PATH
10+
ENV PATH /opt/conda/envs/sarek-snpeff-2.5/bin:$PATH
1111

1212
# Setup default ARG variables
1313
ARG GENOME=GRCh38

containers/snpeff/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: sarek-snpeff-2.5dev
3+
name: sarek-snpeff-2.5
44
channels:
55
- conda-forge
66
- bioconda

containers/vep/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL \
77

88
COPY environment.yml /
99
RUN conda env create -f /environment.yml && conda clean -a
10-
ENV PATH /opt/conda/envs/sarek-vep-2.5dev/bin:$PATH
10+
ENV PATH /opt/conda/envs/sarek-vep-2.5/bin:$PATH
1111

1212
# Setup default ARG variables
1313
ARG GENOME=GRCh38

0 commit comments

Comments
 (0)