Created
February 27, 2018 00:44
-
-
Save max-mapper/384ad32d1d6b726a29363adbc8f011d6 to your computer and use it in GitHub Desktop.
read NCBI Blast seqdb sequence database .nin file metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// $ node read.js nt.00.nin | |
var fs = require('fs') | |
var int53 = require('int53') | |
f = process.argv[2] | |
function read (fd, start, end, cb) { | |
var len = end - start + 1 | |
var buf = new Buffer(len) | |
fs.read(fd, buf, 0, len, start, function (err) { | |
cb(err, buf) | |
}) | |
} | |
fs.open(f, 'r', function (err, fd) { | |
read(fd, 0, 1024, function (err, buf) { | |
var offset = 8 | |
var titlen = buf.readUInt32BE(offset) | |
offset += 4 | |
var title = buf.slice(offset, offset + titlen) | |
offset = offset + titlen | |
var datelen = buf.readUInt32BE(offset) | |
offset += 4 | |
var date = buf.slice(offset, offset + datelen) | |
offset = offset + datelen | |
var oidlen = buf.readUInt32BE(offset) | |
offset += 4 | |
var baselen = buf.slice(offset, offset + 8) | |
baselen = int53.readUInt64LE(baselen) | |
console.log(oidlen) | |
// console.log(baselen) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment