| bold_filter {bold} | R Documentation |
Get BOLD specimen + sequence data.
bold_filter(x, by, how = "max")
x |
(data.frame) a data.frame, as returned from
|
by |
(character) the column by which to group. For example, if you want the longest sequence for each unique species name, then pass species_name. If the column doesn't exist, error with message saying so. Required. |
how |
(character) one of "max" or "min", which get used as
|
a tibble/data.frame
## Not run: res <- bold_seqspec(taxon='Osmia') maxx <- bold_filter(res, by = "species_name") minn <- bold_filter(res, by = "species_name", how = "min") vapply(maxx$nucleotides, nchar, 1, USE.NAMES = FALSE) vapply(minn$nucleotides, nchar, 1, USE.NAMES = FALSE) ## End(Not run)