We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968126a commit c4f3a3fCopy full SHA for c4f3a3f
src/mavedb/lib/validation/dataframe/calibration.py
@@ -74,7 +74,7 @@ def validate_and_standardize_calibration_classes_dataframe(
74
).reset_index(drop=True)
75
76
for c in column_mapping:
77
- if c == index_column.lower():
+ if c in {calibration_variant_column_name, hgvs_nt_column, hgvs_pro_column}:
78
validate_variant_column(standardized_classes_df[c], column_mapping[c] == index_column)
79
validate_index_existence_in_score_set(db, score_set, standardized_classes_df[c], index_column)
80
elif c == calibration_class_column_name:
0 commit comments