Crossing

2022-12-14

Introduction

This vignette shows how you can cross virgin queens in SIMplyBee. Here, we present how you can cross:

Start by loading the package:

library(package = "SIMplyBee")

First, we create a founder population and some virgin queen, virgin colonies, and virgin apiaries that we will later cross.

# Simulate 40 founder genomes
founderGenomes <- quickHaplo(nInd = 50, nChr = 1, segSites = 100)
# Set global population paramaters
SP <- SimParamBee$new(founderGenomes)
# Create a base population of 40 virgin queens
basePop <- createVirginQueens(founderGenomes)

# Prepare populations with a single virgin queen
virginQueen1 <- basePop[1]
virginQueen2 <- basePop[2]
virginQueen3 <- basePop[3]
# Prepare populations with multiple virgin queens
virginQueens1 <- basePop[4:6]
virginQueens2 <- basePop[7:9]
virginQueens3 <- basePop[10:12]
# Prepare virgin Colony objects
colony1 <- createColony(basePop[13])
colony2 <- createColony(basePop[14])
colony3 <- createColony(basePop[15])
colony4 <- createColony(basePop[16])
# Prepare virgin MultiColony objects
apiary1 <- createMultiColony(basePop[17:21])
apiary2 <- createMultiColony(basePop[22:26])
apiary3 <- createMultiColony(basePop[27:31])
apiary4 <- createMultiColony(basePop[32:41])

We will now create a groups of drones from the remaining queens with 1,000 drones per queen that will represent a drone congregation area (DCA).

# Create a DCA from the remaining virgin queens
DCA <- createDrones(basePop[42:50], nInd = 1000)

Cross virgin queens at an open DCA

Cross by pre-selecting drone populations

We start by crossing our populations and colonies to pre-selected populations of drones. We pre-select the groups by pulling a desired number of drone packages from a DCA with the function pullDroneGroupsFromDCA(). This function requires you to specify a group of drones (DCA), how many groups you want to pull from the DCA (n), and how many drones per group you want (nDrones). For nDrones, you can either specify an integer or a sampling function, which results in a different number of drones in each of the pulled groups (you can read more about this in the Sampling functions vignette). These sampling functions are particularly useful in crossing simulations:

If these functions do not satisfy your needs, you can specify your own sampling function(s).

We can pull the drone groups out separately for each crossing or pull them out all at once.

# Pre-select drone (father) populations from a DCA
droneGroups <- pullDroneGroupsFromDCA(DCA, n = 20, nDrones = nFathersTruncPoisson)

Once we inspect these drone groups, we see there is a different number of drones in each group because we used a sampling function:

sapply(droneGroups, FUN = nInd)
#>  [1] 16 16 19  9 16 16 17 20 14 19 18 13 11 15 11 17 21 10 16 12

Now, we can cross our virgin queens to drone groups.

# A single virgin queen
virginQueen1 <- cross(virginQueen1, drones = droneGroups[[1]])
nFathers(virginQueen1)
#> [1] 16
# Multiple virgin queens
virginQueens1 <- cross(virginQueens1, drones = droneGroups[2:4])
nFathers(virginQueens1)
#> [1] 16 19  9
# A colony
colony1 <- cross(colony1, drones = droneGroups[[5]])
nFathers(colony1)
#> [1] 16
# An apiary
apiary1 <- cross(x = apiary1, drones = droneGroups[6:10])
nFathers(apiary1)
#>  5  6  7  8  9 
#> 16 17 20 14 19

Cross according to a cross plan

