Skip to content

Commit 2f3a199

Browse files
committed
ubam config test
1 parent cecf3e0 commit 2f3a199

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: SIRVs real ONT reduced annotation
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 20 * * 1,3,5'
7+
8+
env:
9+
RUN_NAME: SIRVs.Set4.R10.ubam
10+
LAUNCHER: ${{github.workspace}}/tests/github/run_pipeline.py
11+
CFG_DIR: /abga/work/andreyp/ci_isoquant/data
12+
BIN_PATH: /abga/work/andreyp/ci_isoquant/bin/
13+
OUTPUT_BASE: /abga/work/andreyp/ci_isoquant/output/${{github.ref_name}}/
14+
15+
concurrency:
16+
group: ${{github.workflow}}
17+
cancel-in-progress: false
18+
19+
jobs:
20+
launch-runner:
21+
runs-on:
22+
labels: [isoquant]
23+
name: 'Running IsoQuant and QC'
24+
25+
steps:
26+
- name: 'Cleanup'
27+
run: >
28+
set -e &&
29+
shopt -s dotglob &&
30+
rm -rf *
31+
32+
- name: 'Checkout'
33+
uses: actions/checkout@v3
34+
with:
35+
fetch-depth: 1
36+
37+
- name: 'IsoQuant SIRVs R10.4 Unmapped BAM'
38+
if: always()
39+
shell: bash
40+
env:
41+
STEP_NAME: SIRVs.Set4.R10.ubam
42+
run: |
43+
export PATH=$PATH:${{env.BIN_PATH}}
44+
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
45+

0 commit comments

Comments
 (0)