Skip to content

Commit 57ceaf2

Browse files
authored
Update logo
Merge pull request #19 from Multiomics-Analytics-Group/update-logo
2 parents 0372536 + 39ff370 commit 57ceaf2

File tree

6 files changed

+5717
-5726
lines changed

6 files changed

+5717
-5726
lines changed

docs/api_examples/scatter_plot.ipynb

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

docs/images/logo/vuecore_logo.png

504 Bytes
Loading

docs/images/logo/vuecore_logo.svg

Lines changed: 1183 additions & 1183 deletions
Loading
-1.17 KB
Loading

docs/images/logo/vuecore_logo_small.svg

Lines changed: 4521 additions & 4530 deletions
Loading

src/vuecore/viz.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from webweb import Web
3232
from wordcloud import STOPWORDS, WordCloud
3333

34-
from . import dendrogram, utils, wgcna
34+
from . import dendrogram, utils_old, wgcna
3535
from .linkers import get_clustergrammer_link
3636
from .translate import hex2rgb, mpl_to_html_image
3737

@@ -1440,7 +1440,7 @@ def get_notebook_network_pyvis(graph, args={}):
14401440
notebook_net.barnes_hut(overlap=0.8)
14411441
notebook_net.from_nx(graph)
14421442
notebook_net.show_buttons(["nodes", "edges", "physics"])
1443-
utils.generate_html(notebook_net)
1443+
utils_old.generate_html(notebook_net)
14441444

14451445
return notebook_net
14461446

@@ -1649,7 +1649,7 @@ def get_network(data, identifier, args):
16491649
args["title"] = identifier
16501650

16511651
if not data.empty:
1652-
if utils.check_columns(data, cols=[args["source"], args["target"]]):
1652+
if utils_old.check_columns(data, cols=[args["source"], args["target"]]):
16531653
if "values" not in args:
16541654
args["values"] = "width"
16551655
data[args["values"]] = 1
@@ -1720,7 +1720,7 @@ def get_network(data, identifier, args):
17201720
nx.set_node_attributes(graph, degrees, "radius")
17211721

17221722
clusters = network_analysis.get_network_communities(graph, args)
1723-
col = utils.get_hex_colors(len(set(clusters.values())))
1723+
col = utils_old.get_hex_colors(len(set(clusters.values())))
17241724
colors = {n: col[clusters[n]] for n in clusters}
17251725
nx.set_node_attributes(graph, colors, "color")
17261726
nx.set_node_attributes(graph, clusters, "cluster")
@@ -1795,7 +1795,7 @@ def get_network(data, identifier, args):
17951795
args["stylesheet"] = stylesheet
17961796
args["layout"] = layout
17971797

1798-
cy_elements, mouseover_node = utils.networkx_to_cytoscape(vis_graph)
1798+
cy_elements, mouseover_node = utils_old.networkx_to_cytoscape(vis_graph)
17991799

18001800
app_net = get_cytoscape_network(cy_elements, identifier, args)
18011801
# args['mouseover_node'] = mouseover_node

0 commit comments

Comments
 (0)