View source: R/norm_maxquant.R
norm_maxquant | R Documentation |
Normalizaiton, imputation and filtering for phosphoproteomics data from MaxQuant.
norm_maxquant( qc_result, qc_result_for_motifanalysis, norm_method = "global", impute_method = "minimum/10", percent_of_kept_sites = 3/4 )
qc_result |
A data frame containing quality control result. |
qc_result_for_motifanalysis |
A data frame containing information required for motif analysis. |
norm_method |
Normalizaiton method. The default is 'global' and the options are 'global' and 'median'. |
impute_method |
Imputation method. The default is 'minimum/10' and the options are '0', 'minimum' and 'minimum/10'. |
percent_of_kept_sites |
A numeric value representing a cutoff used for filter psites. The default is 3/4. |
A data frame containing information required for all analysis.
## Not run: rawdata <- read.csv("Phospho (STY)Sites.txt",header=T,sep='\t') ## Quality control for phosphoproteomics data qc_results <- qc_maxquant(rawdata, "./experiment_code_file.txt", min_score = 40, min_loc_prob = 0.75, max_na_num = 2) qc_result <- qc_results[[1]] qc_result_for_motifanalysis <- qc_results[[2]] summary_phos_norm <- norm_maxquant(qc_result, qc_result_for_motifanalysis, norm_method = "global", impute_method = "minimum/10", top = 0.9) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.