View source: R/tidyMS_MQ_workflow.R
filter_difference | R Documentation |
get the difference of two dataset where one is a subset of the other.
filter_difference(x, y, config)
x |
data.frame |
y |
data.frame |
config |
AnlysisConfiguration |
data.frame
istar <- prolfqua::sim_lfq_data_peptide_config()
istar$config <- istar$config
istar_data <- istar$data
filterPep <- prolfqua:::filter_proteins_by_peptide_count( istar_data , istar$config )
tmp <- filter_difference(istar_data, filterPep$data, istar$config)
stopifnot(nrow(istar_data ) - nrow(filterPep$data) == nrow(tmp))
tmp <- filter_difference(filterPep$data, istar_data , istar$config)
stopifnot(nrow(istar_data ) - nrow(filterPep$data) == nrow(tmp))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.