Package net.sf.picard.sam

Examples of net.sf.picard.sam.BuildBamIndex


    String[] args = new String[] {
        "INPUT=" + bam,
        "VALIDATION_STRINGENCY=SILENT"
        };
   
    int ret = new BuildBamIndex().instanceMain(args);
    if (ret != 0) {
      throw new RuntimeException("BuildBamIndex failed");
    }
  } 
View Full Code Here

TOP

Related Classes of net.sf.picard.sam.BuildBamIndex

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.