proximity: Remove use_positions

This commit is contained in:
Elias Projahn 2021-11-14 17:21:39 +01:00
parent cfc5e7a6bf
commit 7bd63aa6d3
2 changed files with 6 additions and 15 deletions

View file

@ -33,18 +33,15 @@ analyze <- function(preset, progress = NULL) {
# - `score` Score for the gene between 0.0 and 1.0.
methods <- list(
"clusteriness" = clusteriness,
"correlation" = correlation,
"proximity" = proximity,
"neural" = neural,
"clusteriness_positions" = function(...) {
clusteriness(..., use_positions = TRUE)
},
"correlation" = correlation,
"correlation_positions" = function(...) {
correlation(..., use_positions = TRUE)
},
"proximity_positions" = function(...) {
proximity(..., use_positions = TRUE)
},
"proximity" = proximity,
"neural" = neural,
"neural_positions" = function(...) {
neural(..., use_positions = TRUE)
}