View source: R/get_Pfam_domain.R
get_Pfam_domain | R Documentation |
Function to annotate fusion calls with domain terms
get_Pfam_domain(standardFusioncalls, bioMartDataPfam, keepPartialAnno = FALSE)
standardFusioncalls |
A dataframe from star fusion or arriba standardized to run through the filtering steps |
bioMartDataPfam |
A dataframe with gene and domain coordinate information with chromosome_name,gene_start,gene_end,domain_chr,domain_start,domain_end,hgnc_symbol |
keepPartialAnno |
TRUE or FALSE to keep partial status; defaults to FALSE |
Standardized fusion calls as list Gene1A and Gene1B annotated with domain terms and chromosome location; retained and not retained,optionally partially retained
out_annofuse <- system.file("extdata", "PutativeDriverAnnoFuse.tsv", package = "annoFuseData")
sfc <- read.delim(out_annofuse)
bioMartDataPfam <- readRDS(system.file("extdata", "pfamDataBioMart.RDS", package = "annoFuseData"))
domain_list_df <- get_Pfam_domain(standardFusioncalls = sfc, bioMartDataPfam = bioMartDataPfam)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.