select_markers {mistyR} | R Documentation |
Select a subset of markers in a view
select_markers(current.views, view = "intraview", ...)
current.views |
the current view composition. |
view |
the name of the view to select markers for. |
... |
one or more select expressions
|
A mistyR view composition with selected markers in view
.
<tidy-select
>.
Other view manipulation functions:
filter_views()
,
rename_view()
# Create a view composition with an intraview and select library(dplyr) # get the expression data data("synthetic") expr <- synthetic[[1]] %>% select(-c(row, col, type)) # compose misty.views <- create_initial_view(expr) # select markers from the intraview not starting with lig and preview misty.views %>% select_markers("intraview", !starts_with("lig")) %>% str()