Write a mixture data frame to gsi_sim format baseline and repunits file
Write a mixture data frame to gsi_sim format baseline and repunits file
Note, this is only intended to work with integer-valued alleles, at the moment. It was just written for testing and verifying that things are working correctly.
gen_start_col: column in which the genetic data start
mixprefix: path to write the mixture file to. The mixture collection name + .txt will be appended to this. This path can include directories if they exist. An example would be "./my_gsi_data/mixture". This is a required argument.
Examples
# this writes to file prefix "mixfile" in a temporary directorydd <- tempdir()prefix <- file.path(dd,"mixfile")# print thatprefix
# note that in practice you will probably want to specify# your own directory...# run the functionwrite_gsi_sim_mixture(chinook_mix,5, prefix)# see where those files live:dir(dd, pattern ="mixfile*", full.names =TRUE)