Description Usage Arguments Details Value Examples
View source: R/ProductPipeline.R
function to advance a simulated breeding product pipeline forward by one generation. See Gaynor et al. 2017 for the general idea.
1 | productPipeline(records, bsp, SP)
|
records |
The breeding program |
bsp |
A list of breeding scheme parameters |
SP |
the AlphaSimR SimParam object |
The breeding program product pipeline will have been set by initializeFunc. This function moves the breeding program along by one generation and saves all the resulting phenotypes to the records object.
A records object that has new records created by advancing by a generation
1 2 3 4 5 6 7 8 | bsp <- specifyPipeline()
bsp <- specifyPopulation(bsp)
initList <- initializeFunc(bsp)
SP <- initList$SP
bsp <- initList$bsp
records <- initList$records
records <- productPipeline(records, bsp, SP)
records <- popImprov1(records, bsp, SP)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.