R/taxonomicClassification.R

Defines functions taxonomicClassification

Documented in taxonomicClassification

#' taxonomicClassification 
#'
#' taxonomicClassification 
#'
#'
#' @inheritParams common_attributes 
#' @param taxonRankName The name of the taxonomic rank for which the Taxon rank value is provided. See [taxonRankName()]
#' @param taxonRankValue The name representing the taxonomic rank of the taxon being described. See [taxonRankValue()]
#' @param commonName Specification of applicable common names. See [commonName()]
#' @param taxonomicClassification Information about the range of taxa addressed in the data set or collection. See [taxonomicClassification()]
#'
#' @return a taxonomicClassification list object
#'
#' @export

 taxonomicClassification <- function(taxonRankName = NULL,
 taxonRankValue = NULL,
 commonName = NULL,
 taxonomicClassification = NULL){ 
Filter(Negate(is.null),
 list(
taxonRankName = taxonRankName,
taxonRankValue = taxonRankValue,
commonName = commonName,
taxonomicClassification = taxonomicClassification))}
cboettig/build.eml documentation built on May 8, 2019, 8:57 p.m.