
org.snpeff.binseq.indexer.OverlapRessult 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.indexer;
import org.snpeff.binseq.BinarySequence;
/**
* An object used to store overlap parameters
*/
public class OverlapRessult {
public int start = -1;
public int bestScore = 0;
// Information about the best matching sequence
public T bestSequence = null;
public long bestReference = 0;
public int bestId = 0;
public boolean reverseWC = false;
@Override
public String toString() {
return "bestScore:" + bestScore + ", start:" + start + ", bestSequence:" + (bestSequence != null ? bestSequence.toString() : "NULL");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy