get rid of stagein #418
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: Tests | |
on: | |
push: | |
paths: | |
- "**/Snakefile" | |
- "**/*.smk" | |
- "**/*.py" | |
- ".github/workflows/*" | |
jobs: | |
Testing_local-fastq: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test workflow (Local Fastq > VCF) | |
uses: snakemake/[email protected] | |
with: | |
directory: .test/ecoli/ | |
snakefile: workflow/Snakefile | |
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba" | |
# stagein: "mamba install -y -c conda-forge 'python==3.11.4'" | |
Testing_config-genomes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test workflow (Local Fastq > VCF) | |
uses: snakemake/[email protected] | |
with: | |
directory: .test/ecoli/ | |
snakefile: workflow/Snakefile | |
args: "--config samples='config/ecoli_config_genome.csv' refGenome='ecoli' refPath='data/local_genome/local_genome.fna.gz' --use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba" | |
Testing_local-fastq_and_sra: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test workflow (Local Fastq > VCF) | |
uses: snakemake/[email protected] | |
with: | |
directory: .test/ecoli/ | |
snakefile: workflow/Snakefile | |
args: "--config samples='config/local_and_sra.csv' --use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba" | |
Testing_QC: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test workflow (QC rules) | |
uses: snakemake/[email protected] | |
with: | |
snakefile: workflow/modules/qc/Snakefile | |
directory: .test/qc/ | |
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba" | |
# stagein: "mamba install -y -c conda-forge 'python==3.11.4'" | |
Testing_Postprocess: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test workflow (Postprocess) | |
uses: snakemake/[email protected] | |
with: | |
snakefile: workflow/modules/postprocess/Snakefile | |
directory: .test/postprocess/ | |
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba" | |
# stagein: "mamba install -y -c conda-forge 'python==3.11.4'" | |
Testing_Trackhub: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test workflow (Trackhubs) | |
uses: snakemake/[email protected] | |
with: | |
snakefile: workflow/modules/trackhub/Snakefile | |
directory: .test/trackhub/ | |
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba" | |
# stagein: "mamba install -y -c conda-forge 'python==3.11.4'" |