Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

molecular subtyping EPN update #785

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,9 @@ jobs:
name: Molecular subtyping Chordoma
command: OPENPBTA_SUBSET=0 ./scripts/run_in_ci.sh bash analyses/molecular-subtyping-chordoma/run-molecular-subtyping-chordoma.sh

# This is failing - a fix is tracked in https://github.com/AlexsLemonade/OpenPBTA-analysis/issues/755#issuecomment-692681410
# - run:
# name: Molecular subtyping - Ependymoma
# command: OPENPBTA_SUBSET=0 ./scripts/run_in_ci.sh bash analyses/molecular-subtyping-EPN/run-molecular-subtyping-EPN.sh
- run:
name: Molecular subtyping - Ependymoma
command: OPENPBTA_SUBSET=0 ./scripts/run_in_ci.sh bash analyses/molecular-subtyping-EPN/run-molecular-subtyping-EPN.sh

- run:
name: Molecular Subtyping - LGAT
Expand Down
4 changes: 3 additions & 1 deletion analyses/molecular-subtyping-EPN/00-subset-for-EPN.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ expression <- readr::read_rds(opts$expression)

epn_samples <- histologies %>%
filter(experimental_strategy == "RNA-Seq",
integrated_diagnosis == "Ependymoma") %>%
# All Ependymoma samples are captured in pathology_diagnosis
# pathology_free_text_diagnosis adds no additional samples
pathology_diagnosis == "Ependymoma") %>%
pull(Kids_First_Biospecimen_ID)

# Subsetting expression columns with column names/BSIDs that are in the list of ependymoma samples
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def group_disease(primary_site):


# Filtering for ependymoma samples
EP = pbta_histologies[pbta_histologies["integrated_diagnosis"]=="Ependymoma"]
EP = pbta_histologies[pbta_histologies["pathology_diagnosis"]=="Ependymoma"]
EP_rnaseq_samples = EP[EP["experimental_strategy"] == "RNA-Seq"][["Kids_First_Biospecimen_ID", "primary_site",
"Kids_First_Participant_ID", "sample_id", "experimental_strategy"]]
EP_rnaseq_samples["disease_group"] = [group_disease(primary) for primary in EP_rnaseq_samples["primary_site"]]
Expand Down
Loading