Description Usage Arguments Value Author(s) See Also Examples
A function that converts from the vcf
format to the
geno
format.
1 |
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
vcf
geno
ancestrymap2lfmm
ancestrymap2geno
ped2lfmm
ped2geno
lfmm2geno
geno2lfmm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Creation of a file called "example.vcf"
# with 4 SNPs for 3 individuals.
data("example_vcf")
write.table(example_vcf,"example.vcf",col.names =
c("#CHROM", "POS", "ID", "REF", "ALT", "QUAL", "FILTER", "INFO",
"FORMAT", "SAMPLE0", "SAMPLE1", "SAMPLE2"),
row.names = FALSE, quote = FALSE)
# Conversion from the vcf format ("example.vcf")
# 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 files: "example.geno",
# "example.vcfsnp" - SNP informations,
# "example.removed" - removed lines.
output = vcf2geno("example.vcf")
# Conversion from the vcf format ("example.vcf")
# to the geno format with the output file called "plop.geno".
# Create files: "plop.geno",
# "plop.vcfsnp" - SNP informations,
# "plop.removed" - removed lines.
output = vcf2geno("example.vcf", "plop.geno")
# As force = false and the file "example.geno" already exists,
# nothing happens.
output = vcf2geno("example.vcf", force = FALSE)
|
- number of detected individuals: 3
- number of detected loci: 4
For SNP info, please check ./example.vcfsnp.
2 line(s) were removed because these are not SNPs.
Please, check ./example.removed file, for more informations.
- number of detected individuals: 3
- number of detected loci: 4
For SNP info, please check plop.vcfsnp.
2 line(s) were removed because these are not SNPs.
Please, check plop.removed file, for more informations.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.