# Creation of a file called "example.ped"
# with 4 SNPs for 3 individuals.
data("example_ped")
write.table(example_ped,"example.ped",
col.names = FALSE, row.names = FALSE, quote = FALSE)
# Conversion from the ped format ("example.ped")
# to the lfmm format ("example.lfmm").
# By default, the name of the output file is the same name
# as the input file with a .lfmm extension.
# Create file: "example.lfmm".
output = ped2lfmm("example.ped")
# Conversion from the ped format ("example.ped")
# to the geno format with the output file called "plop.lfmm".
# Create file: "plop.lfmm".
output = ped2lfmm("example.ped", "plop.lfmm")
# As force = false and the file "example.lfmm" already exists,
# nothing happens.
output = ped2lfmm("example.ped", force = FALSE)
Run the code above in your browser using DataLab