Skip to content

Commit 1b7f853

Browse files
Fixed two bugs involving plot text
buildPublicClusterNetwork() was not passing plot_title to buildRepSeqNetwork(). buildPublicClusterNetworkByRepresentative() was not passing dist_type, dist_cutoff to .makePlotSubtitle()
1 parent f591634 commit 1b7f853

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

R/public_clusters.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ buildPublicClusterNetwork <- function(
198198
cluster_id_name = "ClusterIDPublic",
199199
color_nodes_by = color_nodes_by,
200200
color_scheme = color_scheme,
201+
plot_title = plot_title,
201202
output_dir = output_dir,
202203
output_name = output_name,
203204
verbose = verbose,
@@ -309,7 +310,9 @@ buildPublicClusterNetworkByRepresentative <- function(
309310
net,
310311
print_plots,
311312
.makePlotTitle(plot_title, "pub_clust_rep"),
312-
.makePlotSubtitle(plot_subtitle, "pub_clust_rep", seq_col),
313+
.makePlotSubtitle(plot_subtitle, "pub_clust_rep", seq_col,
314+
dist_type, dist_cutoff
315+
),
313316
color_nodes_by = color_nodes_by,
314317
color_scheme = color_scheme, verbose = verbose,
315318
...

0 commit comments

Comments
 (0)