From 34af669dbb8fd7cb1c99b08649e8c41eb019960b Mon Sep 17 00:00:00 2001 From: depristo Date: Wed, 5 Aug 2009 00:53:43 +0000 Subject: [PATCH] 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 --- .../walkers/genotyper/DiploidGenotype.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 java/src/org/broadinstitute/sting/gatk/walkers/genotyper/DiploidGenotype.java diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/DiploidGenotype.java b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/DiploidGenotype.java new file mode 100755 index 000000000..9aa16d6ee --- /dev/null +++ b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/DiploidGenotype.java @@ -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 +}