
org.broadinstitute.hellbender.tools.spark.pathseq.PSPathogenAlignmentHit Maven / Gradle / Ivy
The newest version!
package org.broadinstitute.hellbender.tools.spark.pathseq;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* Stores taxonomic IDs that were hits of a read pair. ID's can be repeated.
*/
public final class PSPathogenAlignmentHit {
public final List taxIDs;
public final int numMates;
public PSPathogenAlignmentHit(final Collection taxIDs, final int numMates) {
this.taxIDs = new ArrayList<>(taxIDs);
this.numMates = numMates;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy