Retrieves QTL 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)
pullQtlGeno(pop, simParam=SP)
#> 1_1 1_2 1_4 1_5 1_6 1_7 1_8 1_11 1_12 1_13
#> 1 2 0 1 0 2 1 1 1 2 1
#> 2 1 1 1 2 1 2 2 1 0 0
#> 3 1 0 1 2 1 2 2 0 1 0
#> 4 1 2 1 1 0 2 0 1 0 1
#> 5 0 1 0 0 2 1 1 1 0 1
#> 6 1 1 0 1 0 0 1 2 1 0
#> 7 1 2 2 1 1 0 1 1 1 1
#> 8 1 0 0 1 1 2 1 1 2 2
#> 9 1 0 0 1 1 0 0 2 1 1
#> 10 1 1 0 2 1 2 0 2 0 1