npm install fastabiojs-io-fasta
----------------





```
npm install biojs-io-fasta
Use in your browser
-------------------
Download a compiled version for browser use.
or link to a CDN version
``
* You can find a JSBin to play around with it.
* Remember that you need CORS to download files from other servers on the web.
Parsing
------
``
var Fasta = require('biojs-io-fasta');
``
Fasta.read(url, function(seqs) { }
function is your async callback.
``
var seqs = Fasta.parse(str);
Writing
------
``
var text = Fasta.export(seqs);
Sequence object
---------------
``
{
seq: "ABC",
name: "awesome seq",
id: "unique id"
}
Develop
--------
```
npm run build-browser
License
--------
Apache 2