is_ambiguous {metacoder} | R Documentation |
Find ambiguous taxon names
Description
Find taxa with ambiguous names, such as "unknown" or "uncultured".
Usage
is_ambiguous(
taxon_names,
unknown = TRUE,
uncultured = TRUE,
name_regex = ".",
ignore_case = TRUE
)
Arguments
taxon_names |
A |
unknown |
If |
uncultured |
If |
name_regex |
The regex code to match a valid character in a taxon name. For example, "[a-z]" would mean taxon names can only be lower case letters. |
ignore_case |
If |
Details
If you encounter a taxon name that represents an ambiguous taxon that is not filtered out by this function, let us know and we will add it.
Value
TRUE/FALSE vector corresponding to taxon_names
Examples
is_ambiguous(c("unknown", "uncultured", "homo sapiens", "kfdsjfdljsdf"))
[Package metacoder version 0.3.7 Index]