fix: remove pindel decompose and update filters #164
Workflow file for this run
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: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
snakemake-dry-run: | |
name: Run snakemake dry run | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install requirements.txt | |
run: | | |
pip install -r requirements.txt | |
- name: snakemake dry run | |
working-directory: .tests/integration | |
run: | | |
snakemake -n -s ../../workflow/Snakefile --configfile ../../config/config.yaml config/config.yaml --config POPPY_HOME=../.. |