All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadinstitute.hellbender.utils.SequencerFlowClass Maven / Gradle / Ivy

There is a newer version: 4.6.0.0
Show newest version
package org.broadinstitute.hellbender.utils;

/**
 * In broad terms, each sequencing platform can be classified by whether it flows nucleotides in some order
 * such that homopolymers get sequenced in a single event (ie 454 or Ion) or it reads each position in the
 * sequence one at a time, regardless of base composition (Illumina or Solid).  This information is primarily
 * useful in the BQSR process
 */
public enum SequencerFlowClass {
    DISCRETE,
    FLOW,
    OTHER //Catch-all for unknown platforms, as well as relics that GATK doesn't handle well (Capillary, Helicos)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy