qa_eml.Rd
This function checks the quality of EML metadata, such as the presence and completeness of EML fields and correct formatting.
qa_eml(input, all_results = FALSE)
input | (eml) An EML object. |
---|---|
all_results | (logical) Return all results. If |
(list) A list of results.
Not all FAILURE messages necessarily indicate something wrong with the metadata. For example, missing project information will return a FAILURE status, but project information is not necessary if there is no affiliated project.
# NOT RUN { # Results with FAILURE or ERROR status qa_eml(eml) # All results qa_eml(eml, all_results = TRUE) # }