toFilter | R Documentation |
Filters only rows with specified values in columns Rank and Confidence Level , specified as cl
toFilter(.data, rank = 1, cl = c("Low", "Middle", "High"))
.data |
dataframe |
rank |
integer |
cl |
charater any combination of one or more of 'Low', 'Middle', or 'High' |
a dataframe
##Use example peptide data set, read in and clean data inputFile <- system.file("extData", "data.txt", package = "ComPrAn") peptides <- peptideImport(inputFile) peptides <- cleanData(peptides, fCol = "Search ID") ##optional filtering based on rank and confidence level peptides <- toFilter(peptides, rank = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.