Package abra

Examples of abra.RegionLoader.load()


  public void run(String input, String regionsGtf) throws IOException {
   
    SAMFileReader reader = new SAMFileReader(new File(input));
   
    RegionLoader loader = new RegionLoader();
    List<Feature> regions = loader.load(regionsGtf);
   
    regions = ReAligner.splitRegions(regions);

    for (Feature region : regions) {
     
View Full Code Here


public class MapqEval {

  public void eval(String input, String bed) throws IOException {
    RegionLoader loader = new RegionLoader();
    List<Feature> regions = loader.load(bed);

    int[] thresholds = new int[] { 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 255 };
   
   
    for (Feature region : regions) {
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.