Skip to content

Commit

Permalink
DEV: Update VOG count threshold fix #5
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Jun 13, 2024
1 parent 6a7a2b1 commit 1436a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reneo/workflow/scripts/reneo_utils/component_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_components(**kwargs):

if (
vogs_present
and len(vogs_found) >= kwargs['nvogs']
and (kwargs["unitig_names"][unitig] in kwargs["circular"] or len(vogs_found) >= kwargs['nvogs'])
and kwargs["edges_lengths"][kwargs["unitig_names"][unitig]] > kwargs["minlength"]
):
pruned_vs[i] = component
Expand Down

0 comments on commit 1436a37

Please sign in to comment.