Parse an export from a pathology information system (e.g. Nexus) in either CSV or XML format.
Value
A molpath_parsed object whose data slot is a
tibble with columns patient_id, name,
dob, sex, sample_id, sample_type,
diagnosis, and report_date.
Examples
# \donttest{
nexus_file <- system.file("extdata", "nexus_pathology.csv",
package = "molpathR")
if (nzchar(nexus_file)) {
result <- mp_read_nexus_pathology(nexus_file)
print(result)
}
# }