check_taxonGroups {Claddis} | R Documentation |
Internal function to check taxonGroups object for errors.
check_taxonGroups(taxon_groups)
taxon_groups |
An object of class |
Internal Claddis function. Nothing to see here. Carry on.
An error message or empty vector if no errors found.
Graeme T. Lloyd graemetlloyd@gmail.com
# Create a taxon groups object:
taxon_groups <- list(
Group_A = c("Species_1", "Species_2", "Species_3"),
Group_B = c("Species_3", "Species_4"),
Group_C = c("Species_5", "Species_6", "Species_7", "Species_8")
)
# Check that this is a valid taxonGroups object (will return error message as class
# is not set):
check_taxonGroups(taxon_groups = taxon_groups)