SIRVs real ONT various options #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SIRVs real ONT various options | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 21 * * 6' | |
env: | |
RUN_NAME: SIRVs.Set4.R10.OPTS | |
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: [isoquant] | |
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 SIRVs R10.4 pipeline options' | |
if: always() | |
shell: bash | |
env: | |
STEP_NAME: SIRVs.Set4.R10.opts1 | |
run: | | |
export PATH=$PATH:${{env.BIN_PATH}} | |
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}} | |
- name: 'IsoQuant SIRVs R10.4 read filtering' | |
if: always() | |
shell: bash | |
env: | |
STEP_NAME: SIRVs.Set4.R10.opts2 | |
run: | | |
export PATH=$PATH:${{env.BIN_PATH}} | |
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}} | |
- name: 'IsoQuant SIRVs R10.4 strategies' | |
if: always() | |
shell: bash | |
env: | |
STEP_NAME: SIRVs.Set4.R10.opts3 | |
run: | | |
export PATH=$PATH:${{env.BIN_PATH}} | |
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}} | |