org.hammerlab.guacamole

pileup

package pileup

Answer questions like: given some reads that overlap a locus of interest, what bases were sequenced at that locus?

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. pileup
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Deletion(referenceBases: Seq[Byte], baseQuality: Byte) extends Alignment with Product with Serializable

    For now, only emit a Deletion at the position immediately preceding the run of deleted bases, i.

  2. case class Insertion(sequencedBases: Seq[Byte], baseQualities: Seq[Byte]) extends Alignment with Product with Serializable

  3. case class InvalidCigarElementException(elem: PileupElement) extends Exception with Product with Serializable

  4. case class Match(base: Byte, baseQuality: Byte) extends MatchOrMisMatch with Product with Serializable

  5. class MatchOrMisMatch extends Alignment

  6. case class MidDeletion(referenceBase: Byte) extends Alignment with Product with Serializable

    Signifies that at a particular locus, a read has bases deleted.

  7. case class Mismatch(base: Byte, baseQuality: Byte, referenceBase: Byte) extends MatchOrMisMatch with Product with Serializable

  8. case class Pileup(sampleName: SampleName, contigName: ContigName, locus: Locus, contigSequence: ContigSequence, elements: Seq[PileupElement]) extends Product with Serializable

    A Pileup at a locus contains a sequence of PileupElement instances, one for every read that overlaps that locus.

  9. case class PileupElement(read: MappedRead, locus: Locus, readPosition: Int, cigarElementIndex: Int, cigarElementLocus: Locus, indexWithinCigarElement: Int, contigSequence: ContigSequence) extends Product with Serializable

    A PileupElement represents the bases sequenced by a particular read at a particular reference locus.

Value Members

  1. object Clipped extends Alignment with Product with Serializable

  2. object Deletion extends Serializable

  3. object MatchOrMisMatch

  4. object Pileup extends Serializable

  5. object PileupElement extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped