
This function models selection in an open pollinating plant population. It allows for varying the percentage of selfing. The function also provides an option for modeling selection as occuring before or after pollination.
selectOP(pop, nInd, nSeeds, probSelf = 0, pollenControl = FALSE,
trait = 1, use = "pheno", selectTop = TRUE, candidates = NULL,
simParam = NULL, ...)
an object of Pop-class
the number of plants to select
number of seeds per plant
percentage of seeds expected from selfing. Value ranges from 0 to 1.
are plants selected before pollination
the trait for selection. Either a number indicating a single trait or a function returning a vector of length nInd.
select on genetic values "gv", estimated breeding values "ebv", breeding values "bv", phenotypes "pheno", or randomly "rand"
selects highest values if true. Selects lowest values if false.
an optional vector of eligible selection candidates.
an object of SimParam
additional arguments if using a function for trait
Returns an object of Pop-class
# NOT RUN {
#Create founder haplotypes
founderPop = quickHaplo(nInd=10, nChr=1, segSites=10)
#Set simulation parameters
SP = SimParam$new(founderPop)
SP$addTraitA(10)
SP$setVarE(h2=0.5)
#Create population
pop = newPop(founderPop, simParam=SP)
#Create new population by selecting the best 3 plant
#Assuming 50% selfing in plants and 10 seeds per plant
pop2 = selectOP(pop, nInd=3, nSeeds=10, probSelf=0.5, simParam=SP)
# }
Run the code above in your browser using DataLab