-
Notifications
You must be signed in to change notification settings - Fork 18
62 lines (53 loc) · 1.63 KB
/
run_metacells.yml
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
# This is a workflow to run the metacells module
#
# Analysis modules are run based on three triggers:
# - Manual trigger
# - On pull requests where code in the module has changed
# - As a reusable workflow called from a separate workflow which periodically runs all modules
#
# At initialization, only the manual trigger is active
name: Run metacells analysis module
env:
MODULE_PATH: analyses/metacells
AWS_DEFAULT_REGION: us-east-2
concurrency:
# only one run per branch at a time
group: "run_metacells_${{ github.ref }}"
cancel-in-progress: true
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
paths:
- analyses/metacells/**
- "!analyses/metacells/Dockerfile"
- "!analyses/metacells/.dockerignore"
- .github/workflows/run_metacells.yml
jobs:
run-module:
if: github.repository_owner == 'AlexsLemonade'
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout repo
uses: actions/checkout@v4
# Downloading just one sample for initial testing
- name: Download test data
run: ./download-data.py --test-data --format AnnData --sample SCPCS000001
- name: Set up conda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
- name: Install and activate locked conda environment
run: |
conda install conda-lock
conda-lock install --name test ${MODULE_PATH}/conda-lock.yml
- name: Run analysis module
run: |
cd ${MODULE_PATH}
# run module script here
bash run-metacells.sh