Skip to content

Commit

Permalink
manual bump-version 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed May 19, 2020
1 parent 212e096 commit d21320d
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
environment:
GENOME: GRCh37
SNPEFF_CACHE_VERSION: "75"
SAREK_TAG: dev
SAREK_TAG: 2.6
steps:
- checkout
- setup_remote_docker
Expand All @@ -20,28 +20,28 @@ jobs:
environment:
GENOME: GRCh38
SNPEFF_CACHE_VERSION: "86"
SAREK_TAG: dev
SAREK_TAG: 2.6

snpeffgrcm38:
<< : *buildsnpeff
environment:
GENOME: GRCm38
SNPEFF_CACHE_VERSION: "86"
SAREK_TAG: dev
SAREK_TAG: 2.6

snpeffcanfam3_1:
<< : *buildsnpeff
environment:
GENOME: CanFam3.1
SNPEFF_CACHE_VERSION: "86"
SAREK_TAG: dev
SAREK_TAG: 2.6

snpeffwbcel235:
<< : *buildsnpeff
environment:
GENOME: WBcel235
SNPEFF_CACHE_VERSION: "86"
SAREK_TAG: dev
SAREK_TAG: 2.6

vepgrch37: &buildvep
docker:
Expand All @@ -50,7 +50,7 @@ jobs:
GENOME: GRCh37
SPECIES: homo_sapiens
VEP_VERSION: "99"
SAREK_TAG: dev
SAREK_TAG: 2.6
steps:
- checkout
- setup_remote_docker
Expand All @@ -66,31 +66,31 @@ jobs:
GENOME: GRCh38
SPECIES: homo_sapiens
VEP_VERSION: "99"
SAREK_TAG: dev
SAREK_TAG: 2.6

vepgrcm38:
<< : *buildvep
environment:
GENOME: GRCm38
SPECIES: mus_musculus
VEP_VERSION: "99"
SAREK_TAG: dev
SAREK_TAG: 2.6

vepcanfam3_1:
<< : *buildvep
environment:
GENOME: CanFam3.1
SPECIES: canis_familiaris
VEP_VERSION: "99"
SAREK_TAG: dev
SAREK_TAG: 2.6

vepwbcel235:
<< : *buildvep
environment:
GENOME: WBcel235
SPECIES: caenorhabditis_elegans
VEP_VERSION: "99"
SAREK_TAG: dev
SAREK_TAG: 2.6

workflows:
version: 2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
NXF_VER: '19.10.0'
- name: Pull docker image
run: |
docker pull nfcore/sarek:dev
docker pull nfcore/sarek${{ matrix.tools }}:dev.${{ matrix.species }}
docker pull nfcore/sarek:2.6
docker pull nfcore/sarek${{ matrix.tools }}:2.6.${{ matrix.species }}
- name: Run annotation test
run: nextflow run ${GITHUB_WORKSPACE} -profile test_annotation,docker --tools ${{ matrix.tools }}

Expand All @@ -67,7 +67,7 @@ jobs:
# Only check Nextflow pipeline minimum version
NXF_VER: '19.10.0'
- name: Pull docker image
run: docker pull nfcore/sarek:dev
run: docker pull nfcore/sarek:2.6
- name: Get test data
run: git clone --single-branch --branch sarek https://github.com/nf-core/test-datasets.git data
- name: Run germline test
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
# Only check Nextflow pipeline minimum version
NXF_VER: '19.10.0'
- name: Pull docker image
run: docker pull nfcore/sarek:dev
run: docker pull nfcore/sarek:2.6
- name: Run test for minimal genomes
run: nextflow run ${GITHUB_WORKSPACE} -profile test,docker --skipQC all --genome ${{ matrix.genome }} ${{ matrix.intervals }} --tools Manta,mpileup,Strelka,FreeBayes

Expand All @@ -116,7 +116,7 @@ jobs:
# Only check Nextflow pipeline minimum version
NXF_VER: '19.10.0'
- name: Pull docker image
run: docker pull nfcore/sarek:dev
run: docker pull nfcore/sarek:2.6
- name: Run ${{ matrix.profile }} test
run: nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.profile }},docker

