- tax_dat
Dataframe; taxonomic database in DwC format.
- check_taxon_id
Logical vector of length 1; should all instances of taxonID be required to be non-missing and unique? Default TRUE.
- check_tax_status
Logical vector of length 1; should all taxonomic names be required to have a valid value for taxonomic status (by default, "accepted", "synonym", or "variant")? Default TRUE.
- check_mapping_accepted
Logical vector of length 1; should all values of acceptedNameUsageID be required to map to the taxonID of an existing name? Default TRUE.
- check_mapping_parent
Logical vector of length 1; should all values of parentNameUsageID be required to map to the taxonID of an existing name? Default TRUE.
- check_mapping_parent_accepted
Logical vector of length 1; should all values of parentNameUsageID be required to map to the taxonID of an accepted name? Default FALSE.
- check_mapping_original
Logical vector of length 1; should all values of originalNameUsageID be required to map to the taxonID of an existing name? Default TRUE.
- check_mapping_accepted_status
Logical vector of length 1; should rules about mapping of variants and synonyms be enforced? Default FALSE.
(see Details).
- check_sci_name
Logical vector of length 1; should all instances of scientificName be required to be non-missing and unique? Default TRUE.
- check_status_diff
Logical vector of length 1; should each scientific name be allowed to have only one taxonomic status? Default FALSE.
- check_col_names
Logical vector of length 1; should all column names be required to be a valid DwC term? Default TRUE.
- valid_tax_status
Character vector of length 1; valid values for taxonomicStatus. Each value must be separated by a comma. Default accepted, synonym, variant, NA. "NA" indicates that missing (NA) values are valid. Case-sensitive.
- extra_cols
Character vector; names of columns that should be allowed beyond
those defined by the DwC taxon standard. Default NULL. Providing column name(s) that are valid DwC taxon column(s) has no effect.
- on_success
Character vector of length 1, either "logical" or "data". Describes what to do if the check passes. Default "data".
- on_fail
Character vector of length 1, either "error" or "summary". Describes what to do if the check fails. Default "error".
- skip_missing_cols
Logical vector of length 1; should checks be silently skipped if any of the
columns they inspect are missing? Default FALSE.
- quiet
Logical vector of length 1; should warnings be silenced? Default FALSE.