View source: R/HermesData-methods.R
h_has_req_annotations | R Documentation |
This helper function determines for each gene in the object whether all required annotation columns are filled.
h_has_req_annotations(object, annotation_required)
object |
( |
annotation_required |
( |
Named logical vector with one value for each gene in object
, which is TRUE
if all
required annotation columns are filled, and otherwise FALSE
.
filter()
where this is used internally.
object <- hermes_data
result <- h_has_req_annotations(object, "size")
all(result)
rowData(object)$size[1] <- NA # nolint
which(!h_has_req_annotations(object, "size"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.