mirror of
https://github.com/johrpan/geposan.git
synced 2025-10-26 18:57:25 +01:00
proximity: Remove use_positions
This commit is contained in:
parent
cfc5e7a6bf
commit
7bd63aa6d3
2 changed files with 6 additions and 15 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue