Mercurial > repos > mkh > ips5
view interproscan5/create_index.py @ 8:f2153ec1ccfd draft
Uploaded
author | mkh |
---|---|
date | Fri, 05 Feb 2016 13:18:41 -0500 |
parents | fe8e43a26870 |
children |
line wrap: on
line source
#!/usr/bin/env python import os import sys o = open(sys.argv[1], 'w+') o.write('<html> <body> <h1> InterProScan result summary page </h1> <ul>') for filename in [f for f in os.listdir(sys.argv[2]) if os.path.isfile(os.path.join(sys.argv[2], f))]: o.write('<li><a href="%s"> %s </a></li>' % (filename, os.path.splitext(filename)[0])) o.write('</ul></body></html>') o.close()