Possibilities

  1. Amanda Vinson wrote this in an e-mail on 20170901:

    I’m very interested in hearing about your idea of adding algorithms related to selecting/maintaining specific alleles in a colony. I think your idea could be related to what I need to work on next, which is an algorithm for assessing the long-term impact on colony genetic diversity of removing specific animals/alleles.
    This is a need we have here at the ONPRC due to assigning animals to
    research, and I have been tasked with implementing the solution.

  2. Remove individuals that can never breed again from genetic analyses. (From page 29 of PMx User Manual, version 1.0). It is generally recommended to remove living individuals that can never breed or will never be bred again (e.g., post reproductive, sterilized, poor health, hybrid) from the genetic mean kinship calculations, as these individuals can no longer pass on their genetic material to the next generation and their inclusion influences the mean kinship values of other individuals in the population. However, these non-reproductive individuals may occupy cage space and need to be managed in other ways. In addition, their demographic information is valuable. Managers therefore often chose to include these individuals in the demographic analysis but to exclude them from genetic analysis.

  3. It would be nice to have multiple “selected populations” that could be set up and easily selected for various analyses and plots.

  4. Talk to Amanda about developing a general way to handle animals without two known parents that are not founders. There are the following lines of code in orderReport.R

    # ONPRC-born animals with no parentage
    i <- (is.na(rpt\$origin) & (rpt\$totalOffspring == 0) & (rpt\$id %in% founders)) noParentage <- rpt[i, ]

  5. Find some ways to use genetic marker data in the evaluation of genetic value. This needs to be discussed.

  6. Add breeding productivity measure calculations. For example, (a) number of offspring per year of exposure to male or female. (b) Number of months since last birth. (c) Number of months between births with range and standard deviation.

  7. Consider developing a simulation module to allow users to simulate breeding decisions.

    1. Need to be able to set the following values.
      1. Number desired males produced each year
      2. Frequency of matings that produce offspring that can successfully breed
      3. Number of animals of each sex and age removed from breeding each year. This would not necessarily be constant, it could be a list with sublist for each year.
      4. Ability to choose among various mating strategies based on age, mean kinship,
      5. Practical numbers of each sex in a breeding group
      6. Percent of year needed to adapt to new mating structure after a change.
      7. Loss due to mortality rate by age and sex
      8. Ability to use arbitrary or historical data for mating success
    2. Breeding methods based on mean kinship (MK)
      1. Static MK
        1. At each timestep, all individual MKs for animals of breeding age are calculated and 2 sex-specific lists created that rank individuals from lowest MKs to highest.
        2. Breeding groups are formed with breeding pairs having to have a kinship coefficient (f) less than the average f in the population to avoid close inbreeding. When a pair is rejected, remaining females, running from lowest MK to highest become the next potential mates. If a suitable female is not found, that male is removed from the pool of potential breeders and an attempt is made to pair the next lowest MK male with the MK list of females.
        3. Offspring are simulated and stored.
      2. See jhered.esr129.full.pdf page 188 for other breeding strategies.

Notes

  1. There are some functions that are defined and not used in the Shiny app. They may be needed later.
    1. findLoops
    2. makeLoop
    3. countLoops
    4. createPedTree
    I expect they are direct ports from kinship2. I will check.