Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cgview) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
CGView.js
CGView.js is a Circular Genome Viewing tool for visualizing and interacting with small genomes.
Resources
Install
npm install --save cgview
See Installation Instructions for additional ways to setup CGView.js.
Usage
import CGV from from 'cgview';
cgv = new CGV.Viewer('#my-viewer', {
height: 500,
width: 500,
sequence: {
// The length of the sequence
length: 1000
// Or, you can provide a sequence
// seq: 'ATGTAGCATGCATCAGTAGCTA...'
}
});
// Draw the map
cgv.draw()
See the tutorials for how to add features and plots.
License
CGView.js is distrubuted under the Apache Version 2.0 License.