# create a synthetic tibble for 10 loci
# (most common use case)
bim <- make_bim(n = 10)
# manually create a partial tibble with only chromosomes defined
library(tibble)
bim <- tibble(chr = 0:2)
# autocomplete the rest of the columns
bim <- make_bim(bim)
Run the code above in your browser using DataLab