Open fbrundu opened 6 years ago
I solved by installing graphviz and pygraphviz (homebrew and pip):
brew install graphviz
pip install --install-option="--include-path=/usr/local/include/" --install-option="--library-path=/usr/local/lib/" pygraphviz
Actually I just found that works only with some list of genes and not with others..
It works with
c.draw([['GRIA1', 'SLC1A3']]);
but not with
c.draw(['GRIA1', 'SLC1A3']);
Hi, I receive the following error while trying to draw a list of genes, probably due to changes in the underlying matplotlib API:
c
is an UnrootedGraph initialized through Ayasdi.Versions
scTDA==0.97 matplotlib==2.2.2 networkx==2.1
Francesco