resetPop {AlphaSimR} | R Documentation |
Recalculates a population's genetic values and resets phenotypes and EBVs.
resetPop(pop, simParam = NULL)
pop |
an object of |
simParam |
an object of |
an object of Pop-class
#Create founder haplotypes founderPop = quickHaplo(nInd=2, nChr=1, segSites=10) #Set simulation parameters SP = SimParam$new(founderPop) SP$addTraitA(10) #Create population pop = newPop(founderPop, simParam=SP) #Rescale to set mean to 1 SP$rescaleTraits(mean=1) pop = resetPop(pop, simParam=SP)