-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add mouse R9 tests with correct truncation
- Loading branch information
1 parent
9106d46
commit 16bfa74
Showing
8 changed files
with
105 additions
and
6 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
45
.github/workflows/Mouse.ONT_simulated.R9.trunc.reduced_db.yml
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
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}} | ||
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