View source: R/option_parsers.R
get_taxmap_cols | R Documentation |
Convert logical, names, or indexes to column names and check that they exist.
get_taxmap_cols(obj, data, cols = NULL)
obj |
A taxmap object |
data |
The name of a table in |
cols |
The columns in the data set to use. Takes one of the following inputs:
|
Other option parsers:
get_taxmap_data()
,
get_taxmap_other_cols()
,
get_taxmap_table()
,
verify_taxmap()
## Not run:
# Parse data
x = parse_tax_data(hmp_otus, class_cols = "lineage", class_sep = ";",
class_key = c(tax_rank = "taxon_rank", tax_name = "taxon_name"),
class_regex = "^(.+)__(.+)$")
# Get all col names
metacoder:::parse_taxmap_cols(x, "tax_data")
# Get col names by index
metacoder:::parse_taxmap_cols(x, "tax_data", 2:4)
# Get col names by name (i.e. verify)
metacoder:::parse_taxmap_cols(x, "tax_data", c("taxon_id", "lineage"))
metacoder:::parse_taxmap_cols(x, "tax_data", c("taxon_id", "not_valid"))
# Get colnames by TRUE/FALSE vector
metacoder:::parse_taxmap_cols(x, "tax_data", startsWith(colnames(x$data$tax_data), "7"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.