pullSegSiteGeno {AlphaSimR} | R Documentation |
Pull segregating site genotypes
Description
Retrieves genotype data for all segregating sites
Usage
pullSegSiteGeno(pop, chr = NULL, asRaw = FALSE, simParam = NULL)
Arguments
pop |
an object of |
chr |
a vector of chromosomes to retrieve. If NULL, all chromosome are retrieved. |
asRaw |
return in raw (byte) format |
simParam |
an object of |
Value
Returns a matrix of genotypes
Examples
#Create founder haplotypes
founderPop = quickHaplo(nInd=10, nChr=1, segSites=15)
#Set simulation parameters
SP = SimParam$new(founderPop)
SP$addTraitA(10)
SP$addSnpChip(5)
#Create population
pop = newPop(founderPop, simParam=SP)
pullSegSiteGeno(pop, simParam=SP)
[Package AlphaSimR version 1.5.3 Index]