View source: R/tidyMS_R6_TransitionCorrelations.R
summarise_QValues | R Documentation |
adds two columns srm_QValueMin - nth smallest qvalue for each precursor srm_QValueNR - nr of precursors passing the threshold
summarise_QValues(pdata, config)
pdata |
data.frame |
config |
configuration |
data |
data |
data.frame
dd <- prolfqua_data('data_spectronautDIA250_A')
config <- dd$config_f()
analysis <- dd$analysis(dd$data,config)
res <- summarise_QValues(analysis, config)
stopifnot(c("srm_QValueMin", "srm_QValueNR") %in% colnames(res))
hist(unique(res$srm_QValueMin))
hist(unique(res$srm_QValueNR))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.