bbe6a209bc0dd44aad43aa30473f7daae6438278
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblEntry.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.datamodel.xdb.embl;
22
23 import jalview.analysis.SequenceIdMatcher;
24 import jalview.bin.Cache;
25 import jalview.datamodel.DBRefEntry;
26 import jalview.datamodel.DBRefSource;
27 import jalview.datamodel.FeatureProperties;
28 import jalview.datamodel.Mapping;
29 import jalview.datamodel.Sequence;
30 import jalview.datamodel.SequenceFeature;
31 import jalview.datamodel.SequenceI;
32 import jalview.util.DBRefUtils;
33 import jalview.util.DnaUtils;
34 import jalview.util.MapList;
35 import jalview.util.MappingUtils;
36 import jalview.util.StringUtils;
37
38 import java.text.ParseException;
39 import java.util.Arrays;
40 import java.util.Hashtable;
41 import java.util.List;
42 import java.util.Map;
43 import java.util.Map.Entry;
44 import java.util.Vector;
45 import java.util.regex.Pattern;
46
47 /**
48  * Data model for one entry returned from an EMBL query, as marshalled by a
49  * Castor binding file
50  * 
51  * For example: http://www.ebi.ac.uk/ena/data/view/J03321&display=xml
52  * 
53  * @see embl_mapping.xml
54  */
55 public class EmblEntry
56 {
57   private static final Pattern SPACE_PATTERN = Pattern.compile(" ");
58
59   String accession;
60
61   String entryVersion;
62
63   String sequenceVersion;
64
65   String dataClass;
66
67   String moleculeType;
68
69   String topology;
70
71   String sequenceLength;
72
73   String taxonomicDivision;
74
75   String description;
76
77   String firstPublicDate;
78
79   String firstPublicRelease;
80
81   String lastUpdatedDate;
82
83   String lastUpdatedRelease;
84
85   Vector<String> keywords;
86
87   Vector<DBRefEntry> dbRefs;
88
89   Vector<EmblFeature> features;
90
91   EmblSequence sequence;
92
93   /**
94    * @return the accession
95    */
96   public String getAccession()
97   {
98     return accession;
99   }
100
101   /**
102    * @param accession
103    *          the accession to set
104    */
105   public void setAccession(String accession)
106   {
107     this.accession = accession;
108   }
109
110   /**
111    * @return the dbRefs
112    */
113   public Vector<DBRefEntry> getDbRefs()
114   {
115     return dbRefs;
116   }
117
118   /**
119    * @param dbRefs
120    *          the dbRefs to set
121    */
122   public void setDbRefs(Vector<DBRefEntry> dbRefs)
123   {
124     this.dbRefs = dbRefs;
125   }
126
127   /**
128    * @return the features
129    */
130   public Vector<EmblFeature> getFeatures()
131   {
132     return features;
133   }
134
135   /**
136    * @param features
137    *          the features to set
138    */
139   public void setFeatures(Vector<EmblFeature> features)
140   {
141     this.features = features;
142   }
143
144   /**
145    * @return the keywords
146    */
147   public Vector<String> getKeywords()
148   {
149     return keywords;
150   }
151
152   /**
153    * @param keywords
154    *          the keywords to set
155    */
156   public void setKeywords(Vector<String> keywords)
157   {
158     this.keywords = keywords;
159   }
160
161   /**
162    * @return the sequence
163    */
164   public EmblSequence getSequence()
165   {
166     return sequence;
167   }
168
169   /**
170    * @param sequence
171    *          the sequence to set
172    */
173   public void setSequence(EmblSequence sequence)
174   {
175     this.sequence = sequence;
176   }
177
178   /**
179    * Recover annotated sequences from EMBL file
180    * 
181    * @param sourceDb
182    * @param peptides
183    *          a list of protein products found so far (to add to)
184    * @return dna dataset sequence with DBRefs and features
185    */
186   public SequenceI getSequence(String sourceDb, List<SequenceI> peptides)
187   {
188     SequenceI dna = makeSequence(sourceDb);
189     if (dna == null)
190     {
191       return null;
192     }
193     dna.setDescription(description);
194     DBRefEntry retrievedref = new DBRefEntry(sourceDb, getSequenceVersion(),
195             accession);
196     dna.addDBRef(retrievedref);
197     // add map to indicate the sequence is a valid coordinate frame for the
198     // dbref
199     retrievedref
200             .setMap(new Mapping(null, new int[]
201             { 1, dna.getLength() }, new int[] { 1, dna.getLength() }, 1,
202                     1));
203
204     /*
205      * transform EMBL Database refs to canonical form
206      */
207     if (dbRefs != null)
208     {
209       for (DBRefEntry dbref : dbRefs)
210       {
211         dbref.setSource(DBRefUtils.getCanonicalName(dbref.getSource()));
212         dna.addDBRef(dbref);
213       }
214     }
215
216     SequenceIdMatcher matcher = new SequenceIdMatcher(peptides);
217     try
218     {
219       for (EmblFeature feature : features)
220       {
221         if (FeatureProperties.isCodingFeature(sourceDb, feature.getName()))
222         {
223           parseCodingFeature(feature, sourceDb, dna, peptides, matcher);
224         }
225       }
226     } catch (Exception e)
227     {
228       System.err.println("EMBL Record Features parsing error!");
229       System.err
230               .println("Please report the following to help@jalview.org :");
231       System.err.println("EMBL Record " + accession);
232       System.err.println("Resulted in exception: " + e.getMessage());
233       e.printStackTrace(System.err);
234     }
235
236     return dna;
237   }
238
239   /**
240    * @param sourceDb
241    * @return
242    */
243   SequenceI makeSequence(String sourceDb)
244   {
245     if (sequence == null)
246     {
247       System.err.println(
248               "No sequence was returned for ENA accession " + accession);
249       return null;
250     }
251     SequenceI dna = new Sequence(sourceDb + "|" + accession,
252             sequence.getSequence());
253     return dna;
254   }
255
256   /**
257    * Extracts coding region and product from a CDS feature and properly decorate
258    * it with annotations.
259    * 
260    * @param feature
261    *          coding feature
262    * @param sourceDb
263    *          source database for the EMBLXML
264    * @param dna
265    *          parent dna sequence for this record
266    * @param peptides
267    *          list of protein product sequences for Embl entry
268    * @param matcher
269    *          helper to match xrefs in already retrieved sequences
270    */
271   void parseCodingFeature(EmblFeature feature, String sourceDb,
272           SequenceI dna, List<SequenceI> peptides,
273           SequenceIdMatcher matcher)
274   {
275     boolean isEmblCdna = sourceDb.equals(DBRefSource.EMBLCDS);
276
277     int[] exons = getCdsRanges(feature);
278
279     String translation = null;
280     String proteinName = "";
281     String proteinId = null;
282     Map<String, String> vals = new Hashtable<>();
283
284     /*
285      * codon_start 1/2/3 in EMBL corresponds to phase 0/1/2 in CDS
286      * (phase is required for CDS features in GFF3 format)
287      */
288     int codonStart = 1;
289
290     /*
291      * parse qualifiers, saving protein translation, protein id,
292      * codon start position, product (name), and 'other values'
293      */
294     if (feature.getQualifiers() != null)
295     {
296       for (Qualifier q : feature.getQualifiers())
297       {
298         String qname = q.getName();
299         if (qname.equals("translation"))
300         {
301           // remove all spaces (precompiled String.replaceAll(" ", ""))
302           translation = SPACE_PATTERN.matcher(q.getValues()[0])
303                   .replaceAll("");
304         }
305         else if (qname.equals("protein_id"))
306         {
307           proteinId = q.getValues()[0].trim();
308         }
309         else if (qname.equals("codon_start"))
310         {
311           try
312           {
313             codonStart = Integer.parseInt(q.getValues()[0].trim());
314           } catch (NumberFormatException e)
315           {
316             System.err.println("Invalid codon_start in XML for " + accession
317                     + ": " + e.getMessage());
318           }
319         }
320         else if (qname.equals("product"))
321         {
322           // sometimes name is returned e.g. for V00488
323           proteinName = q.getValues()[0].trim();
324         }
325         else
326         {
327           // throw anything else into the additional properties hash
328           String[] qvals = q.getValues();
329           if (qvals != null)
330           {
331             String commaSeparated = StringUtils.arrayToSeparatorList(qvals,
332                     ",");
333             vals.put(qname, commaSeparated);
334           }
335         }
336       }
337     }
338
339     DBRefEntry proteinToEmblProteinRef = null;
340     exons = MappingUtils.removeStartPositions(codonStart - 1, exons);
341
342     SequenceI product = null;
343     Mapping dnaToProteinMapping = null;
344     if (translation != null && proteinName != null && proteinId != null)
345     {
346       int translationLength = translation.length();
347
348       /*
349        * look for product in peptides list, if not found, add it
350        */
351       product = matcher.findIdMatch(proteinId);
352       if (product == null)
353       {
354         product = new Sequence(proteinId, translation, 1,
355                 translationLength);
356         product.setDescription(((proteinName.length() == 0)
357                 ? "Protein Product from " + sourceDb
358                 : proteinName));
359         peptides.add(product);
360         matcher.add(product);
361       }
362
363       // we have everything - create the mapping and perhaps the protein
364       // sequence
365       if (exons == null || exons.length == 0)
366       {
367         /*
368          * workaround until we handle dna location for CDS sequence
369          * e.g. location="X53828.1:60..1058" correctly
370          */
371         System.err.println(
372                 "Implementation Notice: EMBLCDS records not properly supported yet - Making up the CDNA region of this sequence... may be incorrect ("
373                         + sourceDb + ":" + getAccession() + ")");
374         int dnaLength = dna.getLength();
375         if (translationLength * 3 == (1 - codonStart + dnaLength))
376         {
377           System.err.println(
378                   "Not allowing for additional stop codon at end of cDNA fragment... !");
379           // this might occur for CDS sequences where no features are marked
380           exons = new int[] { dna.getStart() + (codonStart - 1),
381               dna.getEnd() };
382           dnaToProteinMapping = new Mapping(product, exons,
383                   new int[]
384                   { 1, translationLength }, 3, 1);
385         }
386         if ((translationLength + 1) * 3 == (1 - codonStart + dnaLength))
387         {
388           System.err.println(
389                   "Allowing for additional stop codon at end of cDNA fragment... will probably cause an error in VAMSAs!");
390           exons = new int[] { dna.getStart() + (codonStart - 1),
391               dna.getEnd() - 3 };
392           dnaToProteinMapping = new Mapping(product, exons,
393                   new int[]
394                   { 1, translationLength }, 3, 1);
395         }
396       }
397       else
398       {
399         // Trim the exon mapping if necessary - the given product may only be a
400         // fragment of a larger protein. (EMBL:AY043181 is an example)
401
402         if (isEmblCdna)
403         {
404           // TODO: Add a DbRef back to the parent EMBL sequence with the exon
405           // map
406           // if given a dataset reference, search dataset for parent EMBL
407           // sequence if it exists and set its map
408           // make a new feature annotating the coding contig
409         }
410         else
411         {
412           // final product length truncation check
413           int[] cdsRanges = adjustForProteinLength(translationLength,
414                   exons);
415           dnaToProteinMapping = new Mapping(product, cdsRanges,
416                   new int[]
417                   { 1, translationLength }, 3, 1);
418           if (product != null)
419           {
420             /*
421              * make xref with mapping from protein to EMBL dna
422              */
423             DBRefEntry proteinToEmblRef = new DBRefEntry(DBRefSource.EMBL,
424                     getSequenceVersion(), proteinId,
425                     new Mapping(dnaToProteinMapping.getMap().getInverse()));
426             product.addDBRef(proteinToEmblRef);
427
428             /*
429              * make xref from protein to EMBLCDS; we assume here that the 
430              * CDS sequence version is same as dna sequence (?!)
431              */
432             MapList proteinToCdsMapList = new MapList(
433                     new int[]
434                     { 1, translationLength },
435                     new int[]
436                     { 1 + (codonStart - 1),
437                         (codonStart - 1) + 3 * translationLength },
438                     1, 3);
439             DBRefEntry proteinToEmblCdsRef = new DBRefEntry(
440                     DBRefSource.EMBLCDS, getSequenceVersion(), proteinId,
441                     new Mapping(proteinToCdsMapList));
442             product.addDBRef(proteinToEmblCdsRef);
443
444             /*
445              * make 'direct' xref from protein to EMBLCDSPROTEIN
446              */
447             proteinToEmblProteinRef = new DBRefEntry(proteinToEmblCdsRef);
448             proteinToEmblProteinRef.setSource(DBRefSource.EMBLCDSProduct);
449             proteinToEmblProteinRef.setMap(null);
450             product.addDBRef(proteinToEmblProteinRef);
451           }
452         }
453       }
454
455       /*
456        * add cds features to dna sequence
457        */
458       String cds = feature.getName(); // "CDS"
459       for (int xint = 0; exons != null && xint < exons.length - 1; xint += 2)
460       {
461         int exonStart = exons[xint];
462         int exonEnd = exons[xint + 1];
463         int begin = Math.min(exonStart, exonEnd);
464         int end = Math.max(exonStart, exonEnd);
465         int exonNumber = xint / 2 + 1;
466         String desc = String.format("Exon %d for protein '%s' EMBLCDS:%s",
467                 exonNumber, proteinName, proteinId);
468
469         SequenceFeature sf = makeCdsFeature(cds, desc, begin, end,
470                 sourceDb, vals);
471
472         sf.setEnaLocation(feature.getLocation());
473         boolean forwardStrand = exonStart <= exonEnd;
474         sf.setStrand(forwardStrand ? "+" : "-");
475         sf.setPhase(String.valueOf(codonStart - 1));
476         sf.setValue(FeatureProperties.EXONPOS, exonNumber);
477         sf.setValue(FeatureProperties.EXONPRODUCT, proteinName);
478
479         dna.addSequenceFeature(sf);
480       }
481     }
482
483     /*
484      * add feature dbRefs to sequence, and mappings for Uniprot xrefs
485      */
486     boolean hasUniprotDbref = false;
487     if (feature.dbRefs != null)
488     {
489       boolean mappingUsed = false;
490       for (DBRefEntry ref : feature.dbRefs)
491       {
492         /*
493          * ensure UniProtKB/Swiss-Prot converted to UNIPROT
494          */
495         String source = DBRefUtils.getCanonicalName(ref.getSource());
496         ref.setSource(source);
497         DBRefEntry proteinDbRef = new DBRefEntry(ref.getSource(),
498                 ref.getVersion(), ref.getAccessionId());
499         if (source.equals(DBRefSource.UNIPROT))
500         {
501           String proteinSeqName = DBRefSource.UNIPROT + "|"
502                   + ref.getAccessionId();
503           if (dnaToProteinMapping != null
504                   && dnaToProteinMapping.getTo() != null)
505           {
506             if (mappingUsed)
507             {
508               /*
509                * two or more Uniprot xrefs for the same CDS - 
510                * each needs a distinct Mapping (as to a different sequence)
511                */
512               dnaToProteinMapping = new Mapping(dnaToProteinMapping);
513             }
514             mappingUsed = true;
515
516             /*
517              * try to locate the protein mapped to (possibly by a 
518              * previous CDS feature); if not found, construct it from
519              * the EMBL translation
520              */
521             SequenceI proteinSeq = matcher.findIdMatch(proteinSeqName);
522             if (proteinSeq == null)
523             {
524               proteinSeq = new Sequence(proteinSeqName,
525                       product.getSequenceAsString());
526               matcher.add(proteinSeq);
527               peptides.add(proteinSeq);
528             }
529             dnaToProteinMapping.setTo(proteinSeq);
530             dnaToProteinMapping.setMappedFromId(proteinId);
531             proteinSeq.addDBRef(proteinDbRef);
532             ref.setMap(dnaToProteinMapping);
533           }
534           hasUniprotDbref = true;
535         }
536         if (product != null)
537         {
538           /*
539            * copy feature dbref to our protein product
540            */
541           DBRefEntry pref = proteinDbRef;
542           pref.setMap(null); // reference is direct
543           product.addDBRef(pref);
544           // Add converse mapping reference
545           if (dnaToProteinMapping != null)
546           {
547             Mapping pmap = new Mapping(dna,
548                     dnaToProteinMapping.getMap().getInverse());
549             pref = new DBRefEntry(sourceDb, getSequenceVersion(),
550                     this.getAccession());
551             pref.setMap(pmap);
552             if (dnaToProteinMapping.getTo() != null)
553             {
554               dnaToProteinMapping.getTo().addDBRef(pref);
555             }
556           }
557         }
558         dna.addDBRef(ref);
559       }
560     }
561
562     /*
563      * if we have a product (translation) but no explicit Uniprot dbref
564      * (example: EMBL AAFI02000057 protein_id EAL65544.1)
565      * then construct mappings to an assumed EMBLCDSPROTEIN accession
566      */
567     if (!hasUniprotDbref && product != null)
568     {
569       if (proteinToEmblProteinRef == null)
570       {
571         // assuming CDSPROTEIN sequence version = dna version (?!)
572         proteinToEmblProteinRef = new DBRefEntry(DBRefSource.EMBLCDSProduct,
573                 getSequenceVersion(), proteinId);
574       }
575       product.addDBRef(proteinToEmblProteinRef);
576
577       if (dnaToProteinMapping != null
578               && dnaToProteinMapping.getTo() != null)
579       {
580         DBRefEntry dnaToEmblProteinRef = new DBRefEntry(
581                 DBRefSource.EMBLCDSProduct, getSequenceVersion(),
582                 proteinId);
583         dnaToEmblProteinRef.setMap(dnaToProteinMapping);
584         dnaToProteinMapping.setMappedFromId(proteinId);
585         dna.addDBRef(dnaToEmblProteinRef);
586       }
587     }
588   }
589
590   /**
591    * Helper method to construct a SequenceFeature for one cds range
592    * 
593    * @param type
594    *          feature type ("CDS")
595    * @param desc
596    *          description
597    * @param begin
598    *          start position
599    * @param end
600    *          end position
601    * @param group
602    *          feature group
603    * @param vals
604    *          map of 'miscellaneous values' for feature
605    * @return
606    */
607   protected SequenceFeature makeCdsFeature(String type, String desc,
608           int begin, int end, String group, Map<String, String> vals)
609   {
610     SequenceFeature sf = new SequenceFeature(type, desc, begin, end, group);
611     if (!vals.isEmpty())
612     {
613       StringBuilder sb = new StringBuilder();
614       boolean first = true;
615       for (Entry<String, String> val : vals.entrySet())
616       {
617         if (!first)
618         {
619           sb.append(";");
620         }
621         sb.append(val.getKey()).append("=").append(val.getValue());
622         first = false;
623         sf.setValue(val.getKey(), val.getValue());
624       }
625       sf.setAttributes(sb.toString());
626     }
627     return sf;
628   }
629
630   /**
631    * Returns the CDS positions as a single array of [start, end, start, end...]
632    * positions. If on the reverse strand, these will be in descending order.
633    * 
634    * @param feature
635    * @return
636    */
637   protected int[] getCdsRanges(EmblFeature feature)
638   {
639     if (feature.location == null)
640     {
641       return new int[] {};
642     }
643
644     try
645     {
646       List<int[]> ranges = DnaUtils.parseLocation(feature.location);
647       return listToArray(ranges);
648     } catch (ParseException e)
649     {
650       Cache.log.warn(
651               String.format("Not parsing inexact CDS location %s in ENA %s",
652                       feature.location, this.accession));
653       return new int[] {};
654     }
655   }
656
657   /**
658    * Converts a list of [start, end] ranges to a single array of [start, end,
659    * start, end ...]
660    * 
661    * @param ranges
662    * @return
663    */
664   int[] listToArray(List<int[]> ranges)
665   {
666     int[] result = new int[ranges.size() * 2];
667     int i = 0;
668     for (int[] range : ranges)
669     {
670       result[i++] = range[0];
671       result[i++] = range[1];
672     }
673     return result;
674   }
675
676   /**
677    * Truncates (if necessary) the exon intervals to match 3 times the length of
678    * the protein; also accepts 3 bases longer (for stop codon not included in
679    * protein)
680    * 
681    * @param proteinLength
682    * @param exon
683    *          an array of [start, end, start, end...] intervals
684    * @return the same array (if unchanged) or a truncated copy
685    */
686   static int[] adjustForProteinLength(int proteinLength, int[] exon)
687   {
688     if (proteinLength <= 0 || exon == null)
689     {
690       return exon;
691     }
692     int expectedCdsLength = proteinLength * 3;
693     int exonLength = MappingUtils.getLength(Arrays.asList(exon));
694
695     /*
696      * if exon length matches protein, or is shorter, or longer by the 
697      * length of a stop codon (3 bases), then leave it unchanged
698      */
699     if (expectedCdsLength >= exonLength
700             || expectedCdsLength == exonLength - 3)
701     {
702       return exon;
703     }
704
705     int origxon[];
706     int sxpos = -1;
707     int endxon = 0;
708     origxon = new int[exon.length];
709     System.arraycopy(exon, 0, origxon, 0, exon.length);
710     int cdspos = 0;
711     for (int x = 0; x < exon.length; x += 2)
712     {
713       cdspos += Math.abs(exon[x + 1] - exon[x]) + 1;
714       if (expectedCdsLength <= cdspos)
715       {
716         // advanced beyond last codon.
717         sxpos = x;
718         if (expectedCdsLength != cdspos)
719         {
720           // System.err
721           // .println("Truncating final exon interval on region by "
722           // + (cdspos - cdslength));
723         }
724
725         /*
726          * shrink the final exon - reduce end position if forward
727          * strand, increase it if reverse
728          */
729         if (exon[x + 1] >= exon[x])
730         {
731           endxon = exon[x + 1] - cdspos + expectedCdsLength;
732         }
733         else
734         {
735           endxon = exon[x + 1] + cdspos - expectedCdsLength;
736         }
737         break;
738       }
739     }
740
741     if (sxpos != -1)
742     {
743       // and trim the exon interval set if necessary
744       int[] nxon = new int[sxpos + 2];
745       System.arraycopy(exon, 0, nxon, 0, sxpos + 2);
746       nxon[sxpos + 1] = endxon; // update the end boundary for the new exon
747                                 // set
748       exon = nxon;
749     }
750     return exon;
751   }
752
753   public String getSequenceVersion()
754   {
755     return sequenceVersion;
756   }
757
758   public void setSequenceVersion(String sequenceVersion)
759   {
760     this.sequenceVersion = sequenceVersion;
761   }
762
763   public String getSequenceLength()
764   {
765     return sequenceLength;
766   }
767
768   public void setSequenceLength(String sequenceLength)
769   {
770     this.sequenceLength = sequenceLength;
771   }
772
773   public String getEntryVersion()
774   {
775     return entryVersion;
776   }
777
778   public void setEntryVersion(String entryVersion)
779   {
780     this.entryVersion = entryVersion;
781   }
782
783   public String getMoleculeType()
784   {
785     return moleculeType;
786   }
787
788   public void setMoleculeType(String moleculeType)
789   {
790     this.moleculeType = moleculeType;
791   }
792
793   public String getTopology()
794   {
795     return topology;
796   }
797
798   public void setTopology(String topology)
799   {
800     this.topology = topology;
801   }
802
803   public String getTaxonomicDivision()
804   {
805     return taxonomicDivision;
806   }
807
808   public void setTaxonomicDivision(String taxonomicDivision)
809   {
810     this.taxonomicDivision = taxonomicDivision;
811   }
812
813   public String getDescription()
814   {
815     return description;
816   }
817
818   public void setDescription(String description)
819   {
820     this.description = description;
821   }
822
823   public String getFirstPublicDate()
824   {
825     return firstPublicDate;
826   }
827
828   public void setFirstPublicDate(String firstPublicDate)
829   {
830     this.firstPublicDate = firstPublicDate;
831   }
832
833   public String getFirstPublicRelease()
834   {
835     return firstPublicRelease;
836   }
837
838   public void setFirstPublicRelease(String firstPublicRelease)
839   {
840     this.firstPublicRelease = firstPublicRelease;
841   }
842
843   public String getLastUpdatedDate()
844   {
845     return lastUpdatedDate;
846   }
847
848   public void setLastUpdatedDate(String lastUpdatedDate)
849   {
850     this.lastUpdatedDate = lastUpdatedDate;
851   }
852
853   public String getLastUpdatedRelease()
854   {
855     return lastUpdatedRelease;
856   }
857
858   public void setLastUpdatedRelease(String lastUpdatedRelease)
859   {
860     this.lastUpdatedRelease = lastUpdatedRelease;
861   }
862
863   public String getDataClass()
864   {
865     return dataClass;
866   }
867
868   public void setDataClass(String dataClass)
869   {
870     this.dataClass = dataClass;
871   }
872 }