https://github.com/ranking-agent/gamma-viewer
https://github.com/ranking-agent/gamma-viewer
ncats-translator
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ranking-agent/gamma-viewer
- Owner: ranking-agent
- License: mit
- Archived: true
- Created: 2020-04-24T14:55:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T16:22:12.000Z (about 1 year ago)
- Last Synced: 2025-09-18T04:51:11.530Z (21 days ago)
- Topics: ncats-translator
- Language: JavaScript
- Homepage:
- Size: 4.78 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ARCHIVED: This tool is not being updated anymore and is on an old version of TRAPI.
# Gamma Viewer
Upload a Translator standard message into a jupyter notebook and view it in a useful analytic user interface.
## Installation
```bash
pip install gamma-viewer
```## Local Setup
Activate your python environment of choice.
This package also requires you have nodejs and npm installed.
```bash
git clone git@github.com:ranking-agent/gamma-viewer.git
cd gamma-viewer
pip install -e .
jupyter nbextension install --py --symlink --sys-prefix gamma_viewer
jupyter nbextension enable --py --sys-prefix gamma_viewerjupyter notebook
```## Usage
```python
from gamma_viewer import GammaViewer
from IPython.display import display
import jsonwith open('translator_standard_message.json', 'r') as f:
res = json.load(f)view = GammaViewer(props={"data":res})
display(view)
```