Skip to content

Commit 5de8564

Browse files
committed
fix label ordering
1 parent 6a71d46 commit 5de8564

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ml_peg/analysis/non_covalent_interactions/ncia_d1200/analyse_ncia_d1200.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def labels() -> list:
4343
List of all system names.
4444
"""
4545
for model in MODELS:
46-
labels_list = [path.stem for path in (CALC_PATH / model).glob("*.xyz")]
46+
labels_list = sorted([path.stem for path in (CALC_PATH / model).glob("*.xyz")])
4747
break
4848
return labels_list
4949

0 commit comments

Comments
 (0)