Retrieves haplotype data for user specified loci
Arguments
- pop
an object of
RawPop-class
orMapPop-class
- markers
a character vector. Indicates the names of the loci to be retrieved
- haplo
either "all" for all haplotypes or an integer for a single set of haplotypes. Use a value of 1 for female haplotypes and a value of 2 for male haplotypes in diploids.
- asRaw
return in raw (byte) format
- simParam
an object of
SimParam
, not used if pop isMapPop-class
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)
SP$setTrackRec(TRUE)
#Create population
pop = newPop(founderPop, simParam=SP)
#Pull haplotype data for first two markers on chromosome one.
#Marker name is consistent with default naming in AlphaSimR.
pullMarkerHaplo(pop, markers=c("1_1","1_2"), simParam=SP)
#> 1_1 1_2
#> 1_1 1 0
#> 1_2 0 1
#> 2_1 1 0
#> 2_2 1 1
#> 3_1 0 0
#> 3_2 1 0
#> 4_1 0 0
#> 4_2 0 0
#> 5_1 0 0
#> 5_2 1 0
#> 6_1 1 0
#> 6_2 0 1
#> 7_1 0 0
#> 7_2 0 1
#> 8_1 1 1
#> 8_2 1 1
#> 9_1 0 1
#> 9_2 0 0
#> 10_1 0 1
#> 10_2 1 0