Skip to content

Commit

Permalink
sorting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Kofman committed Dec 25, 2024
1 parent 5b0d874 commit 0b672a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ def combine_coverage_adatas(adata_dict):
dense_adata = dense_adata.join(missing_position_fix, how='inner')
assert(len(dense_adata.columns) == len(all_pos))

dense_adata.columns = sorted(dense_adata.columns)
dense_adata = dense_adata[sorted(dense_adata.columns)]
dense_adata = dense_adata.sort_index()

# Convert the dense matrix to a sparse CSR matrix
Expand Down

0 comments on commit 0b672a0

Please sign in to comment.