mergePops: Merge list of populations

View source: R/mergePops.R

mergePopsR Documentation

Merge list of populations

Description

Rapidly merges a list of populations into a single population

Usage

mergePops(popList)

Arguments

popList

a list containing Pop-class elements or a MultiPop-class

Value

Returns a Pop-class

Examples

#Create founder haplotypes
founderPop = quickHaplo(nInd=10, nChr=1, segSites=10)

#Set simulation parameters
SP = SimParam$new(founderPop)


#Create a list of populations and merge list
pop = newPop(founderPop, simParam=SP)
pop@misc$tmp = rnorm(n=10)
pop@misc$tmp2 = rnorm(n=10)

popList = list(pop, pop)
pop2 = mergePops(popList)


AlphaSimR documentation built on Sept. 11, 2024, 6:33 p.m.