org.bdgenomics.utils.interval.array

ConcreteIntervalArray

case class ConcreteIntervalArray[K <: Interval[K], T](array: Array[(K, T)], maxIntervalWidth: Long)(implicit evidence$10: ClassTag[T]) extends IntervalArray[K, T] with Product with Serializable

Linear Supertypes
Product, Equals, IntervalArray[K, T], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ConcreteIntervalArray
  2. Product
  3. Equals
  4. IntervalArray
  5. Serializable
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ConcreteIntervalArray(array: Array[(K, T)], maxIntervalWidth: Long)(implicit arg0: ClassTag[T])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val array: Array[(K, T)]

    Definition Classes
    ConcreteIntervalArrayIntervalArray
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def collect(): Array[(K, T)]

    Collects and returns all elements in this array.

    Collects and returns all elements in this array.

    returns

    An array containing all elements.

    Definition Classes
    IntervalArray
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def filter(pred: ((K, T)) ⇒ Boolean): IntervalArray[K, T]

    Filters items in an IntervalArray based on a given predicate.

    Filters items in an IntervalArray based on a given predicate.

    pred

    The predicate to filter elements by.

    returns

    A new IntervalArray with filtered elements.

    Definition Classes
    IntervalArray
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def get(rr: K, requireOverlap: Boolean = true): Iterable[(K, T)]

    Gets all overlapping intervals in array for a given K, however if no overlapping intervals are found, uses the element that is the closest to the query.

    Gets all overlapping intervals in array for a given K, however if no overlapping intervals are found, uses the element that is the closest to the query.

    rr

    The interval to filter by.

    returns

    An Iterable of elements filtered by the query interval containing overlapping or the closest element in array.

    Definition Classes
    IntervalArray
  14. def get(rr: K): Iterable[(K, T)]

    Gets all overlapping intervals in array for a given query interval.

    Gets all overlapping intervals in array for a given query interval.

    rr

    The interval to filter by.

    returns

    Iterable of elements filtered by the query interval containing overlapping elements in array. If none exist, returns an empty Iterable.

    Definition Classes
    IntervalArray
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def insert(kvs: Iterator[(K, T)], sorted: Boolean = false): IntervalArray[K, T]

    Insert an Iterator of items into existing IntervalArray.

    Insert an Iterator of items into existing IntervalArray.

    kvs

    The tuples to insert into IntervalArray.

    returns

    new IntervalArray with inserted values.

    Definition Classes
    IntervalArray
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. def length: Int

    Definition Classes
    IntervalArray
  19. def mapValues[T2](f: (T) ⇒ T2)(implicit arg0: ClassTag[T2]): IntervalArray[K, T2]

    Maps values from T to T2.

    Maps values from T to T2.

    T2

    The new type to map values to.

    f

    Function mapping T to T2.

    returns

    new IntervalArray with mapped values.

    Definition Classes
    IntervalArray
  20. val maxIntervalWidth: Long

    Definition Classes
    ConcreteIntervalArrayIntervalArray
  21. def midpoint: Int

    Definition Classes
    IntervalArray
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def replace(arr: Array[(K, T)], maxWidth: Long): IntervalArray[K, T]

    Attributes
    protected
    Definition Classes
    ConcreteIntervalArrayIntervalArray
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Product

Inherited from Equals

Inherited from IntervalArray[K, T]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped