Description Usage Arguments Value Author(s) See Also Examples
This function writes allelic data into a text file.
1 | write.loci(x, file = "", loci.sep = " ", allele.sep = "/", ...)
|
x |
an object of class |
file |
a file name specified by either a variable of mode character, or a quoted string. By default, the data are printed on the console. |
loci.sep |
the character(s) use to separate the loci (columns) in the file (a space by default). |
allele.sep |
the character(s) used to separate the alleles for each locus in the file (a slash by default). |
... |
further arguments passed to |
NULL
Emmanuel Paradis
read.loci
, write.table
for all its options
1 2 3 4 5 6 | require(adegenet)
data(nancycats)
x <- as.loci(nancycats)[1:10, 1:3] # take a small subset
write.loci(x)
## use of '...':
write.loci(x, loci.sep = "\t", quote = FALSE, col.names = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.