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

Examples of org.broadinstitute.gatk.engine.io.stubs.SAMFileWriterStub.processArguments()


     * @param engine the engine
     * @return a SAMFileWriter with the correct options set
     */
    public static SAMFileWriter createSAMFileWriter(final String file, final GenomeAnalysisEngine engine) {
        final SAMFileWriterStub output = new SAMFileWriterStub(engine, new File(file));
        output.processArguments(engine.getArguments());
        return output;
    }

    /**
     *  As {@link #createSAMFileWriter(String, org.broadinstitute.gatk.engine.GenomeAnalysisEngine)}, but also sets the header
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.