-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize depmap driver analysis (#37)
# What? - add `process.py` which is used for depmap driver analysis - add `proxbias/notebooks/DepMap_PB_Driver_Analysis.ipynb` and `proxbias/notebooks/DepMap_PB_Sample.ipynb` to include analysis performed and sample of how to use driver code - add optimized versions of monte carlo simulation code that utilize numba - add tsv for cancer gene list - reorganize repo to make things more clear - make downloading depmap rnai data optional to speed up usage - clean up .gitignore for public release - update dependencies # Why? - all code is necessary for public release or related to reviewer comments.
- Loading branch information
1 parent
e6f40d8
commit ce2cddd
Showing
26 changed files
with
2,856 additions
and
174 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
MAJOR="0" | ||
MINOR="10" | ||
MINOR="11" |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
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,38 @@ | ||
DEPMAP_API_URL = "https://depmap.org/portal/api/download/files" | ||
DEPMAP_RELEASE_DEFAULT = "DepMap Public 22Q4" | ||
|
||
CNV_FILENAME = "OmicsCNGene.csv" | ||
CRISPR_DEPENDENCY_EFFECT_FILENAME = "CRISPRGeneEffect.csv" | ||
MUTATION_FILENAME = "OmicsSomaticMutations.csv" | ||
|
||
DEMETER2_RELEASE_DEFAULT = "DEMETER2 Data v6" | ||
RNAI_DEPENDENCY_EFFECT_FILENAME = "D2_combined_gene_dep_scores.csv" | ||
|
||
|
||
CN_LOSS_CUTOFF = 1.5 | ||
CN_GAIN_CUTOFF = 2.5 | ||
|
||
|
||
LOF_MUTATION_TYPES = [ | ||
"MISSENSE", | ||
"NONSENSE", | ||
"IN_FRAME_DEL", | ||
"SPLICE_SITE", | ||
"FRAME_SHIFT_INS", | ||
"FRAME_SHIFT_DEL", | ||
"IN_FRAME_INS", | ||
] | ||
|
||
COMPLETE_LOF_MUTATION_TYPES = [ | ||
"NONSENSE", | ||
"FRAME_SHIFT_INS", | ||
"FRAME_SHIFT_DEL", | ||
] | ||
|
||
# gain of function mutation types | ||
AMP_MUTATION_TYPES = [ | ||
"MISSENSE", | ||
"IN_FRAME_DEL", | ||
"SPLICE_SITE", | ||
"IN_FRAME_INS", | ||
] |
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
Oops, something went wrong.