Skip to content

Commit

Permalink
Fix --single-step-clustering misspelled in cluster warning (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynbez authored Oct 31, 2023
1 parent 98406dd commit fa6c093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workflow/Cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void setClusterAutomagicParameters(Parameters& par) {
}
if (par.singleStepClustering == false && par.clusteringMode == Parameters::CONNECTED_COMPONENT) {
Debug(Debug::WARNING) << "Connected component clustering produces less clusters in a single step clustering.\n"
<< "Please use --single-step-cluster";
<< "Please use --single-step-clustering";
}
if (par.PARAM_CLUSTER_STEPS.wasSet == false) {
par.clusterSteps = setAutomaticIterations(par.sensitivity);
Expand Down

0 comments on commit fa6c093

Please sign in to comment.