-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.Rmd
45 lines (32 loc) · 1.58 KB
/
README.Rmd
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: "CKMRsim"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
This package implements Monte Carlo methods
(including efficient importance sampling approaches) for assessing the false positive and false
negative rates expected when using a particular set of genetic markers for pairwise relationship inference. It also
provides functions implemented in C++ for computing likelihood ratios for different
relationships between all pairs of individuals in a data set.
CKMRsim can be installed with the 'remotes' packages` It requires that development tools be installed on your
system to allow compilation of C++ via RCpp.
```{r, eval=FALSE}
remotes::install_github("eriqande/CKMRsim", build_vignettes = TRUE)
```
Once that is done (and note that building the vignettes can take a while), you can read the vignettes
with:
```{r, eval=FALSE}
vignette("CKMRsim-example-1")
vignette("CKMRsim-example-2-microsatellites")
vignette("CKMRsim-simulating-linked-markers")
vignette("CKMRsim-writing-geno-error-funcs")
vignette("CKMRsim-pairwise-relationships")
```
An easier way to get to read these vignetttes is to find them in the "articles"
tab at CKMRsim's pkgdown page at: https://eriqande.github.io/CKMRsim/
Doing simulations in the face of physical linkage requires the Mendel program
version 16. This was formerly
available at [http://software.genetics.ucla.edu/mendel](http://software.genetics.ucla.edu/mendel), but it seems that the site is no longer maintained or connected.
Instead, you can now install it with the `install_mendel()` function.