comparison create_index.py @ 0:82547f0d3a29 draft

Initial interproscan5 wrapper.
author bgruening
date Tue, 08 Oct 2013 09:18:17 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:82547f0d3a29
1 #!/usr/bin/env python
2
3 import os
4 import sys
5
6 o = open( sys.argv[1], 'w+' )
7
8
9 o.write('<html> <body> <h1> InterProScan result summary page </h1> <ul>' )
10
11 for filename in [f for f in os.listdir( sys.argv[2] ) if os.path.isfile( os.path.join( sys.argv[2], f) )]:
12 o.write( '<li><a href="%s"> %s </a></li>' % ( filename, os.path.splitext( filename )[0] ) )
13
14 o.write( '</ul></body></html>' )
15 o.close()