Mercurial > repos > pablocarb > synbiodesign
view toolVisualizer.py @ 11:bce330b97d42 draft
planemo upload commit 58fe26f452c61f1682290f662666043937943b81-dirty
author | pablocarb |
---|---|
date | Tue, 11 Jun 2019 04:04:24 -0400 |
parents | |
children |
line wrap: on
line source
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mar 19 @author: Pablo Carbonell @description: Pathway visualizer. """ import argparse import os from rpviz.main import run def arguments(): parser = argparse.ArgumentParser(description='toolVisualizer: Pathway visualizer. Pablo Carbonell, SYNBIOCHEM, 2019') parser.add_argument('infile', help='Input SBML pathway file.') parser.add_argument('outfile', help='Output HTML file.') return parser def runVisualizer( infile, outfile ): run(infile,outfile) if __name__ == "__main__": parser = arguments() arg = parser.parse_args() assert os.path.exists(arg.infile) runVisualizer( arg.infile, arg.outfile )