Skip to content

Commit

Permalink
allow selecting order by full string including distance/clustering type
Browse files Browse the repository at this point in the history
  • Loading branch information
ivagljiva committed Sep 10, 2024
1 parent 92387d7 commit 80ed0ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/anvi-export-items-order
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def main(args):
items_order_of_interest = None
for item_order in item_order_names:
item_order_name, item_order_distance, item_order_clustering = item_order.split(':')
if order_name == item_order_name:
if order_name == item_order_name or order_name == item_order:
items_order_of_interest = item_orders_dict[item_order]

if not items_order_of_interest:
Expand Down

0 comments on commit 80ed0ba

Please sign in to comment.