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

picard.fastq.ReadNameEncoder Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package picard.fastq;

import picard.illumina.parser.ClusterData;

/**
 * @author mccowan
 */
public interface ReadNameEncoder {
    /**
     * Generates a read name string for the provided cluster. 
     *
     * @param cluster The cluster whose reads are having its name generated
     * @param pairNumber 1 if this is the first of the pair, 2 if it is the second, or null if this not a paired read.
     * @return The read name
     */
    String generateReadName(ClusterData cluster, Integer pairNumber);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy