generateIntervalMidPoints: Specify interval midpoints

Description Usage Arguments Details Value Examples

View source: R/generateIntervalMidPoints.R

Description

Specify interval midpoints

Usage

1

Arguments

object

The object of class mpcrossMapped from which to take the interval midpoints.

Details

Some functions, such as imputeFounders and computeGenotypeProbabilities, take in a set of genetic positions as one of the inputs. This function is an easy way to specify the midpoint of every marker interval.

Note that you don't have to explicitly evaluate this function, it can be passed in directly (see examples).

Value

A function which can be applied to an object of class mpcrossMapped by imputeFounders or computeGenotypeProbabilities.

Examples

1
2
3
4
5
6
7
8
9
data(simulatedFourParentData)
#Create object that includes the correct map
mapped <- new("mpcrossMapped", simulatedFourParentData, map = simulatedFourParentMap)
#Estimate IBD genotypes at all the markers, and marker midpoints
imputed <- imputeFounders(mapped, errorProb = 0.02, 
	extraPositions = generateIntervalMidPoints(mapped))
#Alternatively we can explicitly evaluate the function. This is identical to above.
imputed <- imputeFounders(mapped, errorProb = 0.02, 
	extraPositions = generateIntervalMidPoints)

mpMap2 documentation built on Sept. 13, 2020, 5:17 p.m.