Examples of DiWordwiseBackground


Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

  protected void extract_background(String str) {
    background = DiBackground.fromString(str);
  }
  @Override
  protected void initialize_default_background() {
    background = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

  public PCM2PWM() {
    super();
  }

  protected DiBackgroundModel defaultBackground() {
    return new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    fromMononucleotide = false;
  }

  @Override
  protected void initialize_default_background() {
    background = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    secondPWMFromMononucleotide = false;
  }

  @Override
  protected void initialize_default_background() {
    firstBackground = new DiWordwiseBackground();
    secondBackground = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

      //System.out.println("\n----------\n" + new PairAligned(firstPWMCounting, secondPWMCounting, similarityInfo.alignment).firstModelAligned);
      //System.out.println("\n----------\n" + new PairAligned(firstPWMCounting, secondPWMCounting, similarityInfo.alignment).secondModelAligned);

      DiPWM firstDiPWM = DiPWM.fromPWM(firstPWM);
      DiPWM secondDiPWM = DiPWM.fromPWM(secondPWM);
      DiBackgroundModel dibackground = new DiWordwiseBackground();
//      DiBackgroundModel dibackground = new DiBackground(new double[]{ 0.0625,0.0625,0.0625,0.0625,
//                                                                      0.0625,0.0625,0.0625,0.0625,
//                                                                      0.0625,0.0625,0.0625,0.0625,
//                                                                      0.0625,0.0625,0.0625,0.0625});
      ru.autosome.macroape.calculation.di.CompareModels dicomparator;
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    return DiBackground.fromString(str);
  }

  @Override
  protected void initialize_default_background() {
    queryBackground = new DiWordwiseBackground();
    collectionBackground = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    fromMononucleotide = false;
  }

  @Override
  protected void initialize_default_background() {
    background = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    fromMononucleotide = false;
  }

  @Override
  protected void initialize_default_background() {
    background = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    fromMononucleotide = false;
  }

  @Override
  protected void initialize_default_background() {
    background = new DiWordwiseBackground();
  }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.di.DiWordwiseBackground

    return score(word.sequence, background);
  }

  @Override
  public double score(Sequence word) throws IllegalArgumentException {
    return score(word, new DiWordwiseBackground());
  }
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.