Makes crosses between two populations using a user supplied crossing plan.
makeCross2(females, males, crossPlan, simParam = NULL)
an object of Pop-class
for female parents.
an object of Pop-class
for male parents.
a matrix with two column representing female and male parents. Either integers for the position in population or character strings for the IDs.
an object of SimParam
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)
#Create population
pop = newPop(founderPop, simParam=SP)
#Cross individual 1 with individual 10
crossPlan = matrix(c(1,10), nrow=1, ncol=2)
pop2 = makeCross2(pop, pop, crossPlan, simParam=SP)
# }
Run the code above in your browser using DataLab