loadMap | R Documentation |
Load genetic map
loadMap(path)
path |
Path to a map file, which should contain columns |
A data frame.
tmp = tempfile(fileext = ".map")
map1 = as.data.frame(norSTR::map50)
write.table(map1, tmp, sep = "\t", quote = FALSE, row.names = FALSE)
map2 = loadMap(tmp)
stopifnot(all.equal(map1, map2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.