Another option is to provide a cross plan with IDs of the virgin queens/colonies and drones, and a single drone population with all the drones listed in the cross plan. You can create a cross plan with the function createRandomCrossPlan(). This function creates a cross plan by randomly sampling a desired number of drone IDs from a DCA and assigning them to either virgin queen ID or colony ID. When crossing a virgin queen from a colony, you have to provide the colony ID, since there could be multiple virgin queens within the colony. In that case, the random selection of one virgin queen occurs within the cross() function. To create a cross plan you therefore have to provide the IDs of either the virgin queens or the colonies you want to cross (but not both in the same cross plan!!!), the drone population, and the number of drones you want to cross to a particular virgin queen. This can again be a fixed number or a sampling function. We can create a separate cross plan for each mating or create one combined cross plan for multiple matings (but can not have virgin queen and colony IDs in the cross plan at the same time!!!). Here, we again mate a single virgin queen, a population of virgin queens, virgin queens from a colony, and from an apiary.

# Create a combined cross for mating a single queen (virginQueen2) and a population
# of virgin queen (virginQueens2)
(crossPlanQueens <- createRandomCrossPlan(IDs = c(getId(virginQueen2),
                                                  getId(virginQueens2)),
                                         drones = DCA,
                                         nDrones = 15))
#> $`2`
#>  [1] "4292" "2141" "3589" "963"  "2188" "8217" "7254" "5322" "4287" "3157"
#> [11] "7588" "2499" "8649" "5594" "8581"
#> 
#> $`7`
#>  [1] "3025" "1790" "1132" "5653" "5806" "1618" "2753" "7739" "2432" "4765"
#> [11] "6901" "7223" "4258" "3538" "5812"
#> 
#> $`8`
#>  [1] "3825" "3767" "5781" "2034" "6579" "838"  "1549" "424"  "3330" "494" 
#> [11] "7344" "1370" "4980" "5914" "2288"
#> 
#> $`9`
#>  [1] "6378" "1689" "603"  "4377" "6790" "5116" "3909" "5018" "8242" "5886"
#> [11] "3027" "2018" "4938" "2502" "6996"

We see that the created cross plan is a list with IDs corresponding to the virgin queen’s IDs and the elements of each list being the IDs of the drones the virgin queen will mate with. Now we can cross these virgin queens by providing the crossPlanQueens to the cross() functions.

# Cross a single virgin queen
virginQueen2 <- cross(virginQueen2, drones = DCA, crossPlan = crossPlanQueens)
nFathers(virginQueen2)
#> [1] 15
# Cross multiple virgin queens
virginQueens2 <- cross(virginQueens2, drones = DCA, crossPlan = crossPlanQueens)
nFathers(virginQueens2)
#> [1] 15 15 15

As already mentioned, we need to create a separate plan for crossing virgin queens already in colonies, since here we need to provide colony IDs.

(crossPlanColonies <- createRandomCrossPlan(IDs = c(getId(colony2), getId(apiary2)),
                                           drones = DCA,
                                           nDrones = nFathersPoisson))
#> $`2`
#>  [1] "776"  "1803" "8614" "1064" "6787" "7787" "2561" "7467" "5203" "1125"
#> [11] "104"  "2644" "3468" "3499"
#> 
#> $`10`
#>  [1] "7926" "6480" "1956" "7887" "4513" "6544" "2482" "6821" "6284" "2242"
#> [11] "3569" "6728" "1344"
#> 
#> $`11`
#>  [1] "6187" "9019" "2784" "4297" "6265" "8515" "8011" "1868" "3324" "4044"
#> [11] "3036" "6403" "7565" "7234" "1582" "2402" "2492" "5176"
#> 
#> $`12`
#>  [1] "8492" "3016" "706"  "1143" "4439" "4281" "4658" "4949" "4352" "6873"
#> [11] "6504" "479"  "3782" "8264" "3446" "6406"
#> 
#> $`13`
#>  [1] "4211" "7494" "3495" "4653" "2570" "4158" "990"  "6862" "4445" "5786"
#> [11] "5516" "437"  "1718"
#> 
#> $`14`
#>  [1] "6910" "6782" "249"  "3123" "7371" "3883" "4290" "8338" "6855" "8870"
#> [11] "6633" "8810" "7184" "7532" "639"  "5549" "1886" "6383" "6511" "7528"

