diff --git a/java/src/org/broadinstitute/sting/oneoffprojects/variantcontext/VariantContext.java b/java/src/org/broadinstitute/sting/oneoffprojects/variantcontext/VariantContext.java index 218c673b3..a3518bef5 100755 --- a/java/src/org/broadinstitute/sting/oneoffprojects/variantcontext/VariantContext.java +++ b/java/src/org/broadinstitute/sting/oneoffprojects/variantcontext/VariantContext.java @@ -8,24 +8,20 @@ import java.util.*; /** - * @author ebanks + * @author depristo *

* Class VariantContext *

- * This class represents a context that unifies one or more variants + * + * */ public class VariantContext extends AttributedObject { private GenomeLoc loc; - - private Set alleles = new HashSet(); - - private Map genotypes = new HashMap(); - Type type = Type.UNDETERMINED; - + private Set alleles = new HashSet(); + private Map genotypes = new HashMap(); Set filters = new HashSet(); - // --------------------------------------------------------------------------------------------------------- // // constructors