Represents pedigree from ExamplePedigree.csv.
-- character column of animal IDs
-- the male parent of the animal indicated by the id
column. Unknown sires are indicated with NA
-- the female parent of the animal indicated by the id
column.Unknown dams are indicated with NA
-- factor with levels: "M", "F", "U". Sex specifier for an individual.
-- generation number (integers beginning with 0 for the founder
generation) of the animal indicated by the id
column.
-- Date vector of birth dates
-- Date vector of exit dates
-- numerical vector of age in years
-- character vector or NA with free-form text providing information about the geographic population of origin.
-- character vector or NA
(optional) that indicates
the name of the facility that the individual was imported from if other than
local.
-- character vector or NA. Flag indicating an individual's status as alive, dead, sold, etc. Transformed to factor levels: ALIVE, DECEASED, SHIPPED, UNKNOWN. Vector of standardized status codes with the possible values ALIVE, DECEASED, SHIPPED, or UNKNOWN
-- character vector with value of "added"
or
"original"
.
examplePedigree
An object of class data.frame
with 3694 rows and 12 columns.
# \donttest{ library(nprcgenekeepr) data("examplePedigree") exampleTree <- createPedTree(examplePedigree) exampleLoops <- findLoops(exampleTree) # }