Skip to content

Commit

Permalink
RunPHATE: adapt t to integer
Browse files Browse the repository at this point in the history
  • Loading branch information
hermespara committed Sep 25, 2024
1 parent 96c41eb commit eefd6b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/Seurat-function.R
Original file line number Diff line number Diff line change
Expand Up @@ -1363,7 +1363,7 @@ RunPHATE.default <- function(object, assay = NULL,
knn = as.integer(knn),
decay = as.integer(decay),
n_landmark = as.integer(n_landmark),
t = t,
t = ifelse(t == "auto", as.character(t), as.integer(t)),
gamma = as.numeric(gamma),
n_pca = as.integer(n_pca),
knn_dist = as.character(knn_dist),
Expand Down

0 comments on commit eefd6b4

Please sign in to comment.