Getting started with the ped suite

knitr::opts_chunk$set(
  echo = TRUE,
  collapse = TRUE,
  comment = "#>",
  fig.align = "center")

Installation

The following command installs the latest official versions of the ped suite packages:

install.packages("pedsuite")

Alternatively, you can install the development versions from GitHub:

# install.packages("devtools")
devtools::install_github("magnusdv/pedsuite")

If you only need a few of the packages, you may choose to install them individually instead of the entire collection.


A quick tour

The aim of this vignette is to illustrate a few of the possibilities of the ped suite packages. It should be noted that we are barely scratching the surface here; in particular several packages are not even mentioned. For a more comprehensive overview, I recommend the book.

To get started we load the pedsuite package, which is a convenient shortcut for loading all the core packages, making their methods available in the current R session.

library(pedsuite)

1. Create a pedigree (pedtools)

We begin by creating and plotting a pedigree with a child of first cousins:

x = cousinPed(1, child = TRUE)
plot(x)
plot(x, margin = rep(.8,4))

For symmetry let us change the sex of individual 3. We also highlight the child by hatching his symbol, and we only include his ID label in the plot.

x = swapSex(x, ids = 3)

plot(x, labs = 9, hatched = 9)
plot(x, labs = 9, hatched = 9, margin = rep(.8,4))

2. Calculate the inbreeding coefficient (ribd)

The inbreeding coefficient $f$ of a pedigree member is defined as the probability of autozygosity at a random autosomal locus. That is, the probability that the two homologous alleles have the same origin within the pedigree.

For a child of first cousins one can work out by pen and paper that $f = 1/16$. Alternatively, we can calculate it with the ribd function inbreeding().

inbreeding(x, ids = 9)

The output agrees with $f = 1/16$.

3. Realised inbreeding (ibdsim2)

For any particular child of first cousins, the actual autozygous fraction of the genome (except X & Y) is called the coefficient of realised inbreeding, denoted $f_R$. This may deviate substantially from the pedigree-based expectation $f = 1/16$.

We can simulate the distribution of $f_R$ with the ibdsim2 package. Since this is not a core package we must load it separately.

library(ibdsim2)

First, we use the function ibdsim() to simulate the recombination process in the entire pedigree, 200 times:

sims = ibdsim(x, N = 200, seed = 123)

Now extract the autozygous segments of each simulation.

fr = realisedInbreeding(sims, id = 9)

Here is a summary of the first 6 simulations, including the number of segments and various length statistics:

head(fr$perSimulation)

And here is a histogram of the realised inbreeding coefficients (given in the right-most column above):

op <- par(mar = c(4.1, 4.1, 1, 1))
hist(fr$perSimulation$fReal, xlim = c(0, 0.15), breaks = 16, xlab = "f_R", main = NULL)

# Expected value
abline(v = 1/16, col = 2)
# Just for CRAN
par(op)

As we see, the distribution centres around the expectation $f = 1/16 = 0.0625$ (red vertical line) but has substantial spread. The sample standard deviation can be found in fr$stDev, which in our case is r round(fr$stDev, 3).

4. Marker simulation (forrel)

Note that everything we have done so far has been purely theoretical, with no markers involved. In medical and forensic applications we usually work with genetic data in the form of marker genotypes, so let us simulate such a dataset for our family.

The markerSim() function of the forrel package simulates the genotypes of pedigree members for a specific type of markers. For instance, here we produce 500 SNPs with alleles A and B (equally frequent, by default):

y = markerSim(x, N = 500, alleles = c("A", "B"))

We can see the genotypes of the first few markers by printing y to the console.

y

5. Inference of pairwise relationships (forrel)

If this was a real dataset, a natural quality control step would be to check correctness of the pedigree. One way to do this is to use the data to estimate each pairwise relationship, and compare the result with the pedigree. The function checkPairwise() does all of this, and presents the result in a relationship triangle.

checkPairwise(y, plot = TRUE)

The plot shows that all pairwise estimates are near their expected location in the triangle. (The yellow symbols correspond to pairs involving the inbred child, which don't have a well-defined position in the triangle.)


Where to go from here

If you enjoyed this quick tour and would like more details, you should check out the GitHub README files of the packages that interest you.

There is also the pedtools vignette, with a lot more details on how to create and plot pedigrees in R.



Try the pedsuite package in your browser

Any scripts or data that you put into this service are public.

pedsuite documentation built on July 9, 2023, 6:26 p.m.