Class/Object

org.bdgenomics.adam.models

MdTag

Related Docs: object MdTag | package models

Permalink

case class MdTag(start: Long, matches: List[NumericRange[Long]], mismatches: Map[Long, Char], deletions: Map[Long, Char]) extends Product with Serializable

Represents the mismatches and deletions present in a read that has been aligned to a reference genome. The MD tag can be used to reconstruct the reference that an aligned read overlaps.

start

Start position of the alignment.

matches

A list of the ranges over which the read has a perfect sequence match.

mismatches

A map of all the locations where a base mismatched.

deletions

A map of all locations where a base was deleted.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MdTag
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MdTag(start: Long, matches: List[NumericRange[Long]], mismatches: Map[Long, Char], deletions: Map[Long, Char])

    Permalink

    start

    Start position of the alignment.

    matches

    A list of the ranges over which the read has a perfect sequence match.

    mismatches

    A map of all the locations where a base mismatched.

    deletions

    A map of all locations where a base was deleted.

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def canEqual(other: Any): Boolean

    Permalink

    We can check equality against MdTags.

    We can check equality against MdTags.

    other

    Object to see if we can compare against.

    returns

    Returns True if the object is an MdTag.

    Definition Classes
    MdTag → Equals
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def countOfMismatches: Int

    Permalink

    Returns the number of mismatches against the reference.

    Returns the number of mismatches against the reference.

    returns

    Number of mismatches against the reference

  8. def deletedBase(pos: Long): Option[Char]

    Permalink

    Returns the base that was deleted at a position.

    Returns the base that was deleted at a position.

    pos

    Reference based position.

    returns

    The base that was deleted at this position in the reference.

  9. val deletions: Map[Long, Char]

    Permalink

    A map of all locations where a base was deleted.

  10. def end(): Long

    Permalink

    Returns the end position of the record described by this MD tag.

    Returns the end position of the record described by this MD tag.

    returns

    The reference based end position of this tag.

  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(other: Any): Boolean

    Permalink

    We implement equality checking by seeing whether two MD tags are at the same position and have the same value.

    We implement equality checking by seeing whether two MD tags are at the same position and have the same value.

    other

    An object to compare to.

    returns

    True if the object is an MD tag at the same position and with the same string value. Else, false.

    Definition Classes
    MdTag → Equals → AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def getReference(read: RichAlignmentRecord, withGaps: Boolean = false): String

    Permalink

    Given a read, returns the reference.

    Given a read, returns the reference.

    read

    A read for which one desires the reference sequence.

    withGaps

    If true, applies INDEL gaps to the reference. Else, returns the raw reference sequence.

    returns

    A string corresponding to the reference overlapping this read.

  16. def hasMismatches: Boolean

    Permalink

    Returns whether this read has any mismatches against the reference.

    Returns whether this read has any mismatches against the reference.

    returns

    True if this read has mismatches. We do not return true if the read has no mismatches but has deletions.

  17. def hashCode(): Int

    Permalink

    returns

    We implement hashing by hashing the string representation of the MD tag.

    Definition Classes
    MdTag → AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def isMatch(pos: ReferencePosition): Boolean

    Permalink

    Returns whether a base is a match against the reference.

    Returns whether a base is a match against the reference.

    pos

    ReferencePosition object describing where to check.

    returns

    True if base matches reference. False means that the base may be either a mismatch or a deletion.

  20. def isMatch(pos: Long): Boolean

    Permalink

    Returns whether a base is a match against the reference.

    Returns whether a base is a match against the reference.

    pos

    Reference based position to check.

    returns

    True if base matches reference. False means that the base may be either a mismatch or a deletion.

  21. val matches: List[NumericRange[Long]]

    Permalink

    A list of the ranges over which the read has a perfect sequence match.

  22. def mismatchedBase(pos: Long): Option[Char]

    Permalink

    Returns the mismatched base at a position.

    Returns the mismatched base at a position.

    pos

    Reference based position.

    returns

    The base at this position in the reference.

  23. val mismatches: Map[Long, Char]

    Permalink

    A map of all the locations where a base mismatched.

  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. val start: Long

    Permalink

    Start position of the alignment.

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink

    Converts an MdTag object to a properly formatted MD string.

    Converts an MdTag object to a properly formatted MD string.

    returns

    MD string corresponding to [0-9]+(([A-Z]|\^[A-Z]+)[0-9]+)

    Definition Classes
    MdTag → AnyRef → Any
    See also

    http://zenfractal.com/2013/06/19/playing-with-matches/

  30. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped