Coder Social home page Coder Social logo

myseq-vcf's Introduction

Build Status

MySeq-VCF

myseq-vcf is a browser and node-compatible library for querying Tabix-indexed VCF files by genomic coordinates. Both local and remote files are supported. Queries will only request the necessary blocks of the bgzip-compressed VCF file, enabling efficient targeted analysis of whole-genome-scale VCF files.

Usage

The primary entry point is the VCFSource class, which expects a TabixIndexedFile as an argument along with an optional ReferenceGenome object. If a specific reference is not provided, VCFSource will attempt to infer the reference from the "##reference" field in the VCF header or the "##contig" entries in the header. The TabixIndexedFile class expects file readers for the source and index files. Both a LocalFileReader and RemoteFileReader are provided.

For example:

let source = new VCFSource(
  new TabixIndexedFile(
    new RemoteFileReader('http://path/to/vcf.gz'),
    new RemoteFileReader('http://path/to/vcf.gz.tbi'),
  ),
);
source.variants('chr1', 1, 200).then((variants) => {
  variants.forEach(variant => console.log(variant.toString()));
});

VCFSource provides query methods for all variants overlapping a region and for specific variant (position and alleles). That latter supports synthesizing variants with REF/REF genotypes. See the inline documentation for more detail.

myseq-vcf's People

Contributors

mlinderm avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.