Merge pull request #80 from clinical-genomics-uppsala/release-v0.5.1 #64
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
name: Snakemake dry run | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
branches: | |
- develop | |
- main | |
workflow_dispatch: | |
jobs: | |
snakemake-dry-run: | |
name: Run snakemake dry run for cpu mode | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install requirements.txt | |
run: | | |
pip install -r requirements.txt | |
- name: Install requirements.test.txt | |
run: | | |
pip install -r requirements.test.txt | |
- name: snakemake dry run cpu mode | |
working-directory: .tests/integration | |
run: | | |
snakemake -n -s ../../workflow/Snakefile --configfile config/config.yaml --config aligner=bwa_cpu --config snp_caller=deepvariant_cpu |