-
Notifications
You must be signed in to change notification settings - Fork 33
61 lines (58 loc) · 2 KB
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Tests
on:
push:
paths-ignore:
- "config/**"
- "**.md"
- "profiles/**"
jobs:
Testing_local-fastq:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test workflow (Local Fastq > VCF)
uses: cademirch/snakemake-github-action@v1
with:
directory: .test/ecoli/
snakefile: workflow/Snakefile
args: "--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: cademirch/snakemake-github-action@v1
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: cademirch/snakemake-github-action@v1
with:
snakefile: workflow/modules/qc/Snakefile
directory: .test/qc/
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba"
Testing_Postprocess:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test workflow (Postprocess)
uses: cademirch/snakemake-github-action@v1
with:
snakefile: workflow/modules/postprocess/Snakefile
directory: .test/postprocess/
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba"
Testing_Trackhub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test workflow (Trackhubs)
uses: cademirch/snakemake-github-action@v1
with:
snakefile: workflow/modules/trackhub/Snakefile
directory: .test/trackhub/
args: "--use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache --conda-frontend mamba"