This file is indexed.

/usr/lib/R/site-library/Biobase/unitTests/test_SnpSet.R is in r-bioc-biobase 2.38.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
testSnpSetAccessors <-
    function()
{
    set.seed(1)
    nms <- list(paste("rs", 1:100, sep="_"), LETTERS[1:10])
    m <- matrix(runif(1000), 100, dimnames=nms)
    n <- matrix(runif(1000), 100, dimnames=nms)
    sset <- new("SnpSet", call=m, callProbability=n)

    checkEquals(m, snpCall(sset))
    checkEquals(n, snpCallProbability(sset))

    m <- matrix(runif(1000), 100, dimnames=nms)
    n <- matrix(runif(1000), 100, dimnames=nms)
    snpCall(sset) <- m
    snpCallProbability(sset) <- n
    checkEquals(m, snpCall(sset))
    checkEquals(n, snpCallProbability(sset))
}