geposan/R/correlation.R

80 lines
2.6 KiB
R
Raw Normal View History

2021-10-19 13:39:55 +02:00
# Compute the mean correlation coefficient comparing gene distances with a set
# of reference genes.
2021-10-21 14:26:03 +02:00
correlation <- function(preset, progress = NULL) {
species_ids <- preset$species_ids
gene_ids <- preset$gene_ids
2021-10-19 13:39:55 +02:00
reference_gene_ids <- preset$reference_gene_ids
2021-10-21 17:25:44 +02:00
cached("correlation", c(species_ids, gene_ids, reference_gene_ids), {
# Prefilter distances by species.
distances <- geposan::distances[species %chin% species_ids]
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
# Tranform data to get species as rows and genes as columns. We
# construct columns per species, because it requires fewer iterations,
# and transpose the table afterwards.
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
data <- data.table(gene = gene_ids)
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
# Make a column containing distance data for each species.
for (species_id in species_ids) {
species_distances <- distances[
species == species_id,
.(gene, distance)
]
2021-10-19 15:03:10 +02:00
2021-10-21 17:25:44 +02:00
data <- merge(data, species_distances, all.x = TRUE)
setnames(data, "distance", species_id)
}
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
# Transpose to the desired format.
data <- transpose(data, make.names = "gene")
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
if (!is.null(progress)) progress(0.33)
2021-10-21 17:25:44 +02:00
# Take the reference data.
reference_data <- data[, ..reference_gene_ids]
2021-10-21 17:25:44 +02:00
# Perform the correlation between all possible pairs.
results <- stats::cor(
data[, ..gene_ids],
reference_data,
use = "pairwise.complete.obs",
method = "spearman"
)
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
results <- data.table(results, keep.rownames = TRUE)
setnames(results, "rn", "gene")
2021-10-21 17:25:44 +02:00
# Remove correlations between the reference genes themselves.
for (reference_gene_id in reference_gene_ids) {
column <- quote(reference_gene_id)
results[gene == reference_gene_id, eval(column) := NA]
}
2021-10-21 17:25:44 +02:00
if (!is.null(progress)) progress(0.66)
2021-10-19 15:03:10 +02:00
2021-10-21 17:25:44 +02:00
# Compute the final score as the mean of known correlation scores.
# Negative correlations will correctly lessen the score, which will be
# clamped to zero as its lower bound. Genes with no possible
# correlations at all will be assumed to have a score of 0.0.
2021-10-21 17:25:44 +02:00
compute_score <- function(scores) {
score <- mean(scores, na.rm = TRUE)
2021-10-19 15:03:10 +02:00
2021-10-21 17:25:44 +02:00
if (is.na(score) | score < 0.0) {
score <- 0.0
}
score
}
2021-10-19 13:39:55 +02:00
2021-10-21 17:25:44 +02:00
results[,
score := compute_score(as.matrix(.SD)),
.SDcols = reference_gene_ids,
by = gene
]
2021-10-21 17:25:44 +02:00
results[, .(gene, score)]
})
2021-10-19 13:39:55 +02:00
}