list_mutations: Search mutations detected in DepMap cancer cell lines

View source: R/list_mutations.R

list_mutationsR Documentation

Search mutations detected in DepMap cancer cell lines

Description

Quick method to look up mutations of interest prior to using select_cell_lines()

Usage

list_mutations(
  gene = NULL,
  chr = NULL,
  start_bp = NULL,
  end_bp = NULL,
  is_hotspot = NULL,
  is_damaging = NULL,
  variant_classification = NULL,
  data_dir = NULL
)

Arguments

gene

string, Hugo Symbol, Default: NULL

chr

string, Default: NULL

start_bp

integer, Default: NULL

end_bp

integer, Default: NULL

is_hotspot

logical, TCGA or COSMIC hotspot, Default: NULL

is_damaging

logical, Default: NULL

variant_classification

string, Select from the following: 3'UTR, 5'Flank, 5'UTR, De_novo_Start_OutOfFrame, Frame_Shift_Del, Frame_Shift_Ins, IGR, In_Frame_Del, In_Frame_Ins, Intron, Missense_Mutation, Nonsense_Mutation, Nonstop_Mutation, Silent, Splice_Site, Start_Codon_Del, Start_Codon_Ins, Start_Codon_SNP, Stop_Codon_Del, Stop_Codon_Ins, Default: NULL

data_dir

string Path to GINIR_data

Value

A data frame containing mutations matching criteria of input arguments

Examples

gretta_data_dir <- './GRETTA_example/'
gretta_output_dir <- './GRETTA_example_output/'

if(!dir.exists(gretta_data_dir)){
  download_example_data(".")
}

list_mutations(
gene = 'ARID1A', 
is_damaging = TRUE,
data_dir = gretta_data_dir)


ytakemon/GINIR documentation built on Feb. 27, 2024, 1:33 p.m.