Brian Lee
Brian Lee
Hi @SeppeDeWinter and @LILI-0000-0002-8173-7367 I am having the exact same error. I used the same code as Li Li's first post. When I compare the actual values for a specific...
Hi @SeppeDeWinter and @LILI-0000-0002-8173-7367 I found out what's wrong! The scplus_obj.uns['eRegulon_AUC'] dictionary has the cell indices sorted in alphabetical order that doesn't match the scplus_obj.metadata_cell. ``` import pandas as pd...
You might want to see my response on [Issue#287](https://github.com/aertslab/scenicplus/issues/287) I had the same issue. In short try: ``` import pandas as pd import anndata import sklearn auc_key = 'eRegulon_AUC' signature_keys...
Hi @SeppeDeWinter and @Umaarasu I found out the issue. When you concat the adata and TF expression you make adata_all, but you never assign it back to adata. You can...