summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHui Lan <lanhui@zjnu.edu.cn>2020-03-26 19:28:00 +0800
committerHui Lan <lanhui@zjnu.edu.cn>2020-03-26 19:28:00 +0800
commitb67e495f7820e0c9c32f2a14361709cfbb3ca2ea (patch)
tree9f232a4c7ef2d4c0225b6f3eca74bda47463b1de
parentc689d44bfae6cf9803fde7105f0efdaf405963c5 (diff)
html_network.py: don't show intermediate result
-rw-r--r--Code/html_network.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Code/html_network.py b/Code/html_network.py
index e4f1dd3..22912d0 100644
--- a/Code/html_network.py
+++ b/Code/html_network.py
@@ -691,7 +691,6 @@ curr_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
s = '<h2>All genes considered</h2>'
s += '<p>Last updated at %s. A total of %d edges.</p>' % (curr_time, total_num_edges)
for n in sorted(G.nodes()): # for each node in the network, find its neighbours.
- print('[html_network.py] Check %s' % (n))
t = n.split()[0] + '.html'
filepath = os.path.join(DIR_NAME, t)