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
This has to do with the way _geneactivity.py iterates over the feature names from the anndata object. By looking at the code, I saw that line = line.split('_') tries to separate diverse string fields, but each line variable in my case is:
I tried to tweak the code and separate myself into starting position and ending position for each feature to create the raw_adata_features dictionary, but If I do this I receive an empty gene_activity_X matrix later on. I am using the same GTF file as in the example gencode.v36.annotation.gtf.
Can you help me with this? Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I am getting the following error when I run epi.tl.geneactivity():
This has to do with the way
_geneactivity.py
iterates over the feature names from the anndata object. By looking at the code, I saw thatline = line.split('_')
tries to separate diverse string fields, but eachline
variable in my case is:So there is nothing to split by
'_'
character.I tried to tweak the code and separate myself into starting position and ending position for each feature to create the
raw_adata_features
dictionary, but If I do this I receive an empty gene_activity_X matrix later on. I am using the same GTF file as in the examplegencode.v36.annotation.gtf
.Can you help me with this? Thanks!
The text was updated successfully, but these errors were encountered: