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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
# Tests combineMarkers().
# library(scran); library(testthat); source("test-combine-markers.R")
set.seed(1000)
# Setting up some reference data.
ngroups <- 10
groups <- cbind(rep(seq_len(ngroups), each=ngroups), rep(seq_len(ngroups), ngroups))
groups <- groups[groups[,1]!=groups[,2],]
output <- list()
genes <- paste0("GENE_", 1:100)
for (x in seq_len(nrow(groups))) {
output[[x]] <- data.frame(p.value=runif(length(genes)), logFC=rnorm(length(genes)), row.names=genes)
}
#######################################################
test_that("combineMarkers is the same as a reference impementation for 'any'", {
comb.any <- combineMarkers(output, groups)
expect_identical(names(comb.any), as.character(seq_len(ngroups)))
comb.mid <- combineMarkers(output, groups, min.prop=0.5)
for (x in as.character(seq_len(ngroups))) {
current.i <- as.character(groups[,1]) == x
current.targets <- groups[current.i,2]
current.stats <- output[current.i]
# P-value reference calculations.
collected.p <- lapply(current.stats, "[[", i="p.value")
pmat <- do.call(rbind, collected.p)
obs.any <- comb.any[[x]][genes,]
any.p <- apply(pmat, 2, FUN=function(p) { min(p.adjust(p, method="BH")) })
expect_equal(any.p, obs.any$p.value)
expect_equal(p.adjust(any.p, method="BH"), obs.any$FDR)
# Rank calculations.
rankings <- lapply(collected.p, rank, ties.method="first")
min.rank <- do.call(pmin, rankings)
any.o <- order(min.rank)
expect_identical(rownames(comb.any[[x]]), genes[any.o])
expect_equal(comb.any[[x]]$Top, min.rank[any.o])
mid.rank <- apply(do.call(cbind, rankings), 1, function(x) sort(x)[5])
any.o <- order(mid.rank)
expect_identical(rownames(comb.mid[[x]]), genes[any.o])
expect_equal(comb.mid[[x]]$Top, mid.rank[any.o])
# Effect size extraction.
for (other in seq_along(current.targets)) {
cureffect <- paste0("logFC.", current.targets[other])
expect_equal(current.stats[[other]]$logFC, obs.any[[cureffect]])
}
# Checking the summary statistic.
mat.p <- do.call(cbind, collected.p)
mat.effect <- do.call(cbind, lapply(current.stats, "[[", i="logFC"))
expect_identical(obs.any$summary.logFC, mat.effect[cbind(seq_len(nrow(mat.p)), max.col(-mat.p))])
}
})
test_that("combineMarkers is the same as a reference impementation for the 'all' option", {
comb.all <- combineMarkers(output, groups, pval.type="all")
expect_identical(names(comb.all), as.character(seq_len(ngroups)))
for (x in as.character(seq_len(ngroups))) {
current.i <- as.character(groups[,1]) == x
current.targets <- groups[current.i,2]
current.stats <- output[current.i]
collected.p <- lapply(current.stats, "[[", i="p.value")
all.p <- do.call(pmax, collected.p)
obs.all <- comb.all[[x]][genes,]
expect_equal(all.p, obs.all$p.value)
expect_equal(p.adjust(all.p, method="BH"), obs.all$FDR)
expect_identical(rownames(comb.all[[x]]), genes[order(all.p)])
# Checking the summary statistic.
mat.p <- do.call(cbind, collected.p)
mat.effect <- do.call(cbind, lapply(current.stats, "[[", i="logFC"))
expect_identical(obs.all$summary.logFC, mat.effect[cbind(seq_len(nrow(mat.p)), max.col(mat.p))])
}
})
test_that("combineMarkers is the same as a reference impementation for the 'some' option", {
comb.some <- combineMarkers(output, groups, pval.type="some")
expect_identical(names(comb.some), as.character(seq_len(ngroups)))
comb.quart <- combineMarkers(output, groups, pval.type="some", min.prop=0.25)
get.i <- function(prop) { ceiling((ngroups-1)*prop) }
get.effect <- function(mat.p, mat.effect, prop) {
vapply(seq_len(nrow(mat.p)), FUN=function(i) {
r <- rank(mat.p[i,])
valid <- which(r <= ceiling(ncol(mat.p) * prop))
mat.effect[i,valid[which.max(r[valid])]]
}, 0)
}
# Comparing to reference calculations.
for (x in as.character(seq_len(ngroups))) {
current.i <- as.character(groups[,1]) == x
current.targets <- groups[current.i,2]
current.stats <- output[current.i]
collected.p <- lapply(current.stats, "[[", i="p.value")
pmat <- do.call(rbind, collected.p)
obs.some <- comb.some[[x]][genes,]
I <- get.i(0.5)
some.p <- apply(pmat, 2, FUN=function(p) sort(p.adjust(p, method="holm"))[I])
expect_equal(some.p, obs.some$p.value)
expect_equal(p.adjust(some.p, method="BH"), obs.some$FDR)
# Checking the summary statistic.
mat.p <- do.call(cbind, collected.p)
mat.effect <- do.call(cbind, lapply(current.stats, "[[", i="logFC"))
expect_identical(obs.some$summary.logFC, get.effect(mat.p, mat.effect, 0.5))
# Trying with another min.prop setting.
obs.quart <- comb.quart[[x]][genes,]
I <- get.i(0.25)
quart.p <- apply(pmat, 2, FUN=function(p) sort(p.adjust(p, method="holm"))[I])
expect_equal(quart.p, obs.quart$p.value)
expect_equal(p.adjust(quart.p, method="BH"), obs.quart$FDR)
mat.p <- do.call(cbind, collected.p)
mat.effect <- do.call(cbind, lapply(current.stats, "[[", i="logFC"))
expect_identical(obs.quart$summary.logFC, get.effect(mat.p, mat.effect, 0.25))
}
})
test_that("combineMarkers responds to the pairing input", {
# Handles different ordering of pairs.
s <- sample(nrow(groups))
comb.any <- combineMarkers(output, groups)
alt.any <- combineMarkers(output[s], groups[s,])
expect_identical(names(alt.any), as.character(unique(groups[s,1])))
comb.all <- combineMarkers(output, groups, pval.type="all")
alt.all <- combineMarkers(output[s], groups[s,], pval.type="all")
expect_identical(names(alt.all), as.character(unique(groups[s,1])))
first <- as.character(groups[,1])
second <- as.character(groups[,2])
nfields.any <- 4
nfields.all <- 3
for (x in names(comb.any)) {
old.order <- second[first==x]
cur.any <- comb.any[[x]]
expect_equal(tail(colnames(cur.any), -nfields.any), paste0("logFC.", old.order))
cur.all <- comb.all[[x]]
expect_equal(tail(colnames(cur.all), -nfields.all), paste0("logFC.", old.order))
new.order <- second[s][first[s]==x]
cur.any.alt <- alt.any[[x]]
expect_equal(tail(colnames(cur.any.alt), -nfields.any), paste0("logFC.", new.order))
cur.all.alt <- alt.all[[x]]
expect_equal(tail(colnames(cur.all.alt), -nfields.all), paste0("logFC.", new.order))
expect_equal(cur.any, cur.any.alt[,colnames(cur.any)])
expect_equal(cur.all, cur.all.alt[,colnames(cur.all)])
}
# Handles direct character input.
groups2 <- LETTERS[groups]
dim(groups2) <- dim(groups)
re.comb <- combineMarkers(output, groups2)
expect_identical(names(re.comb), LETTERS[as.integer(names(comb.any))])
for (x in seq_along(re.comb)) {
cur1 <- comb.any[[x]]
cur2 <- re.comb[[x]]
g <- as.integer(sub("logFC.", "", tail(colnames(cur1), -nfields.any)))
g2 <- paste0("logFC.", LETTERS[g])
expect_equal(tail(colnames(cur2), -nfields.any), g2)
colnames(cur2) <- colnames(cur1)
expect_equal(cur1, cur2)
}
})
test_that("combineMarkers works with log-transformations", {
login <- lapply(output, FUN=function(x) {
x$p.value <- log(x$p.value)
x
})
for (ptype in c("all", "any")) {
# Log-transforming input.
comb <- combineMarkers(output, groups, pval.type=ptype)
comb.log <- combineMarkers(login, groups, pval.type=ptype, log.p.in=TRUE, log.p.out=FALSE)
expect_equal(comb, comb.log)
# Log-transforming output.
comb.logout <- combineMarkers(output, groups, pval.type=ptype, log.p.out=TRUE)
ref <- lapply(comb, FUN=function(x) {
x$p.value <- log(x$p.value)
x$FDR <- log(x$FDR)
ii <- match(c("p.value", "FDR"), colnames(x))
colnames(x)[ii] <- paste0("log.", colnames(x)[ii])
x
})
ref <- SimpleList(ref)
expect_equal(ref, comb.logout)
# Log-transformed input and output.
comb.log.both <- combineMarkers(login, groups, pval.type=ptype, log.p.in=TRUE)
expect_equal(ref, comb.log.both)
}
})
test_that("combineMarkers works with renamed fields", {
renamed <- lapply(output, FUN=function(x) {
ii <- match(c("p.value", "logFC"), colnames(x))
colnames(x)[ii] <- c("PValue", "LFC")
x
})
comb <- combineMarkers(output, groups)
recomb <- combineMarkers(renamed, groups, pval.field="PValue", effect.field="LFC")
recomb.back <- lapply(comb, FUN=function(x) {
colnames(x) <- sub("LFC", "logFC", colnames(x))
x
})
recomb.back <- SimpleList(recomb.back)
expect_identical(comb, recomb.back)
# Handles the output field.
re.recomb <- combineMarkers(renamed, groups, pval.field="PValue", effect.field="LFC", output.field="logFC")
expect_identical(comb, re.recomb)
# Checking that it runs without problems in pathological cases of name clashes.
crazy.names <- c("p.value", 2:ngroups)
extreme <- combineMarkers(output, array(crazy.names[groups], dim(groups)), output.field="log", log.p.out=TRUE)
expect_identical(sum(colnames(extreme[["2"]])=="log.p.value"), 2L)
})
test_that("combineMarkers correctly returns the full stats", {
stuff <- combineMarkers(output, groups, full.stats=TRUE)
all.groups <- as.character(seq_len(ngroups))
for (x in all.groups) {
for (y in setdiff(all.groups, x)) {
current <- stuff[[x]][,paste0("stats.", y)]
current <- as.data.frame(current)
correspondence <- which(groups[,1]==x & groups[,2]==y)
expect_identical(current, output[[correspondence]][rownames(current),])
}
}
# Respects no flattening.
stuff2 <- combineMarkers(output, groups, full.stats=TRUE, flatten=FALSE)
for (i in seq_along(stuff2)) {
ref <- stuff[[i]][,-(1:4)]
colnames(ref) <- sub("stats\\.", "", colnames(ref))
expect_identical(ref, stuff2[[i]]$each.stats)
}
})
test_that("combineMarkers correctly returns no effects", {
stuff <- combineMarkers(output, groups, effect.field=NULL)
ref <- combineMarkers(output, groups)
all.groups <- as.character(seq_len(ngroups))
for (x in all.groups) {
current <- stuff[[x]]
expect_identical(colnames(current), c("Top", "p.value", "FDR"))
expect_identical(current, ref[[x]][,1:3])
}
})
test_that("combineMarkers works with silly inputs (empty)", {
expect_error(combineMarkers(output[1], groups[0,]), "must be equal")
expect_identical(combineMarkers(output[0], groups[0,]), setNames(SimpleList(), character(0)))
empty <- combineMarkers(lapply(output, FUN=function(x){ x[0,] }), groups)
expect_identical(names(empty), as.character(seq_len(ngroups)))
expect_identical(unname(vapply(empty, nrow, 0L)), integer(ngroups))
expect_equal(unname(vapply(empty, ncol, 0L)), rep(ngroups + 3L, ngroups))
empty.full <- combineMarkers(lapply(output, FUN=function(x){ x[0,] }), groups, full.stats=TRUE)
expect_identical(names(empty), names(empty.full))
expect_identical(unname(vapply(empty.full, nrow, 0L)), integer(ngroups))
expect_equal(unname(vapply(empty.full, ncol, 0L)), rep(ngroups + 3L, ngroups))
# Ignores missing levels entirely.
as.df <- data.frame(factor(groups[,1], levels=seq_len(ngroups+1)), factor(groups[,2]))
ref <- combineMarkers(output, groups)
lost <- combineMarkers(output, as.df)
expect_identical(ref, lost)
})
test_that("combineMarkers works with silly inputs (missing)", {
# Handles NA values in the group specifier.
groups0 <- groups
groups0[1,] <- NA
groups0[2,1] <- NA
groups0[2,2] <- NA
ref <- combineMarkers(output, groups0)
lost <- combineMarkers(output[-(1:2)], groups0[-(1:2),])
expect_identical(ref, lost)
# Handles NA values in the statistics.
output0 <- output
output0[[1]]$p.value <- NA_real_
ref <- combineMarkers(output0, groups)
ref[["1"]]$logFC.2 <- NULL
lost <- combineMarkers(output0[-1], groups[-1,])
expect_identical(ref, lost)
ref <- combineMarkers(output0, groups, pval.type="all")
ref[["1"]]$logFC.2 <- NULL
lost <- combineMarkers(output0[-1], groups[-1,], pval.type="all")
expect_identical(ref, lost)
ref <- combineMarkers(output0, groups, pval.type="some")
ref[["1"]]$logFC.2 <- NULL
lost <- combineMarkers(output0[-1], groups[-1,], pval.type="some")
expect_identical(ref, lost)
})
|