Package abra

Examples of abra.CompareToReference2


  private CompareToReference2 c2r;
  private int minBaseQual;

  public void call(String normal, String tumor, String vcf, String reference, int minBaseQual) throws IOException {
    loadLoci(vcf);
    c2r = new CompareToReference2();
    c2r.init(reference);
    this.minBaseQual = minBaseQual;
   
    System.err.println("Processing positions");
View Full Code Here


  private CompareToReference2 c2r;
  private Map<Integer, Long> qualityCounts;
  private Map<Integer, Long> qualityMismatches;

  public void run(String input, String ref) throws IOException {
    c2r = new CompareToReference2();
    c2r.init(ref);
   
    qualityMismatches = new HashMap<Integer, Long>();
    qualityCounts = new HashMap<Integer, Long>();
   
View Full Code Here

  private ReadLocusReader normal;
  private ReadLocusReader tumor;
  private CompareToReference2 c2r;

  public void callSomatic(String reference, String normal, String tumor) throws IOException {
    c2r = new CompareToReference2();
    c2r.init(reference);
   
    this.normal = new ReadLocusReader(normal);
    this.tumor = new ReadLocusReader(tumor);
   
View Full Code Here

    this.minAltFraction = minAltFraction;
    this.minAltObs = minAltObs;
    this.minMapq = minMapq;
    this.minDistanceFromIndel = minDistanceFromIndel;
   
    c2r = new CompareToReference2();
    c2r.init(reference);
   
    outputHeader();
   
    this.sample = new ReadLocusReader(bam);
View Full Code Here

TOP

Related Classes of abra.CompareToReference2

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.