Mercurial > repos > iuc > macs2
view dir2html.py @ 39:28fb1ed09935 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 45a64d82dfada34d826be98a1f7a0657f9148d59
author | iuc |
---|---|
date | Sat, 30 May 2015 22:48:19 -0400 |
parents | 9c157b556c33 |
children | e04fc51ee5e1 |
line wrap: on
line source
#!/usr/bin/env python import os import sys from xml.sax.saxutils import escape def make_table( directory ): ret = ['<table class="fileList">\n'] for file in os.listdir( directory ): ret.append('<tr><td class="file"><a href="%s">%s</a></td></tr>\n' % ( file, escape(file).replace( 'MACS2_', '' ) )) ret.append('</table>') return ''.join(ret) def make_html( directory, stderr ): return '\n'.join(['<html>' '<head>', ' <title>Additional output created by MACS2</title>', ' <style type="text/css">', ' table.fileList { text-align: left; }', ' td.directory { font-weight: bold; }', ' td.file { padding-left: 4em; }', ' </style>', '</head>', '<body>', '<h1>Additional Files:</h1>', make_table( directory ), '<h3>Messages from MACS2:</h3>', stderr.read().replace('\n', '<br>'), '</body>', '</html>']) if __name__ == '__main__': if len(sys.argv) == 3: directory_path = sys.argv[1] stderr = open( sys.argv[2] ) print make_html( directory_path, stderr ) else: sys.exit( 'Two parameter expected: directory path and stderr path' )