Package org.broadinstitute.gatk.engine.io.stubs

Examples of org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub


                storage = new SAMFileWriterStorage((SAMFileWriterStub)stub,file);
            else
                storage = new SAMFileWriterStorage((SAMFileWriterStub)stub);
        }
        else if(stub instanceof VariantContextWriterStub) {
            VariantContextWriterStub vcfWriterStub = (VariantContextWriterStub)stub;
            if( file != null )
                storage = new VariantContextWriterStorage(vcfWriterStub,file);
            else
                storage = new VariantContextWriterStorage(vcfWriterStub);
        }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub

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.