https://github.com/intermine/bluegenes-tissue-expression-visualizer
Visualization for BlueGenes of tissue expression
https://github.com/intermine/bluegenes-tissue-expression-visualizer
bluegenes bluegenes-tool gsoc-2019
Last synced: 21 days ago
JSON representation
Visualization for BlueGenes of tissue expression
- Host: GitHub
- URL: https://github.com/intermine/bluegenes-tissue-expression-visualizer
- Owner: intermine
- License: mit
- Created: 2019-05-24T13:08:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T10:27:02.000Z (about 4 years ago)
- Last Synced: 2024-11-10T04:24:33.675Z (7 months ago)
- Topics: bluegenes, bluegenes-tool, gsoc-2019
- Language: JavaScript
- Size: 580 KB
- Stars: 4
- Watchers: 12
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Bluegenes Tissue Expression VisualizerBlueGenes Tissue Expression Visualizer is a tool made for [BlueGenes](http://bluegenes.apps.intermine.org) following BlueGenes Tool API. It can help users (biologists) to visualize `tissue expression` and `expression by stage` with help of expression charts. It can also be used as standalone tool to integrate in any web application.
# NPM Package
[@intermine/bluegenes-tissue-expression-visualizer](https://www.npmjs.com/package/@intermine/bluegenes-tissue-expression-visualizer)
### To set up locally for development
1. Clone the repo
2. `cd bluegenes-tissue-expression-visualizer` and then `npm install` to install dependencies.All of the editable source files for css and js are in `src`. To bundle for prod, run the following commands:
#### CSS
Assuming [less](http://lesscss.org/) is installed globally:
```
npm run less
```#### JS
Assuming [webpack](https://webpack.js.org/) is installed globally:
##### Single build:
```
npm run build
```##### Applied Coding practices / ESLint Rules:
- _indent_: use __tab (2 space tab)__ instead of spaces to not get an error.
- _linebreak-style_: use __\n__ for a newline, if you're on windows, configure it in your editor settings.
- _quotes_: use __single quote__ instead of double quote.
- _semi_: use _semi colon_ at end of each statement / expression / function definition.
- _comma-dangle_: do not use dangling commas i.e. extra comma at the end of object values, function args, etc.). More about this [here](https://eslint.org/docs/rules/comma-dangle).
- More pre-configured rules from __eslint:recommended__ you must follow to not get errors [here](https://eslint.org/docs/rules/).##### Developing:
Run each of these commands in separate terminals:To run a development build of the project at http://localhost:3456
```bash
npm run dev
```