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 5, 2008 021 */ 022package org.biojava.nbio.structure.io.mmcif.model; 023 024/** A bean for the PDBX_POLY_SEQ_SCHEME category, which provides residue level nomenclature 025 * mapping for polymer entities. 026 * @author Andreas Prlic 027 * @since 1.7 028 */ 029 030public class PdbxPolySeqScheme extends AbstractBean{ 031 String asym_id; 032 String entity_id; 033 String seq_id; 034 String mon_id; 035 String ndb_seq_num; 036 String pdb_seq_num ; 037 String auth_seq_num ; 038 String pdb_mon_id; 039 String auth_mon_id; 040 String pdb_strand_id; 041 String pdb_ins_code; 042 String hetero; 043 public String getAsym_id() { 044 return asym_id; 045 } 046 public void setAsym_id(String asym_id) { 047 this.asym_id = asym_id; 048 } 049 public String getEntity_id() { 050 return entity_id; 051 } 052 public void setEntity_id(String entity_id) { 053 this.entity_id = entity_id; 054 } 055 public String getSeq_id() { 056 return seq_id; 057 } 058 public void setSeq_id(String seq_id) { 059 this.seq_id = seq_id; 060 } 061 public String getMon_id() { 062 return mon_id; 063 } 064 public void setMon_id(String mon_id) { 065 this.mon_id = mon_id; 066 } 067 public String getNdb_seq_num() { 068 return ndb_seq_num; 069 } 070 public void setNdb_seq_num(String ndb_seq_num) { 071 this.ndb_seq_num = ndb_seq_num; 072 } 073 public String getPdb_seq_num() { 074 return pdb_seq_num; 075 } 076 public void setPdb_seq_num(String pdb_seq_num) { 077 this.pdb_seq_num = pdb_seq_num; 078 } 079 public String getAuth_seq_num() { 080 return auth_seq_num; 081 } 082 public void setAuth_seq_num(String auth_seq_num) { 083 this.auth_seq_num = auth_seq_num; 084 } 085 public String getPdb_mon_id() { 086 return pdb_mon_id; 087 } 088 public void setPdb_mon_id(String pdb_mon_id) { 089 this.pdb_mon_id = pdb_mon_id; 090 } 091 public String getAuth_mon_id() { 092 return auth_mon_id; 093 } 094 public void setAuth_mon_id(String auth_mon_id) { 095 this.auth_mon_id = auth_mon_id; 096 } 097 public String getPdb_strand_id() { 098 return pdb_strand_id; 099 } 100 public void setPdb_strand_id(String pdb_strand_id) { 101 this.pdb_strand_id = pdb_strand_id; 102 } 103 public String getPdb_ins_code() { 104 return pdb_ins_code; 105 } 106 public void setPdb_ins_code(String pdb_ins_code) { 107 this.pdb_ins_code = pdb_ins_code; 108 } 109 public String getHetero() { 110 return hetero; 111 } 112 public void setHetero(String hetero) { 113 this.hetero = hetero; 114 } 115 116 117}