/************************************************************************* * * * This file is part of the 20n/act project. * * 20n/act enables DNA prediction for synthetic biology/bioengineering. * * Copyright (C) 2017 20n Labs, Inc. * * * * Please direct all queries to act@20n.com. * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program. If not, see <http://www.gnu.org/licenses/>. * * * *************************************************************************/ package act.installer.metacyc.entities; import act.installer.metacyc.Resource; import act.installer.metacyc.BPElement; import act.installer.metacyc.NXT; import java.util.Set; import java.util.HashSet; public class RNA extends BPElement { Resource rnaRef; // entityReference field pointing to a ProteinRNARef Resource cellularLocation; // cellularLocationVocab that is a act.installer.metacyc.annotations.Term public RNA(BPElement basics, Resource r, Resource localization) { super(basics); this.rnaRef = r; this.cellularLocation = localization; } @Override public Set<Resource> field(NXT typ) { Set<Resource> s = new HashSet<Resource>(); if (typ == NXT.ref) { s.add(this.rnaRef); } return s; } }