
Last chance! 50% off unlimited learning
Sale ends in
Retrieves SNP haplotype data
pullSnpHaplo(pop, snpChip = 1, haplo = "all", chr = NULL, simParam = NULL)
an object of Pop-class
an integer. Indicates which SNP chip's haplotypes to retrieve.
either "all" for all haplotypes or an integer for a single set of haplotypes. Use a value of 1 for female haplotyes and a value of 2 for male haplotypes.
a vector of chromosomes to retrieve. If NULL, all chromosome are retrieved.
an object of SimParam
Returns a matrix of SNP haplotypes.
# NOT RUN {
#Create founder haplotypes
founderPop = quickHaplo(nInd=10, nChr=1, segSites=10)
#Set simulation parameters
SP = SimParam$new(founderPop)
SP$addTraitA(10)
SP$addSnpChip(5)
#Create population
pop = newPop(founderPop, simParam=SP)
pullSnpHaplo(pop, simParam=SP)
# }
Run the code above in your browser using DataLab