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

Ependymoma subtyping #490

Merged
merged 34 commits into from
Feb 18, 2020
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
34cd0a8
Initial files added to ependymoma subtyping folder
Jan 29, 2020
25228f2
Added bash script and changed the paths for all files to run from Ope…
Jan 30, 2020
9313bda
Added bash script and changed the paths for all files to run from Ope…
Jan 30, 2020
24d8a6f
Add Ependymoma subtyping to CI
jashapiro Feb 3, 2020
fb09448
Merge branch 'master' into ependymoma_subtyping
jashapiro Feb 3, 2020
8f80aec
Add to analyses/README.md
jashapiro Feb 3, 2020
5c5119c
Test removing rpy2 and using pyreadr exclusively
jashapiro Feb 3, 2020
5d4c32c
Change to use pyreadr properly
jashapiro Feb 3, 2020
e55ea34
Revert pyreadr changes
jashapiro Feb 3, 2020
1491b2d
Add subset flag to CI
jashapiro Feb 4, 2020
4d83601
Use R to generate subset file & shell to specify filenames
jashapiro Feb 4, 2020
5f119b1
Add results file
jashapiro Feb 4, 2020
408c02c
Move Ependymoma subtyping up in CI
jashapiro Feb 4, 2020
d02c4d0
Responding to pull request reviews
Feb 6, 2020
ba0e00a
Adding jupyter notebook
Feb 6, 2020
b5d1a77
Merge branch 'ependymoma_subtyping' of https://github.com/tkoganti/Op…
Feb 6, 2020
91d0b76
Typo fixes
jashapiro Feb 7, 2020
e842b27
Merge branch 'master' into ependymoma_subtyping
jashapiro Feb 7, 2020
e5f3a1e
Update gistic filename
jashapiro Feb 7, 2020
6713c70
Changed implemented as suggested on feb 7 2020
Feb 10, 2020
e742aaf
Small review changes
jashapiro Feb 10, 2020
aca978b
Update 00-subset-for-EPN.R with changes from @cansavvy code review
jashapiro Feb 10, 2020
d9c44d6
Zscore column names changed
Feb 10, 2020
f68966a
Changed how merge is done between RNA and DNA tables
Feb 10, 2020
415b5e7
Removed comment lines
Feb 10, 2020
3100358
remove duplicate commented code.
jashapiro Feb 10, 2020
33bacc2
Merge branch 'master' into ependymoma_subtyping
jashapiro Feb 10, 2020
141183c
Added some columns as per comments from 02-12-2020
Feb 13, 2020
6bfb636
Merge remote-tracking branch 'upstream/master' into ependymoma_subtyping
jashapiro Feb 13, 2020
e81a424
update invocation of 02_ependymoma_generate_all_data.py
jashapiro Feb 13, 2020
20cda5f
Handle missing data, and some refactoring
jashapiro Feb 14, 2020
57884c5
Delete unused full table zscore
jashapiro Feb 14, 2020
d65e360
Merge remote-tracking branch 'upstream/master' into ependymoma_subtyping
jashapiro Feb 18, 2020
5d05922
Rerun with updated data
jashapiro Feb 18, 2020
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
Prev Previous commit
Next Next commit
Added bash script and changed the paths for all files to run from Ope…
…nPBTA directory
  • Loading branch information
Teja Koganti authored and Teja Koganti committed Jan 30, 2020
commit 9313bda915636656b36762be70f953ad657d9d3b
26 changes: 26 additions & 0 deletions analyses/molecular-subtyping-EPN/run-molecular-subtyping-EPN.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash


# Run `00-subsetting-files-for-EPN.py` to subset gene expression data and
# Run `01-make_notebook_RNAandDNA.py` to match RNA and DNA Biospecimen ID's based on corresponding matching sample_ID from pbta-histologies.tsv file and
# Run `02_ependymoma_generate_all_data.py` to combine data from various output files for EPN samples that can be used to categorize samples under different EPN subtypes

set -e
set -o pipefail


# This option controls whether on not the step that generates the EPN only
# files gets run -- it will be turned off in CI
SUBSET=${OPENPBTA_SUBSET:-1}

if [ "$SUBSET" -gt "0" ]; then
echo "Subsettibg for CI"
python3 analyses/molecular-subtyping-EPN/00-subsetting-files-for-EPN.py
fi

echo "Generating analyses/molecular-subtyping-EPN/results/EPN_molecular_subtype.tsv that maps DNA and RNA ID's"
python3 analyses/molecular-subtyping-EPN/01-make_notebook_RNAandDNA.py

echo "Generating analyses/molecular-subtyping-EPN/results/EPN_all_data.tsv that has all the relevant data needed for subtyping"
python3 analyses/molecular-subtyping-EPN/02_ependymoma_generate_all_data.py