1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/*
* Copyright (C) 2014-2021 Brian L. Browning
*
* This file is part of Beagle
*
* Beagle is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Beagle is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package imp;
/**
* <p>Class {@code StateProbs} stores a subset of Li and Stephens HMM states
* and associated probabilities for a target haplotype.
* </p>
* <p>All instances of interface {@code StateProbs} are required to be
* immutable.
* </p>
* @author Brian L. Browning {@code <browning@uw.edu>}
*/
public interface StateProbs {
/**
* Returns the target haplotype index.
* @return the target haplotype index
*/
int targHap();
/**
* Returns the number of target markers.
* @return the number of target markers
*/
int nTargMarkers();
/**
* Returns the number of stored HMM states at the specified
* target marker.
* @param targMarker a target marker index
* @return the number of stored HMM states at the specified target marker
* @throws IndexOutOfBoundsException if
* {@code marker < 0 || marker >= this.nTargMarkers()}
*/
int nStates(int targMarker);
/**
* Returns the specified reference haplotype index.
* @param targMarker a target marker index
* @param index a stored state index at the specified target marker
* @return the specified reference haplotype index
* @throws IndexOutOfBoundsException if
* {@code targMarker < 0 || targMarker >= this.nTargMarkers()}
* @throws IndexOutOfBoundsException if
* {@code index < 0 || index >= this.nStates(targMarker)}
*/
int refHap(int targMarker, int index);
/**
* Returns the probability of the specified state at the specified target
* marker.
* @param targMarker a target marker index
* @param index a stored state index
* @return the probability of the specified state at the specified target
* marker
* @throws IndexOutOfBoundsException if
* {@code targMarker < 0 || targMarker >= this.nTargMarkers()}
* @throws IndexOutOfBoundsException if
* {@code index < 0 || index >= this.nStates(targMarker)}
*/
float probs(int targMarker, int index);
/**
* Returns the probability of the specified state at the marker following
* the specified target marker. If
* {@code (targMarker + 1 == this.nTargMarkers())}, the probability of
* the specified state at the specified target marker is returned.
* @param targMarker a target marker index
* @param index a stored state index
* @return the probability of the specified state at the marker following
* the specified target marker
* @throws IndexOutOfBoundsException if
* {@code targMarker < 0 || targMarker >= this.nTargMarkers()}
* @throws IndexOutOfBoundsException if
* {@code index < 0 || index >= this.nStates(targMarker)}
*/
float probsP1(int targMarker, int index);
}
|