0.1.0 • Published 5 years ago

genbankjs v0.1.0

Weekly downloads
7
License
BSD-2-Clause
Repository
github
Last release
5 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));