Learn R Programming

AlphaSimR (version 1.6.0)

pullSnpGeno: Pull SNP genotypes

Description

Retrieves SNP genotype data

Usage

pullSnpGeno(pop, snpChip = 1, chr = NULL, asRaw = FALSE, simParam = NULL)

Value

Returns a matrix of SNP genotypes.

Arguments

pop

an object of Pop-class

snpChip

an integer. Indicates which SNP chip's genotypes to retrieve.

chr

a vector of chromosomes to retrieve. If NULL, all chromosome are retrieved.

asRaw

return in raw (byte) format

simParam

an object of SimParam

Examples

Run this code
#Create founder haplotypes
founderPop = quickHaplo(nInd=10, nChr=1, segSites=15)

#Set simulation parameters
SP = SimParam$new(founderPop)
SP$nThreads = 1L
SP$addTraitA(10)
SP$addSnpChip(5)

#Create population
pop = newPop(founderPop, simParam=SP)
pullSnpGeno(pop, simParam=SP)

Run the code above in your browser using DataLab