Description Usage Arguments Details Value Examples
View source: R/filter_masic_data.R
Filtering MASIC data by InterferenceScore and S/N of individual channels. Note, function in its current form also drops 40 columns out of the data.frame. E.g. for TMT10 the table contains 62 columns. After filtering, the left columns are 10 TMT channels, dataset and scan.
1 | filter_masic_data(x, interference_score_threshold = 0.9, s2n_threshold = 4)
|
x |
(data.frame) collated MASIC output |
s2n_threshold |
(numeric) S/N calculated by vendor and extracted MASIC from raw files. Default is 4. |
interference_scrore_threshold |
(numeric) fetch extra metrics that MASIC extracts from dataset or not. Higher the number, the cleaner parent ion at MS1 level. Default is 0.9. |
Default values interference_score_threshold = 0.9 and s2n_threshold = 4 are fairly stringent. The least recomended setting is interference_score_threshold = 0.5 and s2n_threshold = 0. If not filtering intended do filter_masic_data(x,0,0) call.
(data.frame) filtered MASIC output
1 2 3 4 5 6 7 | path_to_MASIC_results <- system.file("extdata/global/masic_output", package = "PlexedPiperTestData")
x <- read_masic_data(path_to_MASIC_results, extra_metrics=TRUE)
dim(x)
x1 <- filter_masic_data(x,0,0)
dim(x1)
x2 <- filter_masic_data(x)
dim(x2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.