Package org.broadinstitute.gatk.tools.walkers.na12878kb.core

Examples of org.broadinstitute.gatk.tools.walkers.na12878kb.core.NA12878DBArgumentCollection


    private Iterator<VCFVariant> getFeature() throws IOException {
        return source.getFeatures(chr, start, end);
    }

    private int resetDB() throws Exception {
        NA12878DBArgumentCollection args = new NA12878DBArgumentCollection(dbSpecPath);
        NA12878KnowledgeBase kb = new NA12878KnowledgeBase(null, args);

        List<WriteResult> writeResults = kb.removeCall(mvc);
        kb.close();
        int errCount = 0;
View Full Code Here


                log.error("VariantReviewPlugin requires Java 7 or higher. This plugin will be disabled");
                return;
            }
            //Test that we can load this class, plugin loader will catch the exception and
            //not load plugin if it can't be loaded
            NA12878DBArgumentCollection col = new NA12878DBArgumentCollection();
            initMenuItems();

            TrackLoader.registerHandler(VARIANT_DB_EXT, new TrackLoadHandler());
        }
    }
View Full Code Here

     * @param mvc
     * @return
     */
    static String addCall(String dbSpecPath, MongoVariantContext mvc) {

        NA12878DBArgumentCollection args = new NA12878DBArgumentCollection(dbSpecPath);

        String errorMessage = null;
        NA12878KnowledgeBase kb = null;
        try {
            kb = new NA12878KnowledgeBase(null, args);
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.tools.walkers.na12878kb.core.NA12878DBArgumentCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.