/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.bio4j.neo4jdb.model.relationships.go;
import com.bio4j.neo4jdb.BasicRelationship;
import org.neo4j.graphdb.Relationship;
/**
*
* GO term 'positively_regulates' relationship
*
* @author Pablo Pareja Tobes <ppareja@era7.com>
*/
public class PositivelyRegulatesGoRel extends BasicRelationship {
public static final String NAME = "POSITIVELY_REGULATES_GO";
public static final String OBOXML_RELATIONSHIP_NAME = "positively_regulates";
public PositivelyRegulatesGoRel(Relationship rel) {
super(rel);
}
@Override
public String name() {
return NAME;
}
}