Skip to content

Commit

Permalink
add mouse R9 tests with correct truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed May 2, 2024
1 parent 9106d46 commit 16bfa74
Show file tree
Hide file tree
Showing 8 changed files with 105 additions and 6 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/Group_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Read grouping tests
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * 0,4'
- cron: '0 2 * * 0,4'

env:
RUN_NAME: Resume_tests
Expand Down Expand Up @@ -70,3 +70,12 @@ jobs:
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
- name: 'Grouping by CSV file'
if: always()
shell: bash
env:
STEP_NAME: GROUP5.CSV.SIRVs.R10
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
2 changes: 1 addition & 1 deletion .github/workflows/Mouse.ONT_simulated.R10.no_gtf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Mouse ONT R10 simulated no annotation
on:
workflow_dispatch:
schedule:
- cron: '0 23 * * 5'
- cron: '0 3 * * 0'

env:
RUN_NAME: Mouse.ONT_simulated.R10.no_gtf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Mouse.ONT_simulated.R10.reduced_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Mouse ONT R10 simulated reduced annotation
on:
workflow_dispatch:
schedule:
- cron: '0 4 * * 1'
- cron: '0 3 * * 3'

env:
RUN_NAME: Mouse.ONT_simulated.R10.reduced_db
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Mouse.ONT_simulated.R9.no_gtf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Mouse ONT R9 simulated no annotation
on:
workflow_dispatch:
schedule:
- cron: '0 23 * * 1'
- cron: '0 3 * * 4'

env:
RUN_NAME: Mouse.ONT_simulated.R9.no_gtf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Mouse.ONT_simulated.R9.reduced_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Mouse ONT R9 simulated reduced annotation
on:
workflow_dispatch:
schedule:
- cron: '0 4 * * 3'
- cron: '0 3 * * 1'

env:
RUN_NAME: Mouse.ONT_simulated.R9.reduced_db
Expand Down
45 changes: 45 additions & 0 deletions .github/workflows/Mouse.ONT_simulated.R9.trunc.no_gtf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Mouse ONT R9 correct truncation simulated no annotation

on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 2'

env:
RUN_NAME: Mouse.ONT_simulated.R9.trunc.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.trunc.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.trunc.reduced_db.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Mouse ONT R9 correct truncation simulated reduced annotation

on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 6'

env:
RUN_NAME: Mouse.ONT_simulated.R9.trunc.reduced_db
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.trunc.reduced_db
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Mouse ONT R9 simulated uniform coverage polyA
on:
workflow_dispatch:
schedule:
- cron: '0 10 * * 4'
- cron: '0 6 * * 5'

env:
RUN_NAME: Mouse.ONT_simulated.R9.uniform_cov.polyA
Expand Down

0 comments on commit 16bfa74

Please sign in to comment.