Skip to content

Commit

Permalink
doc: update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed May 31, 2022
1 parent 383eac9 commit 18484a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pugutils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -917,9 +917,9 @@ pub fn get_num_molecules(
if comp_verts.len() > 1 {
// the current parsimony resolution algorithm
// can become slow for connected components that
// are very large. For components with > 1000 vertices
// (this should be _very_ rare) we will instead resolve
// the UMIs in the component using a simpler algorithm.
// are very large. For components with > large_graph_thresh
// vertices (this should be _very_ rare) we will instead
// resolve the UMIs in the component using a simpler algorithm.
if comp_verts.len() > large_graph_thresh {
get_num_molecules_large_component(
g,
Expand Down

0 comments on commit 18484a3

Please sign in to comment.