View source: R/checkPedigree.R
checkPedigreeNetwork | R Documentation |
Checks for structural issues in pedigree networks, including: - Individuals with more than two parents. - Presence of cyclic parent-child relationships.
checkPedigreeNetwork(
ped,
personID = "ID",
momID = "momID",
dadID = "dadID",
verbose = FALSE
)
ped |
Dataframe representing the pedigree. |
personID |
Character. Column name for individual IDs. |
momID |
Character. Column name for maternal IDs. |
dadID |
Character. Column name for paternal IDs. |
verbose |
Logical. If TRUE, print informative messages. |
List containing detailed validation results.
## Not run:
results <- checkPedigreeNetwork(ped, personID = "ID",
momID = "momID", dadID = "dadID", verbose = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.