replaceWithUnknown {microbiomeExplorer} | R Documentation |
Helper function to replace any un-annotated features with the term unknown
replaceWithUnknown(featcol)
featcol |
vector of entried to be replaced where needed (fData column) |
modified featcol
Janina Reeder
data("mouseData", package = "metagenomeSeq") featcol <- fData(mouseData)[["genus"]] featcol[featcol == "NA"] <- NA replaceWithUnknown(featcol)