Skip to content

Commit

Permalink
<- to = in function
Browse files Browse the repository at this point in the history
  • Loading branch information
willgryan committed Jun 1, 2024
1 parent 8eca762 commit aa9cd61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/generate_themes.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ generate_themes <-
cosine_dissimilarity() %>%
stats::hclust(method = hclust_method)

clustering <- clustering %>%
clustering = clustering %>%
dplyr::mutate(Cluster = factor(.data$Cluster, levels = clust2$labels[clust2$order])) %>%
tidyr::separate(
.data$UniqueID,
Expand All @@ -85,7 +85,7 @@ generate_themes <-
) %>%
dplyr::inner_join(PAVER_result$goterms_df, by = "GOID")

avg_cluster_embeddings <- avg_cluster_embeddings %>%
avg_cluster_embeddings = avg_cluster_embeddings %>%
dplyr::mutate(Cluster = factor(.data$Cluster, levels = clust2$labels[clust2$order]))

#Compute the MDS of the average embedding matrix
Expand Down

0 comments on commit aa9cd61

Please sign in to comment.