
/*
 *
 * Autogenerated
 *
 */

package org.inb.biomoby.shared.ontology;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import org.inb.biomoby.shared.datatypes.*;
import org.inb.biomoby.shared.message.MobyObject;

  
@XmlRootElement(name="CpGAnnotation")
@XmlType(name="CpGAnnotation")
public class CpGAnnotation extends Annotation implements Serializable
{

    public MobyString getSequence()
    {
        return getAttribute("Sequence");
    }

    public void setSequence(MobyString sequence)
    {
        putAttribute("Sequence", sequence);
    }

    public MobyInteger getScore()
    {
        return getAttribute("Score");
    }

    public void setScore(MobyInteger score)
    {
        putAttribute("Score", score);
    }

    public MobyInteger getCpG()
    {
        return getAttribute("CpG");
    }

    public void setCpG(MobyInteger cpG)
    {
        putAttribute("CpG", cpG);
    }

    public MobyFloat getPercentaje()
    {
        return getAttribute("Percentaje");
    }

    public void setPercentaje(MobyFloat percentaje)
    {
        putAttribute("Percentaje", percentaje);
    }

    public MobyFloat getRatio()
    {
        return getAttribute("Ratio");
    }

    public void setRatio(MobyFloat ratio)
    {
        putAttribute("Ratio", ratio);
    }

}
