001/*
002 *                    BioJava development code
003 *
004 * This code may be freely distributed and modified under the
005 * terms of the GNU Lesser General Public Licence.  This should
006 * be distributed with the code.  If you do not have a copy,
007 * see:
008 *
009 *      http://www.gnu.org/copyleft/lesser.html
010 *
011 * Copyright for this code is held jointly by the individual
012 * authors.  These should be listed in @author doc comments.
013 *
014 * For more information on the BioJava project and its aims,
015 * or to join the biojava-l mailing list, visit the home page
016 * at:
017 *
018 *      http://www.biojava.org/
019 *
020 * created at Jun 1, 2008
021 */
022package org.biojava.nbio.structure.io.mmcif.model;
023
024
025/** Container for _entity_poly_seq records
026 *
027<pre>
028Field Name     mmCIF Data Item
029Section        n.a.
030Serial_No      n.a.
031Strand_ID      PDB strand ID corresponding to _entity_poly_seq.entity_id (*)
032Strand_Length  derived
033Residue_Names  _entity_poly_seq.mon_id
034</pre>
035 * (*) Chemically distinct polymer strands are mapped to mmCIF entities. Two
036 * instances or the same polymer molecule in the PDB data file are mapped to a
037 * single mmCIF entity (eg. a homodimer). For convenience a table of monomer
038 * label correspondences is stored in category   PDBX_POLY_SEQ_SCHEME
039 * @author Andreas Prlic
040 * @since 1.7
041 */
042public class EntityPolySeq extends AbstractBean{
043        String entity_id;
044        String num;
045        String mon_id;
046        String hetero;
047        public String getEntity_id() {
048                return entity_id;
049        }
050        public void setEntity_id(String entity_id) {
051                this.entity_id = entity_id;
052        }
053        public String getNum() {
054                return num;
055        }
056        public void setNum(String num) {
057                this.num = num;
058        }
059        public String getMon_id() {
060                return mon_id;
061        }
062        public void setMon_id(String mon_id) {
063                this.mon_id = mon_id;
064        }
065        public String getHetero() {
066                return hetero;
067        }
068        public void setHetero(String hetero) {
069                this.hetero = hetero;
070        }
071
072}