The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
KDPS (Kinship Decouple and Phenotype Selection) is an R package designed to resolve cryptic relatedness in genetic studies using a phenotype-aware approach. It retains subjects with relevant traits while pruning related individuals based on kinship or identity-by-descent (IBD) scores.
fuzziness
parameterYou can install the development version of KDPS from GitHub with:
# install.packages("devtools")
::install_github("UCSD-Salem-Lab/kdps") devtools
You can view the tutorial of the KDPS function with:
vignette("kdps-intro", package = "kdps")
library(kdps)
= system.file("extdata", "simple_pheno.txt", package = "kdps")
phenotype_file = system.file("extdata", "simple_kinship.txt", package = "kdps")
kinship_file
= kdps(
kdps_results phenotype_file = phenotype_file,
kinship_file = kinship_file,
fuzziness = 0,
phenotype_name = "pheno2",
prioritize_high = FALSE,
prioritize_low = FALSE,
phenotype_rank = c("DISEASED1", "DISEASED2", "HEALTHY"),
fid_name = "FID",
iid_name = "IID",
fid1_name = "FID1",
iid1_name = "IID1",
fid2_name = "FID2",
iid2_name = "IID2",
kinship_name = "KINSHIP",
kinship_threshold = 0.0442,
phenotypic_naive = FALSE
)
head(kdps_results)
?kdps
If you use KDPS in your research, please cite:
Wanjun Gu, Jiachen Xi, Steven Cao, Rany M. Salem. Kinship Decouple and Phenotype Selection (KDPS). Manuscript in preparation
This package is released under the MIT License. See
LICENSE
file for details.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.