validatePed {pedtools} | R Documentation |
Pedigree errors
Description
Validate the internal pedigree structure. The input may be either a (possibly
malformed) ped()
object, or its defining vectors id
, fid
, mid
, sex
.
Usage
validatePed(x = NULL, id = NULL, fid = NULL, mid = NULL, sex = NULL)
Arguments
x |
A |
id |
A vector (coercible to character) of individual ID labels. |
fid , mid |
Vectors of the same length as |
sex |
A numeric of the same length as |
Value
If no errors are detected, the function returns NULL invisibly. Otherwise, messages describing the errors are printed to the screen and an error is raised.
Examples
x = nuclearPed()
validatePed(x)
# Various errors
# validatePed(id = c(1,2), fid = c(2,0), mid = c(0,1), sex = c(1,2))
[Package pedtools version 2.7.0 Index]