Skip to content

Commit 5fc5acc

Browse files
authored
Update load_markers.py
1 parent 4e5bfa0 commit 5fc5acc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sctools/tools/load_markers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ def load_markers(cell = None, group = None, tech = None, tissue = None, group_co
4242
markers_df['Tissue'].isin(tissue)].copy()
4343

4444

45-
markers_dict = markers_df.groupby('Cell')[group_cols].apply(list).to_dict()
45+
markers_dict = markers_df.groupby(group_cols)['Gene'].apply(list).to_dict()
4646

4747
return markers_df, markers_dict

0 commit comments

Comments
 (0)