Codota Logo
Hmmer3Match.getEvalue
Code IndexAdd Codota to your IDE (free)

How to use
getEvalue
method
in
uk.ac.ebi.interpro.scan.model.Hmmer3Match

Best Java code snippets using uk.ac.ebi.interpro.scan.model.Hmmer3Match.getEvalue (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
origin: ebi-pf-team/interproscan

public Object clone() throws CloneNotSupportedException {
  final Set<Hmmer3Location> clonedLocations = new HashSet<Hmmer3Location>(this.getLocations().size());
  for (Hmmer3Location location : this.getLocations()) {
    clonedLocations.add((Hmmer3Location) location.clone());
  }
  return new Hmmer3Match(this.getSignature(), this.getScore(), this.getEvalue(), clonedLocations);
}
origin: uk.ac.ebi.interpro.scan/interproscan-io

private String getSeqEvalue(Match match, Location location) {
  //get the seevalue
  String seqEvalue = null;
  if (match instanceof PantherMatch) {
    seqEvalue = Double.toString(((PantherMatch) match).getEvalue());
  } else if (match instanceof Hmmer3Match) {
    seqEvalue = Double.toString(((Hmmer3Match) match).getEvalue());
  } else if (match instanceof Hmmer2Match) {
    seqEvalue = Double.toString(((Hmmer2Match) match).getEvalue());
  } else if (match instanceof Hmmer3MatchWithSites) {
    seqEvalue = Double.toString(((Hmmer3MatchWithSites) match).getEvalue());
  } else if (location instanceof RPSBlastMatch.RPSBlastLocation) {
    seqEvalue = Double.toString(((RPSBlastMatch.RPSBlastLocation) location).getEvalue());
  } else  if (location instanceof BlastProDomMatch.BlastProDomLocation) {
    seqEvalue = Double.toString(((BlastProDomMatch.BlastProDomLocation) location).getEvalue());
  } else if (match instanceof FingerPrintsMatch) {
    seqEvalue = Double.toString(((FingerPrintsMatch) match).getEvalue());
  } else if (match instanceof SuperFamilyHmmer3Match) {
    seqEvalue = Double.toString(((SuperFamilyHmmer3Match) match).getEvalue());
  }
  return seqEvalue;
}
private String getScore(Location location){
uk.ac.ebi.interpro.scan.modelHmmer3MatchgetEvalue

Popular methods of Hmmer3Match

  • getLocations
  • getScore
  • <init>
  • getSignature

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • getExternalFilesDir (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now