picard.fastq.ReadNameEncoder Maven / Gradle / Ivy
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