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

org.broadinstitute.hellbender.utils.read.ReadsWriteFormat Maven / Gradle / Ivy

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

/**
 * Possible output formats when writing reads.
 *
 * (Currently used only in the context of Spark.)
 */
public enum ReadsWriteFormat {
    /**
     * Write reads to a single BAM file
     */
    SINGLE,

    /**
     * Write reads to a sharded set of BAM files
     */
    SHARDED,

    /**
     * Write reads to a sharded set of ADAM-formatted Parquet files
     */
    ADAM
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy