Retrieves SNP genotype data
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)
pullSnpGeno(pop, simParam=SP)
#> 1_3 1_5 1_8 1_14 1_15
#> 1 0 2 1 1 1
#> 2 0 1 2 1 0
#> 3 1 1 2 0 0
#> 4 0 2 1 0 1
#> 5 1 1 2 2 1
#> 6 2 1 1 0 1
#> 7 1 1 1 0 0
#> 8 0 1 2 1 1
#> 9 1 0 1 1 2
#> 10 2 0 1 1 2