-
Notifications
You must be signed in to change notification settings - Fork 7
73 lines (63 loc) · 1.94 KB
/
pca_roh.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
62
63
64
65
66
67
68
69
70
71
72
73
name: pca_roh
on:
push:
paths-ignore:
- 'README.md'
- 'LICENSE.md'
- 'workflow/rules/1.2_map_to_mitogenomes.smk'
- 'workflow/rules/7_mlRho.smk'
- 'workflow/rules/12_snpEff.smk'
- 'workflow/rules/13_GERP.smk'
branches:
- main
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE.md'
- 'workflow/docker'
- 'workflow/rules/1.2_map_to_mitogenomes.smk'
- 'workflow/rules/7_mlRho.smk'
- 'workflow/rules/12_snpEff.smk'
- 'workflow/rules/13_GERP.smk'
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: eWaterCycle/setup-apptainer@v2
with:
apptainer-version: 1.1.4
- uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
channels: conda-forge,bioconda
activate-environment: generode
environment-file: environment.yml
auto-activate-base: false
- name: conda_environment
shell: bash -l {0}
run: |
conda info
conda list
- name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧
uses: jlumbroso/free-disk-space@main
with:
# This might remove tools that are actually needed, if set to "true" but frees about 6 GB
tool-cache: false
# All of these default to true, but feel free to set to "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true
- name: pca_roh_dry
shell: bash -l {0}
run: |
snakemake -np -k --configfile .test/config/config_pca_roh.yaml -j 4 --cores 1 --use-singularity
- name: pca_roh
shell: bash -l {0}
run: |
snakemake -k --configfile .test/config/config_pca_roh.yaml -j 4 --cores 1 --use-singularity