Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yochannah/gene-expression-graph
A pure JS & web service version of https://github.com/intermine/intermine/blob/beta/bio/webapp/resources/webapp/model/geneExpressionAtlasDiseasesDisplayer.jsp
https://github.com/yochannah/gene-expression-graph
Last synced: 11 days ago
JSON representation
A pure JS & web service version of https://github.com/intermine/intermine/blob/beta/bio/webapp/resources/webapp/model/geneExpressionAtlasDiseasesDisplayer.jsp
- Host: GitHub
- URL: https://github.com/yochannah/gene-expression-graph
- Owner: yochannah
- Created: 2015-08-17T17:10:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-19T08:52:53.000Z (over 9 years ago)
- Last Synced: 2024-10-12T10:13:02.712Z (3 months ago)
- Language: JavaScript
- Size: 1.11 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
Hack-ey js-specific version of [this gene expression graph](https://github.com/intermine/intermine/blob/beta/bio/webapp/src/org/intermine/bio/web/model/GeneExpressionAtlasTissuesExpressions.java).Demo at http://yochannah.github.io/gene-expression-graph/
### Using the project
See index.html for a basic demo / init instructions.### Running the project
If you want to modify the script and let Browsersync live-reload your changes, run:
$ gulp dev
If you just want a one-off build, gulp's default task will do it:
$ gulp
Both tasks will compile your less (make sure to prefix partials with `_`, e.g. `_button.less`) and bundle up your js, then move it to the dist folder.
#### Testing
Run `$ mocha` (to run the suite once) or `$ mocha --watch` (to re-test when you make changes).