Skip to content

Commit

Permalink
simulated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Feb 13, 2024
1 parent 78473af commit 6af9ff4
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/SIRVs.Set4.R10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
fetch-depth: 1

- name: 'GitHub runner'
- name: 'IsoQuant SIRVs'
shell: bash
run: |
export PATH=$PATH:${{env.BIN_PATH}}
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/SIRVs.Set4.simulated_perfect.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: SIRVs simulated reduced annotation

on:
workflow_dispatch:
schedule:
- cron: '0 12 * * 2,6'

env:
RUN_NAME: SIRVs.simulated
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}}/

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: 'SIRVs.simulated_perfect'
shell: bash
env:
STEP_NAME: SIRVs.simulated_perfect
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.RUN_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
- name: 'IsoQuant: perfect reads with polyA'
shell: bash
env:
STEP_NAME: SIRVs.simulated_perfect_polya
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.RUN_NAME}}.cfg -o ${{env.OUTPUT_BASE}}

0 comments on commit 6af9ff4

Please sign in to comment.