
Converts the fromCenter information to a standardized code
Source:R/convertFromCenter.R
convertFromCenter.Rd
Part of Pedigree Curation
Examples
original <- c("y", "yes", "Y", "Yes", "YES", "n", "N", "No", "NO", "no",
"t", "T", "True", "true", "TRUE", "f", "F", "false", "False",
"FALSE")
convertFromCenter(original)
#> [1] TRUE TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE TRUE TRUE
#> [13] TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE