View source: R/map_list_to_df.R
map_list_to_df | 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.
map_df_to_list()
library(qtl2)
iron <- read_cross2(system.file("extdata", "iron.zip", package="qtl2"))
iron_map <- map_list_to_df(iron$gmap)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.