
Accept the | or / separated markers, any variant sites that are not 0 or 1 will be considered NA.
MVP.Data.VCF2MVP(
vcf_file,
out = "mvp",
maxLine = 10000,
type.geno = "char",
threads = 1,
verbose = TRUE
)
number of individuals and markers. Output files: genotype.desc, genotype.bin: genotype file in bigmemory format phenotype.phe: ordered phenotype file, same taxa order with genotype file map.map: SNP information
Genotype in VCF format
the name of output file
the number of markers handled at a time, smaller value would reduce the memory cost
the type of genotype elements
number of thread for transforming
whether to print the reminder
# \donttest{
vcfPath <- system.file("extdata", "01_vcf", "mvp.vcf", package = "rMVP")
MVP.Data.VCF2MVP(vcfPath, tempfile("outfile"), threads=1)
# }
Run the code above in your browser using DataLab