pp: Unpack posterior probabilities from one-byte codes

Description Usage Arguments Value Author(s) Examples

View source: R/misc.R

Description

In snpStats, the three "posterior" probabilities corresponding to the possible values of an uncertain genotype are packed into a single byte code (with, of course, some loss in accuracy). This function, which is provided as an aid to writing new functions, unpacks the posterior probabilities from the single byte codes.

Usage

1
pp(x, transpose = FALSE)

Arguments

x

A vector, length N, which can be coerced into type raw

transpose

If FALSE, the result is an Nx3 matrix of posterior probabilities. If TRUE, a 3xN matrix is returned.

Value

A numeric matrix

Author(s)

David Clayton dc208@cam.ac.uk

Examples

1
2
3
4
5
6
##
## Read imputed data from a file produced by MACH 
##
path <- system.file("extdata/mach1.out.mlprob.gz", package="snpStats")
mach <- read.mach(path)
pp(mach[1:50, 10])

snpStats documentation built on Nov. 8, 2020, 10:59 p.m.