
org.snpeff.binseq.comparator.SubsequenceComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SnpEff Show documentation
Show all versions of SnpEff Show documentation
Variant annotation and effect prediction package.
The newest version!
package org.snpeff.binseq.comparator;
import org.snpeff.binseq.BinarySequence;
/**
* Compare two subsequences (actually it compares two sequences from different starting points)
*
* @author pcingola
*
* @param
*/
public abstract class SubsequenceComparator {
public abstract int compare(T seq1, int start1, T seq2, int start2);
public abstract int score(T seq1, int start1, T seq2, int start2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy