map_list_to_df {qtl2convert} | R Documentation |
Convert a marker map organized as a list to a data frame
map_list_to_df(
map_list,
chr_column = "chr",
pos_column = "pos",
marker_column = "marker"
)
map_list |
List of vectors containing marker positions |
chr_column |
Name of the chromosome column in the output |
pos_column |
Name of the position column in the output |
marker_column |
Name of the marker column in the output. If NULL, just put them as row names. |
A data frame with the marker positions.
library(qtl2)
iron <- read_cross2(system.file("extdata", "iron.zip", package="qtl2"))
iron_map <- map_list_to_df(iron$gmap)