Open zonglunli7515 opened 5 years ago
Do you get an exception message or something else? If you can also copy paste the error message here, we can debug it more easily.
Do you get an exception message or something else? If you can also copy paste the error message here, we can debug it more easily.
Many thanks for your quick reply! Unfortunately , no visible exception...
My code is as follows:
import velocyto as vcy
import numpy as np
import scanpy as sc
import anndata
vlm = vcy.VelocytoLoom("path of DentateGyrus.loom")
S = vlm.S
S=S.transpose()
adata = anndata.AnnData(S)
print(adata.X)
print(adata.obs)
print(adata.var)
sc.pp.neighbors(adata, n_neighbors=100)
adata.uns['iroot'] = 0
print(adata.uns)
sc.tl.dpt(adata, n_branchings=2)
sc.pl.diffmap(adata, color='dpt_pseudotime', projection='2d')
error message (a number of warnings as well, taking up lots of lines and I have no idea of how to include all of them here...) :
The Numba parallel error also occurred to me.
I also got this same ValueError (and the numba warnings too)
This issue is still persistent. I've created a colab notebook that shows the issue on a dataset we subsample to 6000 cells:
https://colab.research.google.com/drive/1QrnDFZ7nDNOLx9gr92eknhKShd2aTIdN
@gokceneraslan can you please throw a "bug" tag on this issue so it gets put in the queue?
Here's the AnnData
object which will reproduce the error if you call: sc.tl.dpt(adata, n_branchings=N)
where N > 3.
@falexwolf, maybe you could help with diagnosis here?
Hi everyone, I am having the same issue, with the exact same traceback. Was this ever solved or addressed?
A very very strange issue:
I would want to visualize a huge dataset (10000+, 20000+). However, sc.tl.dpt(adata, n_branchings=2) doesn't work. If I happened to select a smaller subgroup, it might work but not all the time.
Thanks in advance for your help.
Allen