Skip to content

Commit de2b02d

Browse files
authored
used only values of absplice columns to compute aggregated max
1 parent bd88453 commit de2b02d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deeprvat/annotations/annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2120,7 +2120,7 @@ def aggregate_and_concat_absplice(
21202120
]
21212121
#### aggregate tissue specific ab splice scores
21222122
ab_splice_res["AbSplice_DNA"] = np.max(
2123-
ab_splice_res[absplice_columns],
2123+
ab_splice_res[absplice_columns].values,
21242124
axis=1,
21252125
)
21262126
ab_splice_res["pos"] = ab_splice_res["pos"].astype(int)

0 commit comments

Comments
 (0)