Skip to content

Commit

Permalink
missed argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
sjspielman committed Nov 11, 2024
1 parent 627af56 commit 80132e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ run_eval <- function(ind.lib) {
summarise(avgSil = mean(silhouette_width), avgPur = mean(purity)) %>%
data.frame()
stability_df <- rOpenScPCA::calculate_stability(
x = seu, clusters = clusID.df,
x = seu, cluster_df = clusID.df,
pc_name = "Xpca_", algorithm = "leiden",
resolution = 1.0, objective_function = "modularity",
seed = 10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ run_eval <- function(ind.lib) {
summarise(avgSil = mean(silhouette_width), avgPur = mean(purity)) %>%
data.frame()
stability_df <- rOpenScPCA::calculate_stability(
x = seu, clusters = clusID.df,
x = seu, cluster_df = clusID.df,
pc_name = "Xpca_", algorithm = "leiden",
resolution = 1.0, objective_function = "modularity",
seed = 10
Expand Down

0 comments on commit 80132e6

Please sign in to comment.