myseq-vcf
Version:
Query local or remote Tabix-indexed VCFs by genomic position
13 lines (11 loc) • 352 B
JavaScript
;
function ContigNotInIndexError(message) {
this.name = 'ContigNotInIndexError';
this.message = message || this.name;
this.stack = new Error().stack;
}
ContigNotInIndexError.prototype = Object.create(Error.prototype);
ContigNotInIndexError.prototype.constructor = ContigNotInIndexError;
module.exports = {
ContigNotInIndexError
};