Skip to content

Commit

Permalink
fix: do not infer features_list from df
Browse files Browse the repository at this point in the history
  • Loading branch information
ireneisdoomed committed Feb 13, 2025
1 parent c388ff5 commit c635e18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gentropy/dataset/l2g_prediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def from_credible_set(
.select("studyLocusId")
.join(feature_matrix._df, "studyLocusId")
.filter(f.col("isProteinCoding") == 1)
)
),
features_list=l2g_model.features_list,
)
.fill_na()
.select_features(l2g_model.features_list)
Expand Down

0 comments on commit c635e18

Please sign in to comment.