Description Usage Arguments Value Author(s) See Also Examples
View source: R/ancestrymap2geno.R
A function that converts from the ancestrymap
format to the
geno
format.
1 | ancestrymap2geno(input.file, output.file = NULL, force = TRUE)
|
input.file |
A character string containing a path to the input file,
a genotypic matrix in the |
output.file |
A character string containing a path to the output file,
a genotypic matrix in the |
force |
A boolean option. If FALSE, the input file is converted only if the output file does not exist. If TRUE, convert the file anyway. |
output.file |
A character string containing a path to the output file,
a genotypic matrix in the |
Eric Frichot
ancestrymap
geno
read.geno
ancestrymap2lfmm
geno2lfmm
ped2lfmm
ped2geno
vcf2geno
lfmm2geno
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Creation of of file called "example.ancestrymap"
# a file containing 4 SNPs for 3 individuals.
data("example_ancestrymap")
write.table(example_ancestrymap,"example.ancestrymap",
col.names = FALSE, row.names = FALSE, quote = FALSE)
# Conversion from the ancestrymap format ("example.ancestrymap")
# to the geno format ("example.geno").
# By default, the name of the output file is the same name
# as the input file with a .geno extension.
# Create file: "example.geno".
output = ancestrymap2geno("example.ancestrymap")
# Conversion from the ancestrymap format (example.ancestrymap)
# to the geno format with the output file called plop.geno.
# Create file: "plop.geno".
output = ancestrymap2geno("example.ancestrymap", "plop.geno")
# As force = false and the file "example.geno" already exists,
# nothing happens.
output = ancestrymap2geno("example.ancestrymap", force = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.