
Last chance! 50% off unlimited learning
Sale ends in
A convience function for hybrid plant breeding simulations. Allows for
easy specification of a test cross scheme and/or creation of an object
of HybridPop-class
. Note that the HybridPop-class
should only be used if the parents were created using the makeDH
function or newPop
using inbred founders. The id for
new individuals is [mother_id]_[father_id]
hybridCross(
females,
males,
crossPlan = "testcross",
returnHybridPop = FALSE,
simParam = NULL
)
female population, an object of Pop-class
male population, an object of Pop-class
either "testcross" for all possible combinantions or a matrix with two columns for designed crosses
should results be returned as
HybridPop-class
. If false returns results as
Pop-class
. Population must be fully inbred if TRUE.
an object of SimParam
# NOT RUN {
#Create founder haplotypes
founderPop = quickHaplo(nInd=2, nChr=1, segSites=10)
#Set simulation parameters
SP = SimParam$new(founderPop)
#Create population
pop = newPop(founderPop, simParam=SP)
#Make crosses for full diallele
pop2 = hybridCross(pop, pop, simParam=SP)
# }
Run the code above in your browser using DataLab