Function to slide a window over a vector (individual's genotypes)
This is a core function. The functions to detect RUNS are slid over the genome
slidingWindowCpp(data, gaps, windowSize, step, maxGap, ROHet = TRUE, maxOppositeGenotype = 1L, maxMiss = 1L)
data
: vector of 0/1/2 genotypesgaps
: vector of differences between consecutive positions (gaps) in bpswindowSize
: size of window (n. of SNP)step
: by which (how many SNP) is the window slidmaxGap
: max distance between consecutive SNP in a window to be still considered a potential runROHet
: shall we detect ROHet or ROHom?maxOppositeGenotype
: max n. of homozygous/heterozygous SNPmaxMiss
: max. n. of missing SNPvector of TRUE/FALSE (whether a window is homozygous or NOT)
Useful links