-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #836 from FriederikeHanssen/release_3_1
Release 3.1
- Loading branch information
Showing
359 changed files
with
8,530 additions
and
6,736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,15 @@ name: nf-core CI | |
# This workflow runs the pipeline with the minimal test dataset to check that it completes without any syntax errors | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
branches: [dev] | ||
pull_request: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
NXF_ANSI_LOG: false | ||
# Cancel if a newer run is started | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
|
@@ -30,9 +31,11 @@ jobs: | |
exclude: | ||
- NXF_VER: "latest-everything" | ||
profile: "conda" | ||
env: | ||
NXF_ANSI_LOG: false | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
|
@@ -56,7 +59,7 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-nextflow- | ||
- name: Install Nextflow | ||
- name: Install Nextflow ${{ matrix.NXF_VER }} | ||
uses: nf-core/setup-nextflow@v1 | ||
with: | ||
version: "${{ matrix.NXF_VER }}" | ||
|
@@ -89,104 +92,17 @@ jobs: | |
if: failure() | ||
run: | | ||
sudo apt install bat > /dev/null | ||
batcat --decorations=always --color=always /tmp/pytest_workflow_*/*/log.{out,err} | ||
batcat --decorations=always --color=always /home/runner/pytest_workflow_*/*/log.{out,err} | ||
- name: Upload logs on failure | ||
if: failure() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: logs-${{ matrix.profile }} | ||
path: | | ||
/tmp/pytest_workflow_*/*/.nextflow.log | ||
/tmp/pytest_workflow_*/*/log.out | ||
/tmp/pytest_workflow_*/*/log.err | ||
/tmp/pytest_workflow_*/*/work | ||
/tmp/pytest_workflow_*/**/.command.log | ||
!/tmp/pytest_workflow_*/*/work/conda | ||
!/tmp/pytest_workflow_*/*/work/singularity | ||
test_all: | ||
name: Run pipeline with test data (complete) | ||
# Only run on push if this is the nf-core dev branch (merged PRs) | ||
if: "${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/sarek') }}" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
# HACK Remove after DSL2 rewrite is done | ||
fail-fast: false | ||
matrix: | ||
NXF_VER: | ||
- "21.10.3" | ||
test: | ||
- "aligner" | ||
- "alignment_to_fastq" | ||
- "annotation" | ||
- "cnvkit" | ||
- "controlfreec" | ||
- "deepvariant" | ||
- "freebayes" | ||
- "gatk4_spark" | ||
- "haplotypecaller" | ||
- "intervals" | ||
- "manta" | ||
- "markduplicates" | ||
- "mpileup" | ||
- "msisensorpro" | ||
- "mutect2" | ||
- "prepare_recalibration" | ||
- "recalibrate" | ||
- "save_bam_mapped" | ||
- "save_output_as_bam" | ||
- "skip_markduplicates" | ||
- "skip_qc" | ||
- "split_fastq" | ||
- "strelka" | ||
- "strelkabp" | ||
- "targeted" | ||
- "tiddit" | ||
- "trimming" | ||
- "tumor_normal_pair" | ||
- "umi" | ||
- "variantcalling_channel" | ||
profile: ["docker"] | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Nextflow | ||
uses: nf-core/setup-nextflow@v1 | ||
with: | ||
version: "${{ matrix.NXF_VER }}" | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.x" | ||
|
||
- name: Install dependencies | ||
run: python -m pip install --upgrade pip pytest-workflow | ||
|
||
- name: Run pipeline with tests settings | ||
uses: Wandalen/[email protected] | ||
with: | ||
command: PROFILE=${{ matrix.profile }} pytest --tag ${{ matrix.test }} --symlink --kwdof --git-aware --color=yes | ||
attempt_limit: 3 | ||
|
||
- name: Output log on failure | ||
if: failure() | ||
run: | | ||
sudo apt install bat > /dev/null | ||
batcat --decorations=always --color=always /tmp/pytest_workflow_*/*/log.{out,err} | ||
- name: Upload logs on failure | ||
if: failure() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: logs-${{ matrix.profile }} | ||
path: | | ||
/tmp/pytest_workflow_*/*/.nextflow.log | ||
/tmp/pytest_workflow_*/*/log.out | ||
/tmp/pytest_workflow_*/*/log.err | ||
/tmp/pytest_workflow_*/*/work | ||
/tmp/pytest_workflow_*/**/.command.log | ||
!/tmp/pytest_workflow_*/*/work/conda | ||
!/tmp/pytest_workflow_*/*/work/singularity | ||
/home/runner/pytest_workflow_*/*/.nextflow.log | ||
/home/runner/pytest_workflow_*/*/log.out | ||
/home/runner/pytest_workflow_*/*/log.err | ||
/home/runner/pytest_workflow_*/*/work | ||
!/home/runner/pytest_workflow_*/*/work/conda | ||
!/home/runner/pytest_workflow_*/*/work/singularity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
name: pytest-workflow | ||
# This workflow runs the pipeline with the minimal test dataset to check that it completes without any syntax errors | ||
on: | ||
pull_request: | ||
branches: [dev, master] | ||
|
||
# Cancel if a newer run is started | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
changes: | ||
name: Check for changes | ||
runs-on: ubuntu-latest | ||
outputs: | ||
# Expose matched filters as job 'tags' output variable | ||
tags: ${{ steps.filter.outputs.changes }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: "tests/config/pytest_tags.yml" | ||
|
||
test: | ||
name: ${{ matrix.tags }} ${{ matrix.profile }} NF ${{ matrix.NXF_VER }} | ||
runs-on: ubuntu-latest | ||
needs: changes | ||
if: needs.changes.outputs.tags != '[]' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tags: ["${{ fromJson(needs.changes.outputs.tags) }}"] | ||
profile: ["docker", "singularity", "conda"] | ||
NXF_VER: | ||
- "21.10.3" | ||
- "latest-everything" | ||
exclude: | ||
- profile: "conda" | ||
NXF_VER: "latest-everything" | ||
- profile: "conda" | ||
tags: umi | ||
- profile: "conda" | ||
tags: deepvariant | ||
- profile: "conda" | ||
tags: haplotypecaller | ||
- profile: "conda" | ||
tags: merge | ||
- profile: "conda" | ||
tags: snpeff | ||
- profile: "conda" | ||
tags: vep | ||
- profile: "singularity" | ||
tags: merge | ||
env: | ||
NXF_ANSI_LOG: false | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.x" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install Python dependencies | ||
run: python -m pip install --upgrade pip pytest-workflow | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: /usr/local/bin/nextflow | ||
key: ${{ runner.os }} | ||
restore-keys: | | ||
${{ runner.os }}-nextflow- | ||
- name: Install Nextflow ${{ matrix.NXF_VER }} | ||
uses: nf-core/setup-nextflow@v1 | ||
with: | ||
version: "${{ matrix.NXF_VER }}" | ||
|
||
- name: Set up Singularity | ||
if: matrix.profile == 'singularity' | ||
uses: eWaterCycle/setup-singularity@v5 | ||
with: | ||
singularity-version: 3.7.1 | ||
|
||
- name: Set up miniconda | ||
if: matrix.profile == 'conda' | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
auto-update-conda: true | ||
channels: conda-forge,bioconda,defaults | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Conda clean | ||
if: matrix.profile == 'conda' | ||
run: conda clean -a | ||
|
||
- name: Run pytest-workflow | ||
uses: Wandalen/[email protected] | ||
with: | ||
command: TMPDIR=~ PROFILE=${{ matrix.profile }} pytest --tag ${{ matrix.tags }} --symlink --kwdof --git-aware --color=yes | ||
attempt_limit: 3 | ||
|
||
- name: Output log on failure | ||
if: failure() | ||
run: | | ||
sudo apt install bat > /dev/null | ||
batcat --decorations=always --color=always /home/runner/pytest_workflow_*/*/log.{out,err} | ||
- name: Upload logs on failure | ||
if: failure() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: logs-${{ matrix.profile }} | ||
path: | | ||
/home/runner/pytest_workflow_*/*/.nextflow.log | ||
/home/runner/pytest_workflow_*/*/log.out | ||
/home/runner/pytest_workflow_*/*/log.err | ||
/home/runner/pytest_workflow_*/*/work | ||
!/home/runner/pytest_workflow_*/*/work/conda | ||
!/home/runner/pytest_workflow_*/*/work/singularity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
repository_type: pipeline | ||
lint: | ||
files_exist: | ||
- conf/modules.config | ||
- conf/test.config | ||
- conf/test_full.config | ||
files_unchanged: | ||
- assets/multiqc_config.yml | ||
- assets/nf-core-sarek_logo_light.png | ||
- docs/images/nf-core-sarek_logo_dark.png | ||
- docs/images/nf-core-sarek_logo_light.png | ||
- lib/NfcoreTemplate.groovy | ||
template_strings: False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
email_template.html | ||
adaptivecard.json | ||
.nextflow* | ||
work/ | ||
data/ | ||
|
Oops, something went wrong.