diff options
-rw-r--r-- | Code/html_network.py | 1 |
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)
|