get_depmap_essentiality | R Documentation |
Get essential/selective gene information from DepMap summary table.
get_depmap_essentiality(gene, depmap.summary)
gene |
Character scalar for gene symbol. |
depmap.summary |
data.frame containing DepMap gene summary information. |
Named list containing RNAi and CRISPR named lists containing dataset information for the provided gene,
if available. If the gene is not found in the summary data.frame, the avail
element for the RNAi and CRISPR lists
will be set to FALSE
.
Jared Andrews
library(CRISPRball)
build_depmap_db(retrieve = "gene.summary")
pool <- pool::dbPool(RSQLite::SQLite(), dbname = "depmap_db.sqlite")
depmap.gene <- pool::dbGetQuery(pool, "SELECT * FROM 'gene.summary'")
essentials <- get_depmap_essentiality(gene = "CDK2", depmap.summary = depmap.gene)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.