fg_gsub_markers {flowGraph} | R Documentation |
Replace marker names in a flowGraph object.
fg_gsub_markers(fg, markers_new, markers_old = NULL)
fg |
flowGraph object. |
markers_new |
A string vector of new marker names;
if |
markers_old |
A string vector of old marker names user wants to replace;
these marker names corresponding to those
in |
flowGraph object with marker names replaced.
no_cores <- 1 data(fg_data_pos30) fg <- flowGraph(fg_data_pos30$count, class=fg_data_pos30$meta$class, prop=FALSE, specenr=FALSE, no_cores=no_cores) fg <- fg_gsub_markers(fg, c("Anew", "Bnew", "Cnew", "Dnew")) fg_get_feature_desc(fg)