Explicit ENUM representation of the diploid genotypes. Please use this from now on to represent strings like AA or AT
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1380 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
5487ab0ee6
commit
34af669dbb
|
|
@ -0,0 +1,21 @@
|
||||||
|
package org.broadinstitute.sting.gatk.walkers.genotyper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by IntelliJ IDEA.
|
||||||
|
* User: depristo
|
||||||
|
* Date: Aug 4, 2009
|
||||||
|
* Time: 6:46:09 PM
|
||||||
|
* To change this template use File | Settings | File Templates.
|
||||||
|
*/
|
||||||
|
public enum DiploidGenotype {
|
||||||
|
AA,
|
||||||
|
AC,
|
||||||
|
AG,
|
||||||
|
AT,
|
||||||
|
CC,
|
||||||
|
CG,
|
||||||
|
CT,
|
||||||
|
GG,
|
||||||
|
GT,
|
||||||
|
TT
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue