Skip to content
Snippets Groups Projects
Commit 466069c0 authored by Gilquin's avatar Gilquin
Browse files

fix: remove unused option

useless n.start option in FindClusters when algorithm=4
parent e24088c8
No related branches found
No related tags found
No related merge requests found
...@@ -155,7 +155,7 @@ Sobject <- FindNeighbors( ...@@ -155,7 +155,7 @@ Sobject <- FindNeighbors(
# apply Leiden clustering algorithm for several resolutions # apply Leiden clustering algorithm for several resolutions
res_vec <- seq(0.1, 1, 0.05) res_vec <- seq(0.1, 1, 0.05)
Sobject <- FindClusters( Sobject <- FindClusters(
Sobject, algorithm = 4, resolution = res_vec, n.start = 100, n.iter = 100, Sobject, algorithm = 4, resolution = res_vec, n.iter = 100,
random.seed = 666 random.seed = 666
) )
......
...@@ -155,7 +155,7 @@ Sobject <- FindNeighbors( ...@@ -155,7 +155,7 @@ Sobject <- FindNeighbors(
# apply Leiden clustering algorithm for several resolutions # apply Leiden clustering algorithm for several resolutions
res_vec <- seq(0.1, 1, 0.05) res_vec <- seq(0.1, 1, 0.05)
Sobject <- FindClusters( Sobject <- FindClusters(
Sobject, algorithm = 4, resolution = res_vec, n.start = 100, n.iter = 100, Sobject, algorithm = 4, resolution = res_vec, n.iter = 100,
random.seed = 666 random.seed = 666
) )
......
...@@ -155,7 +155,7 @@ Sobject <- FindNeighbors( ...@@ -155,7 +155,7 @@ Sobject <- FindNeighbors(
# apply Leiden clustering algorithm for several resolutions # apply Leiden clustering algorithm for several resolutions
res_vec <- seq(0.1, 1, 0.05) res_vec <- seq(0.1, 1, 0.05)
Sobject <- FindClusters( Sobject <- FindClusters(
Sobject, algorithm = 4, resolution = res_vec, n.start = 100, n.iter = 100, Sobject, algorithm = 4, resolution = res_vec, n.iter = 100,
random.seed = 666 random.seed = 666
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment