package seqcomp
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
case class
FeatureMatrix[T](features: Vector[Vector[Option[T]]]) extends LogSupport with Product with Serializable
Two-dimensional matrix of features, organized by row.
Two-dimensional matrix of features, organized by row.
- features
Matrix of related features, as Scala Options.
- case class IndexedValue[T](v: Option[T], r: Int, c: Int) extends Product with Serializable
- case class Pairing[T](left: Option[T], right: Option[T]) extends Product with Serializable
-
case class
SequenceComp[T](v1: Vector[T], v2: Vector[T]) extends Product with Serializable
A class for comparing pairs of vectors.
A class for comparing pairs of vectors.
- v1
First Vector to compare.
- v2
Second Vector to compare.
Value Members
- object FeatureMatrix extends LogSupport
-
object
SequenceComp extends Serializable
Factory for making SequenceComp objects directly from pairs of Vectors.