0.0.1 • Published 9 years ago

genbank v0.0.1

Weekly downloads
8
License
BSD
Repository
github
Last release
9 years ago

BSD-licensed JavaScript parser for the GenBank Flat File (GBF) format.

API

parseGBF

TODO

gbfToDisplayList

TODO

Usage

genbank = require('./genbank');

var sample = require('fs').readFileSync('sample.gbf') + '';
var gbf = genbank.parseGBF(sample);

console.log(JSON.stringify(gbf, null, 2));
console.log(JSON.stringify(genbank.gbfToDisplayList(gbf), null, 2));