keep track of the position you're called on.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@135 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
jmaguire 2009-03-22 16:47:49 +00:00
parent 096f0dbc68
commit cf407168cf
1 changed files with 10 additions and 4 deletions

View File

@ -4,29 +4,35 @@ import org.broadinstitute.sting.gatk.walkers.AlleleFrequencyWalker;
public class AlleleFrequencyEstimate {
//AlleleFrequencyEstimate();
public String location;
public char ref;
public char alt;
public int N;
public double qhat;
public double qstar;
public double LOD;
public int depth;
public double getQstar() {
public double getQstar()
{
return qstar;
}
public double getLOD() {
public double getLOD()
{
return LOD;
}
public AlleleFrequencyEstimate(char ref, char alt, int N, double qhat, double qstar, double LOD) {
public AlleleFrequencyEstimate(String location, char ref, char alt, int N, double qhat, double qstar, double LOD, int depth)
{
this.location = location;
this.ref = ref;
this.alt = alt;
this.N = N;
this.qhat = qhat;
this.qstar = qstar;
this.LOD = LOD;
this.depth = depth;
}
public String asString() {