Level 1 function that pulls individuals from a population and update the population (these individuals don't stay in a population).

pullInd(pop, nInd = NULL, use = "rand")

Arguments

pop

Pop-class

nInd

numeric, number of individuals to pull, if NULL pull all individuals

use

character, all options provided by selectInd

Value

list with a node pulled holding Pop-class of pulled individuals and a node remnant) holding Pop-class

of remaining individuals

Examples

founderGenomes <- quickHaplo(nInd = 3, nChr = 1, segSites = 100)
SP <- SimParam$new(founderGenomes)
basePop <- newPop(founderGenomes)
#> Error in get("SP", envir = .GlobalEnv): object 'SP' not found

pullInd(basePop, nInd = 2)
#> Error in is(x, class2 = "Pop"): object 'basePop' not found
pullInd(basePop, nInd = 3)
#> Error in is(x, class2 = "Pop"): object 'basePop' not found
pullInd(basePop)
#> Error in is(x, class2 = "Pop"): object 'basePop' not found