This file is indexed.

/usr/share/doc/r-cran-phangorn/tests/testthat/test_pmlMix.R is in r-cran-phangorn 2.4.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
context("Mixture models")

X <- allSitePattern(5)
tree <- read.tree(text = "((t1:0.3,t2:0.3):0.1,(t3:0.3,t4:0.3):0.1,t5:0.5);")
fit <- pml(tree,X, k=4)
weights <- 1000*exp(fit$site) 

ll0 <- sum(weights*log(weights/sum(weights)))

attr(X, "weight") <- weights
fit1 <- update(fit, data=X, k=1)

#fit2 <- update(fit, data=X)
#(fit2 <- optim.pml(fit2, optGamma=TRUE))

test_that("rate optimisation works properly", {
    skip_on_cran()
    fitMixture <- pmlMix(~rate, fit1 , m=4, control=pml.control(trace=0))
    expect_equal(fitMixture$logLik, ll0)
})