-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* minor changes in README * adding minimum version requirement for bokeh: bokeh>=1.4.0
- Loading branch information
1 parent
497cb6a
commit c59e899
Showing
4 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
# BioCRNpyler: Compiling Chemical Reaction Networks from Parts in Diverse Contexts | ||
## Python framework and library that compiles SBML models from simple specifications | ||
# BioCRNPyler — Biomolecular Chemical Reaction Network Compiler | ||
## Python toolbox to create CRN models in SBML for biomolecular mechanisms | ||
|
||
[![Build Status](https://travis-ci.com/BuildACell/BioCRNPyler.svg?branch=master)](https://travis-ci.com/BuildACell/BioCRNPyler) | ||
[![codecov](https://codecov.io/gh/BuildACell/BioCRNPyler/branch/master/graph/badge.svg)](https://codecov.io/gh/BuildACell/BioCRNPyler) | ||
[![PyPI version](https://badge.fury.io/py/biocrnpyler.svg)](https://badge.fury.io/py/biocrnpyler) | ||
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/BuildACell/BioCRNPyler/master?filepath=%2Fexamples%2F) | ||
|
||
BioCRNPyler is a Python package for the creation, manipulation, | ||
BioCRNPyler (pronounced Bio-Compiler) is a Python package for the creation, manipulation, | ||
and study of the structure, dynamics, and functions | ||
of complex biochemical networks. | ||
|
||
- **Website:** http://buildacell.io/BioCRNPyler | ||
- **Mailing list:** TBA | ||
- **Website:** https://github.com/BuildACell/BioCRNPyler | ||
- **Mailing list:** [SBTools Google Group](https://groups.google.com/g/sbtools/) Email: [email protected] | ||
- **Source:** https://github.com/BuildACell/BioCRNPyler | ||
- **Bug reports:** https://github.com/BuildACell/BioCRNPyler/issues | ||
- **Documentation** [biocrnpyler.readthedocs.io](https://readthedocs.org/projects/biocrnpyler/) | ||
- **Slack** Join the #biocrnpyler channel on SBTools slack: Ask on the public SBTools Google group to be added or send a message to one of the maintainers. | ||
|
||
# Example 1: Building Simple CRNs by Hand | ||
|
||
|
@@ -95,18 +97,21 @@ Install with all optional dependencies:: | |
$ pip install biocrnpyler[all] | ||
|
||
Further details about the installation process can be found in the [BioCRNPyler wiki](https://github.com/BuildACell/BioCRNPyler/wiki#installation). | ||
|
||
# Bugs | ||
|
||
Please report any bugs that you find [here](https://github.com/BuildACell/BioCRNPyler/issues). | ||
Or, even better, fork the repository on [GitHub](https://github.com/BuildACell/BioCRNPyler), | ||
and create a pull request (PR). We welcome all changes, big or small, and we | ||
will help you make the PR if you are new to `git` (just ask on the issue and/or | ||
see `docs/CONTRIBUTING.md`). | ||
see [contribution guidelines](https://github.com/BuildACell/BioCRNPyler/blob/master/docs/CONTRIBUTING.md)). | ||
|
||
# Versions | ||
|
||
BioCRNpyler versions: | ||
|
||
* 1.0.0 (latest stable release): To install run `pip install biocrnpyler` | ||
* 0.9.0 (beta release): To install run `pip install biocrnpyler==0.9.0` | ||
* 0.2.1 (alpha release): To install run `pip install biocrnpyler==0.2.1` | ||
|
||
# License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
[metadata] | ||
long_description_content_type = text/markdown | ||
[aliases] | ||
test=pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
"numpy", | ||
"matplotlib", | ||
"networkx", | ||
"bokeh", | ||
"bokeh>=1.4.0", | ||
"fa2" | ||
], | ||
}, | ||
|