You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following error when I try to run the PBMC-scRNA notebook:
/clustergrammer_fun/categories.py in dict_cat(net, define_cat_colors)
131 for inst_full_name in inst_dict:
132
--> 133 inst_name = inst_full_name.split(': ')[1]
134 inst_color = inst_dict[inst_full_name]
135
IndexError: list index out of range
I solved this issue by changing the dict iteration in categories.py
to:
for k, v in inst_dict.items():
inst_name = k
inst_color = v
global_cat_colors[inst_name] = inst_color
The text was updated successfully, but these errors were encountered:
Following error when I try to run the PBMC-scRNA notebook:
I solved this issue by changing the dict iteration in categories.py
to:
The text was updated successfully, but these errors were encountered: