Skip to content

Commit

Permalink
Fix ordering order by guide
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmero committed May 31, 2024
1 parent c5e5eb4 commit be8fc4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/collate_counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def main():
else:
result_df = pd.merge(result_df, df, how='outer', on='guide')

new_index = order_by_index(result_df.index, index_natsorted(df['guide']))
new_index = order_by_index(result_df.index, index_natsorted(result_df['guide']))
result_df = result_df.reindex(index=new_index)

# write to stdout
Expand Down

0 comments on commit be8fc4e

Please sign in to comment.