View source: R/get_summary_from_ksea.R
get_summary_from_ksea | R Documentation |
Get a data frame only containing inforamtion of kinase inferred by KSEA
get_summary_from_ksea( ptypes_data, species = "human", log2_label = TRUE, ratio_cutoff = 3 )
ptypes_data |
A data frame of phosphorylation data after normalization. |
species |
A string representing the species of imported data, the options are human, mouse and rat. |
log2_label |
A boolean value representing whether data is logarithmetics, the default is FALSE. |
ratio_cutoff |
A cutoff that depicts quantification changes at phosphorylation level relative to profiling level, the default is 3. |
A data frame that consists of kinase, psite, substrate, counting byond ratio_cutoff and corresponding original value.
Dongdong Zhan and Mengsha Tong
## The process needs to load data from PhosMap datasets stored into FTP server and perform large computation. ## It may take a few minutes. if(FALSE){ ftp_url <- "ftp://111.198.139.72:4000/pub/PhosMap_datasets/function_demo_data/get_summary_from_ksea.RData" load_data <- load_data_with_ftp(ftp_url, 'RData') writeBin(load_data, "get_summary_from_ksea.RData") load("get_summary_from_ksea.RData") summary_df_list_from_ksea_cluster <- get_summary_from_ksea( cluster_df, species = 'human', log2_label = FALSE, ratio_cutoff = 3 ) head(summary_df_list_from_ksea_cluster) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.