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

org.snpeff.binseq.indexer.OverlapRessult Maven / Gradle / Ivy

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