Learn R Programming

Claddis (version 0.7.0)

check_taxonGroups: Check taxonGroups object for errors

Description

Internal function to check taxonGroups object for errors.

Usage

check_taxonGroups(taxon_groups)

Value

An error message or empty vector if no errors found.

Arguments

taxon_groups

An object of class taxonGroups.

Author

Graeme T. Lloyd graemetlloyd@gmail.com

Details

Internal Claddis function. Nothing to see here. Carry on.

Examples

Run this code

# 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)

Run the code above in your browser using DataLab