theta.s: Population Parameter THETA using Segregating Sites

Description Usage Arguments Value Note Author(s) References See Also Examples

Description

This function computes the population parameter THETA using the number of segregating sites s in a sample of n DNA sequences.

Usage

1
theta.s(s, n, variance = FALSE)

Arguments

s

a numeric giving the number of segregating sites.

n

a numeric giving the number of sequences.

variance

a logical indicating whether the variance of the estimated THETA should be returned (TRUE), the default being FALSE.

Value

A numeric vector of length one with the estimated theta (the default), or of length two if the standard error is returned (variance = TRUE).

Note

The number of segregating sites needs to be computed beforehand, for instance with the function seg.sites (see example below).

Author(s)

Emmanuel Paradis

References

Watterson, G. A. (1975) On the number of segragating sites in genetical models without recombination. Theoretical Population Biology, 7, 256–276.

Tajima, F. (1989) Statistical method for testing the neutral mutation hypothesis by DNA polymorphism. Genetics, 123, 585–595.

See Also

theta.h, theta.k, seg.sites, nuc.div, theta.tree

Examples

1
2
3
4
5
data(woodmouse)
s <- length(seg.sites(woodmouse))
n <- nrow(woodmouse)
theta.s(s, n)
theta.s(s, n, variance = TRUE)

dwinter/Pegas documentation built on May 15, 2019, 6:21 p.m.