Metadata-Version: 2.1
Name: sb2l
Version: 0.1.2
Summary: sb2l Translates the biological models written in SBML into LaTeX code to be compiled and read by human eye
Home-page: https://github.com/X-Jiang-bioe/sb2l
Author: Xieergai Jiang, Herbert Sauro
Author-email: jiangxieergai@gmail.com
License: MIT
Download-URL: https://github.com/X-Jiang-bioe/sb2l/archive/v_0.1.2.tar.gz
Keywords: SBML,LaTeX,Converter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: pylatex
Requires-Dist: python-libsbml

# sb2l

### Description ###

Translates biological models written in SBML into LaTeX code to be compiled and read by human eye

### Dependencies ###

The current version runs 1.3.1 version of PyLaTeX

For PDF creation functionality, either `latexmk` or `pdflatex` needs to be installed on the computer

### How to Use ###
The following structure gives a LaTeX string that can be copied to a online compiler like `Overleaf`:
```
import sb2l
latexStr = sb2l.s2latex(sbmlStringOrFile)
```
If using with Tellurium or Antimony: 
```
import sb2l
latexStr = sb2l.s2latex(model_name.getSBML())
```
For making PDF files (The filepath must NOT have a .pdf or .tex suffix)
```
import sb2l
filepath = "/Users/Username/Desktop/theDesiredName" #[NOTICE: no ".anything"]
sb2l.s2latex(sbmlStringOrFile, filepath);
```
### License ###

MIT License

Copyright (c) 2019

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:



