We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ccdda2 commit 3c77e4dCopy full SHA for 3c77e4d
portal-backend/depmap/data_page/temp_update_paralogs_avail.py
@@ -5,7 +5,8 @@
5
def get_paralogs_summary():
6
paralogs_df = data_access.get_subsetted_df_by_labels("paralogs_25q2")
7
8
- paralogs = paralogs_df.reset_index(names=["ModelID"])
+ # The data_access interface returns a transposed matrix, so let's transpose it back before reseting the index
9
+ paralogs = paralogs_df.T.reset_index(names=["ModelID"])
10
11
paralogs_summary = (
12
paralogs[["ModelID"]]
0 commit comments