
Estimate the probability of no IBD sharing in a pairwise relationship.
zeroIBD(sims, ids = NULL, threshold = 0)
A list of genome simulations, as output by ibdsim()
.
A vector with two ID labels. If NULL (default), these are deduced
from the sims
object.
A nonnegative number (default:0). Only IBD segments longer than this are included in the computation.
A list with the following two entries:
zeroprob
: The fraction of sims
in which ids
have no IBD sharing
stErr
: The standard error of zeroprob
# NOT RUN {
###
# The following example computes the probability of
# no IBD sharing between a pair of fourth cousins.
# We also show how the probability is affected by
# truncation, i.e., ignoring short segments.
###
# Define the pedigree
x = cousinPed(4)
cous = leaves(x)
# Simulate (increase N!)
s = ibdsim(x, N = 10)
# Probability of zero ibd segments. (By default all segs are used)
zeroIBD(s, ids = cous)
# Re-compute with positive threshold
zeroIBD(s, ids = cous, threshold = 1)
# }
Run the code above in your browser using DataLab