validate nexml using the online validator tool
Usage
nexml_validate(
file,
schema = system.file("xsd/nexml.xsd", package = "RNeXML"),
local = TRUE
)
Details
Requires an internet connection if local=FALSE. see http://www.nexml.org/nexml/phylows/validator for more information in debugging invalid files
Examples
if (FALSE) { # \dontrun{
data(bird.orders)
birds <- nexml_write(bird.orders, "birds_orders.xml")
nexml_validate("birds_orders.xml")
unlink("birds_orders.xml") # delete file to clean up
} # }