R/convertFromCenter.R
convertFromCenter.Rd
Part of Pedigree Curation
convertFromCenter(fromCenter)
fromCenter | character or logical vector or NA indicating whether or not the animal is from the center. |
---|
A logical vector specifying TRUE if an animal is from the center otherwise FALSE.
# \donttest{ 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# }