Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 983 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 983 Bytes

trait-viz

A javascript library for visalizing trait data stored in a document store. This code base was developd with the biscicol-server API and toolset.

This code was adapted from https://github.com/fullscale/elastic.js

This code-base is meant to be added as sub-module to consuming applications.

Adding this as a sub-module:

cd app
git submodule add https://github.com/biocodellc/trait-viz.git
git commit -am "add trait-viz submodule"

Cloning a project using this sub-module

git clone --recurse-submodules https://github.com/BNHM/AmphibianDiseasePortalNewInterface.git

If you clone and forget the above:

cd trait-viz
git submodule update --init --recursive

updating trait-viiz with latest changes

cd trait-viz
git fetch
git merge

NOTE: I would ideally like to be able to add these javascript libraries dynamically using <script src=""><script> but, unfortunately, i could not get this implementation to work.