Mercurial > repos > greg > gene_family_classifier
changeset 104:c21d3f7b11a4 draft
Uploaded
author | greg |
---|---|
date | Mon, 27 Feb 2017 11:18:49 -0500 |
parents | 55052911cac3 |
children | 8abf3c06e7e1 |
files | gene_family_classifier.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gene_family_classifier.py Mon Feb 27 11:11:48 2017 -0500 +++ b/gene_family_classifier.py Mon Feb 27 11:18:49 2017 -0500 @@ -85,7 +85,7 @@ def write_html_output(output, title, dir): fh = open(output, 'wb') - fh.write('<html>\n<head><title>%s</title>\n</head>\n<body>\n<p/>\n<ul>\n' % title) + fh.write('<html>\n<head><title>%s</title>\n</head>\n<body>\n<p/>\n<ul>\n' % str(title)) for fname in dir: fh.write('<li><a href="%s">%s</a></li>\n' % (fname, fname)) fh.write('</ul>\n</body>\n</html>\n')