Class Jronn.Range

java.lang.Object
org.biojava.nbio.ronn.Jronn.Range
Enclosing class:
Jronn

public static class Jronn.Range extends Object
Holder for the ranges, contain pointers to starting and ending position on the sequence which comprises a disordered region. Immutable.
Author:
pvtroshin
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    Range starting position counts from 1 (the first position on the sequence is 1)
    final float
     
    final int
    The range ending position includes the last residue.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Range(int from, int to, float score)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • from

      public final int from
      Range starting position counts from 1 (the first position on the sequence is 1)
    • to

      public final int to
      The range ending position includes the last residue.
    • score

      public final float score
  • Constructor Details

    • Range

      public Range(int from, int to, float score)
  • Method Details