powered by
Data quality control for genotype data in MVP format and PLINK format.
simer.Data.Geno( fileMVP = NULL, fileBed = NULL, filePlinkPed = NULL, filePed = NULL, filePhe = NULL, out = "simer.qc", genoType = "char", filter = NULL, filterGeno = NULL, filterHWE = NULL, filterMind = NULL, filterMAF = NULL, ncpus = 0, verbose = TRUE )
the function returns files
the .bed file of PLINK binary format.
the .bim file of PLINK binary format.
the .fam file of PLINK binary format.
genotype in MVP format.
genotype in PLINK binary format.
genotype in PLINK numeric format.
the filename of pedigree data.
the filename of phenotype data, it can be a vector.
the prefix of output files.
type parameter in bigmemory, genotype data. The default is char, it is highly recommended *NOT* to modify this parameter.
filter of genotyped individual.
threshold of sample miss rate.
threshold of Hardy-Weinberg Test.
threshold of variant miss rate.
threshold of Minor Allele Frequency.
the number of threads used, if NULL, (logical core number - 1) is automatically used.
whether to print detail.
Dong Yin
Build date: May 26, 2021 Last update: Apr 28, 2022
# Get the prefix of genotype data fileBed <- system.file("extdata", "02plinkb", "demo", package = "simer") if (FALSE) { # It needs "plink" software simer.Data.Geno(fileBed=fileBed) }
Run the code above in your browser using DataLab