forked from AlexsLemonade/OpenPBTA-analysis
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create separate yaml scripts for mem-intensive jobs
- Loading branch information
Showing
3 changed files
with
78 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Analysis - CRANIO | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run_analysis: | ||
name: Run Analysis - Cranio | ||
runs-on: large-runner-32 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
# Molecular subtyping modules | ||
- name: Molecular Subtyping - CRANIO | ||
entrypoint: molecular-subtyping-CRANIO/run-molecular-subtyping-cranio.sh | ||
openpbta_subset: 0 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Download Data | ||
uses: docker://pgc-images.sbgenomics.com/d3b-bixu/open-pedcan:latest | ||
with: | ||
entrypoint: ./download-data.sh | ||
env: | ||
OPENPEDCAN_URL: https://s3.amazonaws.com/d3b-openaccess-us-east-1-prd-pbta/open-targets | ||
OPENPEDCAN_RELEASE: testing | ||
|
||
- name: Run Analysis | ||
uses: docker://pgc-images.sbgenomics.com/d3b-bixu/open-pedcan:latest | ||
with: | ||
entrypoint: analyses/${{ matrix.entrypoint }} | ||
env: | ||
OPENPBTA_SUBSET: ${{ matrix.openpbta_subset }} | ||
OPENPBTA_TESTING: ${{ matrix.openpbta_testing }} | ||
RUN_FOR_SUBTYPING: ${{ matrix.run_for_subtyping }} | ||
OPENPEDCAN_POLYA_STRAND: ${{ matrix.openpedcan_polya_strand }} |
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,37 @@ | ||
name: Analysis - TP53 | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run_analysis: | ||
name: Run Analysis - TP53 | ||
runs-on: large-runner-32 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: TP53/NF1 scores | ||
entrypoint: tp53_nf1_score/run_classifier.sh | ||
openpedcan_polya_strand: 0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Download Data | ||
uses: docker://pgc-images.sbgenomics.com/d3b-bixu/open-pedcan:latest | ||
with: | ||
entrypoint: ./download-data.sh | ||
env: | ||
OPENPEDCAN_URL: https://s3.amazonaws.com/d3b-openaccess-us-east-1-prd-pbta/open-targets | ||
OPENPEDCAN_RELEASE: testing | ||
|
||
- name: Run Analysis | ||
uses: docker://pgc-images.sbgenomics.com/d3b-bixu/open-pedcan:latest | ||
with: | ||
entrypoint: analyses/${{ matrix.entrypoint }} | ||
env: | ||
OPENPBTA_SUBSET: ${{ matrix.openpbta_subset }} | ||
OPENPBTA_TESTING: ${{ matrix.openpbta_testing }} | ||
RUN_FOR_SUBTYPING: ${{ matrix.run_for_subtyping }} | ||
OPENPEDCAN_POLYA_STRAND: ${{ matrix.openpedcan_polya_strand }} |