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

org.opencb.biodata.models.protein.Interaction Maven / Gradle / Ivy

The newest version!
/*
 * 
 *
 */

package org.opencb.biodata.models.protein;

import java.util.List;

/**
 * Created with IntelliJ IDEA.
 * User: mbleda
 * Date: 12/3/13
 * Time: 4:41 PM
 * To change this template use File | Settings | File Templates.
 */
public class Interaction {
    private Interactor interactorA;
    private Interactor interactorB;

    private List type;
    private List detectionMethod;
    private String status;
    private List score;
    private List xrefs;
    private List source;
    private String pubmed;
    private List authors;

    public Interaction(){
    }

    public Interactor getInteractorA() {
        return interactorA;
    }

    public void setInteractorA(Interactor interactorA) {
        this.interactorA = interactorA;
    }

    public Interactor getInteractorB() {
        return interactorB;
    }

    public void setInteractorB(Interactor interactorB) {
        this.interactorB = interactorB;
    }

    public List getType() {
        return type;
    }

    public void setType(List type) {
        this.type = type;
    }

    public List getDetectionMethod() {
        return detectionMethod;
    }

    public void setDetectionMethod(List detectionMethod) {
        this.detectionMethod = detectionMethod;
    }

    public List getScore() {
        return score;
    }

    public void setScore(List score) {
        this.score = score;
    }

    public List getXrefs() {
        return xrefs;
    }

    public void setXrefs(List xrefs) {
        this.xrefs = xrefs;
    }

    public List getSource() {
        return source;
    }

    public void setSource(List source) {
        this.source = source;
    }

    public String getPubmed() {
        return pubmed;
    }

    public void setPubmed(String pubmed) {
        this.pubmed = pubmed;
    }

    public List getAuthors() {
        return authors;
    }

    public void setAuthors(List authors) {
        this.authors = authors;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy