All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencb.biodata.models.pharma.guideline.GuidelineGene Maven / Gradle / Ivy

The newest version!
package org.opencb.biodata.models.pharma.guideline;

import java.util.List;

public class GuidelineGene {
    private float id;
    private List alleles;
    private Gene gene;
    private float version;

    public float getId() {
        return id;
    }

    public GuidelineGene setId(float id) {
        this.id = id;
        return this;
    }

    public List getAlleles() {
        return alleles;
    }

    public GuidelineGene setAlleles(List alleles) {
        this.alleles = alleles;
        return this;
    }

    public Gene getGene() {
        return gene;
    }

    public GuidelineGene setGene(Gene gene) {
        this.gene = gene;
        return this;
    }

    public float getVersion() {
        return version;
    }

    public GuidelineGene setVersion(float version) {
        this.version = version;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy