Skip to content

Commit

Permalink
no gtf tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Apr 12, 2024
1 parent a0c16c8 commit 9d73d47
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/Mouse.ONT_simulated.R10.no_gtf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Mouse ONT R10 simulated no annotation

on:
workflow_dispatch:
schedule:
- cron: '0 23 * * 5'

env:
RUN_NAME: Mouse.ONT_simulated.R10.no_gtf
LAUNCHER: ${{github.workspace}}/tests/github/run_pipeline.py
CFG_DIR: /abga/work/andreyp/ci_isoquant/data
BIN_PATH: /abga/work/andreyp/ci_isoquant/bin/
OUTPUT_BASE: /abga/work/andreyp/ci_isoquant/output/${{github.ref_name}}/

concurrency:
group: ${{github.workflow}}
cancel-in-progress: false

jobs:
launch-runner:
runs-on:
labels: [self-hosted]
name: 'Running IsoQuant and QC'

steps:
- name: 'Cleanup'
run: >
set -e &&
shopt -s dotglob &&
rm -rf *
- name: 'Checkout'
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: 'IsoQuant'
if: always()
shell: bash
env:
STEP_NAME: Mouse.ONT_simulated.R10.no_gtf
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
45 changes: 45 additions & 0 deletions .github/workflows/Mouse.ONT_simulated.R9.no_gtf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Mouse ONT R9 simulated no annotation

on:
workflow_dispatch:
schedule:
- cron: '0 23 * * 1'

env:
RUN_NAME: Mouse.ONT_simulated.R9.no_gtf
LAUNCHER: ${{github.workspace}}/tests/github/run_pipeline.py
CFG_DIR: /abga/work/andreyp/ci_isoquant/data
BIN_PATH: /abga/work/andreyp/ci_isoquant/bin/
OUTPUT_BASE: /abga/work/andreyp/ci_isoquant/output/${{github.ref_name}}/

concurrency:
group: ${{github.workflow}}
cancel-in-progress: false

jobs:
launch-runner:
runs-on:
labels: [self-hosted]
name: 'Running IsoQuant and QC'

steps:
- name: 'Cleanup'
run: >
set -e &&
shopt -s dotglob &&
rm -rf *
- name: 'Checkout'
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: 'IsoQuant'
if: always()
shell: bash
env:
STEP_NAME: Mouse.ONT_simulated.R9.no_gtf
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}

0 comments on commit 9d73d47

Please sign in to comment.