Expand Down Expand Up @@ -147,6 +147,6 @@ jobs:
# Only check Nextflow pipeline minimum version
NXF_VER: '19.10.0'
- name: Pull docker image
run: docker pull nfcore/sarek:dev
run: docker pull nfcore/sarek:2.6
- name: Run ${{ matrix.tool }} test
run: nextflow run ${GITHUB_WORKSPACE} -profile test_tool,docker --tools ${{ matrix.tool }} ${{ matrix.intervals }}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.6dev] - Piellorieppe
## [2.6] - Piellorieppe

Piellorieppe is one of the main massif in the Sarek National Park.

Expand Down
4 changes: 2 additions & 2 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ process {
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
}
withName:Snpeff {
container = {(params.annotation_cache && params.snpeff_cache) ? 'nfcore/sarek:dev' : "nfcore/sareksnpeff:dev.${params.genome}"}
container = {(params.annotation_cache && params.snpeff_cache) ? 'nfcore/sarek:2.6' : "nfcore/sareksnpeff:2.6.${params.genome}"}
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
}
withLabel:VEP {
container = {(params.annotation_cache && params.vep_cache) ? 'nfcore/sarek:dev' : "nfcore/sarekvep:dev.${params.genome}"}
container = {(params.annotation_cache && params.vep_cache) ? 'nfcore/sarek:2.6' : "nfcore/sarekvep:2.6.${params.genome}"}
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
}
}
4 changes: 2 additions & 2 deletions conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ params {

process {
withName:Snpeff {
container = 'nfcore/sareksnpeff:dev.GRCh37'
container = 'nfcore/sareksnpeff:2.6.WBcel235'
maxForks = 1
}
withLabel:VEP {
container = 'nfcore/sarekvep:dev.GRCh37'
container = 'nfcore/sarekvep:2.6.WBcel235'
maxForks = 1
}
}
4 changes: 2 additions & 2 deletions containers/snpeff/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a

# Add conda installation dir to PATH (instead of doing 'conda activate')
ENV PATH /opt/conda/envs/nf-core-sarek-snpeff-2.6dev/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-sarek-snpeff-2.6/bin:$PATH

# Setup default ARG variables
ARG GENOME=GRCh38
Expand All @@ -19,4 +19,4 @@ ARG SNPEFF_CACHE_VERSION=86
RUN snpEff download -v ${GENOME}.${SNPEFF_CACHE_VERSION}

# Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-sarek-snpeff-2.6dev > nf-core-sarek-snpeff-2.6dev.yml
RUN conda env export --name nf-core-sarek-snpeff-2.6 > nf-core-sarek-snpeff-2.6.yml
2 changes: 1 addition & 1 deletion containers/snpeff/environment.yml
Original file line number Diff line number Diff line change
@@ -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-sarek-snpeff-2.6dev
name: nf-core-sarek-snpeff-2.6
channels:
- conda-forge
- bioconda
Expand Down
4 changes: 2 additions & 2 deletions containers/vep/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a

# Add conda installation dir to PATH (instead of doing 'conda activate')
ENV PATH /opt/conda/envs/nf-core-sarek-vep-2.6dev/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-sarek-vep-2.6/bin:$PATH

# Setup default ARG variables
ARG GENOME=GRCh38
Expand All @@ -27,4 +27,4 @@ RUN vep_install \
--NO_BIOPERL --NO_HTSLIB --NO_TEST --NO_UPDATE

# Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-sarek-vep-2.6dev > nf-core-sarek-vep-2.6dev.yml
RUN conda env export --name nf-core-sarek-vep-2.6 > nf-core-sarek-vep-2.6.yml
2 changes: 1 addition & 1 deletion containers/vep/environment.yml
Original file line number Diff line number Diff line change
@@ -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-sarek-vep-2.6dev
name: nf-core-sarek-vep-2.6
channels:
- conda-forge
- bioconda
Expand Down
Binary file modified docs/images/sarek_workflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d21320d

Please sign in to comment.