File: mvr.R

package info (click to toggle)
r-cran-ape 5.8-1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,676 kB
  • sloc: ansic: 7,676; cpp: 116; sh: 17; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 1,631 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
## mvr.R (2012-03-30)

##   Minimum Variance Reduction

## Copyright 2011 Andrei-Alin Popescu

## This file is part of the R-package `ape'.
## See the file ../COPYING for licensing issues.

mvr <- function(X, V)
{
    if (is.matrix(X)) X <- as.dist(X)
    if (is.matrix(V)) V <- as.dist(V)
    if (any(is.na(X)))
        stop("missing values are not allowed in the distance matrix")
    if (any(is.na(V)))
        stop("missing values are not allowed in the variance matrix")
    N <- attr(X, "Size")
    labels <- attr(X, "Labels")
    if (is.null(labels)) labels <- as.character(1:N)
    ans <- .C(C_mvr, as.double(X), as.double(V), as.integer(N),
              integer(2*N - 3), integer(2*N - 3), double(2*N - 3),
              NAOK = TRUE)
    obj <- list(edge = cbind(ans[[4]], ans[[5]]), edge.length = ans[[6]],
                tip.label = labels, Nnode = N - 2L)
    class(obj) <- "phylo"
    reorder(obj)
}

mvrs <- function(X, V, fs = 15)
{
    if (fs < 1)
        stop("argument 'fs' must be a non-zero positive integer")

    if (is.matrix(X)) X <- as.dist(X)
    if (is.matrix(V)) V <- as.dist(V)

    X[is.na(X)] <- -1
    X[X < 0] <- -1
    X[is.nan(X)] <- -1

    N <- attr(X, "Size")
    labels <- attr(X, "Labels")
    if (is.null(labels)) labels <- as.character(1:N)
    ans <- .C(C_mvrs, as.double(X), as.double(V), as.integer(N),
              integer(2*N - 3), integer(2*N - 3), double(2*N - 3),
              as.integer(fs), NAOK = TRUE)
    obj <- list(edge = cbind(ans[[4]], ans[[5]]), edge.length = ans[[6]],
                tip.label = labels, Nnode = N - 2L)
    class(obj) <- "phylo"
    reorder(obj)
}