Added the discovery LOD score to the meta data

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1825 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-10-14 01:24:06 +00:00
parent 0c06bf9dbc
commit c9c8fd1fef
1 changed files with 15 additions and 1 deletions

View File

@ -10,6 +10,9 @@ package org.broadinstitute.sting.utils.genotype;
*/ */
public class GenotypeMetaData { public class GenotypeMetaData {
// the discovery lod score
private double mLOD;
// the strand score lod // the strand score lod
private double mSLOD; private double mSLOD;
@ -19,14 +22,25 @@ public class GenotypeMetaData {
/** /**
* create a basic genotype meta data pbject, given the following fields * create a basic genotype meta data pbject, given the following fields
* *
* @param discoveryLOD the discovery lod
* @param strandLOD the strand score lod * @param strandLOD the strand score lod
* @param alleleFrequency the allele frequency * @param alleleFrequency the allele frequency
*/ */
public GenotypeMetaData(double strandLOD, double alleleFrequency) { public GenotypeMetaData(double discoveryLOD, double strandLOD, double alleleFrequency) {
mLOD = discoveryLOD;
mSLOD = strandLOD; mSLOD = strandLOD;
mAlleleFrequency = alleleFrequency; mAlleleFrequency = alleleFrequency;
} }
/**
* get the discovery lod
*
* @return the discovery lod
*/
public double getLOD() {
return mLOD;
}
/** /**
* get the strand lod * get the strand lod
* *