We again see that the cross plan is a list, now with colony IDs and elements of the list being the ID of drones the virgin queen within each colony will mate with. Now, we can cross our “colonies” by providing the crossPlanColonies to the cross() function.

# Cross a single colony
colony2 <- cross(colony2, drones = DCA, crossPlan = crossPlanColonies)
nFathers(colony2)
#> [1] 14
# Cross an apiary
apiary2 <- cross(x = apiary2, drones = DCA, crossPlan = crossPlanColonies)
nFathers(apiary2)
#> 10 11 12 13 14 
#> 13 18 16 13 20

Cross virgin queens at a mating station

Mating virgin queens at a mating station is no different than mating them at an open DCA - the difference is in the DCA itself. In the case of open mating, the DCA consists of drones from multiple queens, all of which are usually unknown. In the case of a mating station, the DCA consists of drones coming from a sister group of drone producing queens (DPQ), the queen of which is known. This allows us to track the pedigree on the paternal side.

To simulate this situation, we first create a mating station DCA using createMatingStationDCA() function, which takes a single “sire” colony (queen of the DPQs). From the “sire” colony, the function first produces a desired number of sister DPQs, and next produces a desired number of drones per DPQ. The produced drones represent the mating station’s DCA.

# Create a DCA at a mating station from colony1
(matingStationDCA <- createMatingStationDCA(colony1, nDPQs = 20, nDronePerDPQ = 1000))
#> An object of class "Pop" 
#> Ploidy: 2 
#> Individuals: 20000 
#> Chromosomes: 1 
#> Loci: 100 
#> Traits: 0

We see that the output of the function is a single population of 20,000 drones that represents the DCA. Once you have the DCA, you can cross virgin queens either by pulling out populations of drones or creating a mating plan as described above.

Here, we will mate a single colony (colony3) and a group of colonies (apiary3) at a mating station according to a cross plan.

# Mate only an apiary
crossPlanMatingStation <- createRandomCrossPlan(IDs = c(getId(colony3), 
                                                        getId(apiary3)),
                                                drones = matingStationDCA,
                                                nDrones = nFathersTruncPoisson)
# Cross a colony
colony3 <- cross(colony3, crossPlan = crossPlanMatingStation, drones = matingStationDCA)
nFathers(colony3)
#> [1] 18
# Cross an apiary
apiary3 <- cross(apiary3, crossPlan = crossPlanMatingStation, drones = matingStationDCA)
nFathers(apiary3)
#> 15 16 17 18 19 
#> 21 20 16 10  9

Cross virgin queens with different methods

It could happen that you have some virgin colonies in an apiary and you want to inseminate one of the virgin queens artificially with a single drone, take three of them to a mating station, and mate the rest of them openly at a local DCA. Since the cross plan is a named list, you can concatenate multiple cross plans into one. Let’s mate the multicolony apiary4 in such a manner.

# Create a single drone for single drone insemination
singleDrone = createDrones(colony2, nInd = 1)
# Create a cross plan for crossing some of the colonies in an open DCA, 
# some with single drone, and some on a mating station
crossPlanApiary4 <- c(
  createRandomCrossPlan(IDs = getId(apiary4)[1], 
                        drones = singleDrone, 
                        nDrones = 1),
  createRandomCrossPlan(IDs = getId(apiary4)[2:6], 
                        drones = DCA, 
                        nDrones = nFathersTruncPoisson),
  createRandomCrossPlan(IDs = getId(apiary4)[7:10], 
                        drones = matingStationDCA, 
                        nDrones = nFathersTruncPoisson)
  )

apiary4 <- cross(apiary4, 
                 crossPlan = crossPlanApiary4, 
                 drones = c(singleDrone, DCA, matingStationDCA))
nFathers(apiary4)
#> 20 21 22 23 24 25 26 27 28 29 
#>  1  9 10 19 14 12 16 19 12 10