JAL-2089 patch broken merge to master for Release 2.10.0b1
[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,
195             getSequenceVersion(), accession);
196     dna.addDBRef(retrievedref);
197     // add map to indicate the sequence is a valid coordinate frame for the
198     // dbref
199     retrievedref.setMap(new Mapping(null, new int[] { 1, dna.getLength() },
200             new int[] { 1, dna.getLength() }, 1, 1));
201
202     /*
203      * transform EMBL Database refs to canonical form
204      */
205     if (dbRefs != null)
206     {
207       for (DBRefEntry dbref : dbRefs)
208       {
209         dbref.setSource(DBRefUtils.getCanonicalName(dbref.getSource()));
210         dna.addDBRef(dbref);
211       }
212     }
213
214     SequenceIdMatcher matcher = new SequenceIdMatcher(peptides);
215     try
216     {
217       for (EmblFeature feature : features)
218       {
219         if (FeatureProperties.isCodingFeature(sourceDb, feature.getName()))
220         {
221           parseCodingFeature(feature, sourceDb, dna, peptides, matcher);
222         }
223       }
224     } catch (Exception e)
225     {
226       System.err.println("EMBL Record Features parsing error!");
227       System.err
228               .println("Please report the following to help@jalview.org :");
229       System.err.println("EMBL Record " + accession);
230       System.err.println("Resulted in exception: " + e.getMessage());
231       e.printStackTrace(System.err);
232     }
233
234     return dna;
235   }
236
237   /**
238    * @param sourceDb
239    * @return
240    */
241   SequenceI makeSequence(String sourceDb)
242   {
243     if (sequence == null)
244     {
245       System.err.println("No sequence was returned for ENA accession "
246               + accession);
247       return null;
248     }
249     SequenceI dna = new Sequence(sourceDb + "|" + accession,
250             sequence.getSequence());
251     return dna;
252   }
253
254   /**
255    * Extracts coding region and product from a CDS feature and properly decorate
256    * it with annotations.
257    * 
258    * @param feature
259    *          coding feature
260    * @param sourceDb
261    *          source database for the EMBLXML
262    * @param dna
263    *          parent dna sequence for this record
264    * @param peptides
265    *          list of protein product sequences for Embl entry
266    * @param matcher
267    *          helper to match xrefs in already retrieved sequences
268    */
269   void parseCodingFeature(EmblFeature feature, String sourceDb,
270           SequenceI dna, List<SequenceI> peptides, SequenceIdMatcher matcher)
271   {
272     boolean isEmblCdna = sourceDb.equals(DBRefSource.EMBLCDS);
273
274     int[] exons = getCdsRanges(feature);
275
276     String translation = null;
277     String proteinName = "";
278     String proteinId = null;
279     Map<String, String> vals = new Hashtable<String, String>();
280
281     /*
282      * codon_start 1/2/3 in EMBL corresponds to phase 0/1/2 in CDS
283      * (phase is required for CDS features in GFF3 format)
284      */
285     int codonStart = 1;
286
287     /*
288      * parse qualifiers, saving protein translation, protein id,
289      * codon start position, product (name), and 'other values'
290      */
291     if (feature.getQualifiers() != null)
292     {
293       for (Qualifier q : feature.getQualifiers())
294       {
295         String qname = q.getName();
296         if (qname.equals("translation"))
297         {
298           // remove all spaces (precompiled String.replaceAll(" ", ""))
299           translation = SPACE_PATTERN.matcher(q.getValues()[0]).replaceAll(
300                   "");
301         }
302         else if (qname.equals("protein_id"))
303         {
304           proteinId = q.getValues()[0].trim();
305         }
306         else if (qname.equals("codon_start"))
307         {
308           try
309           {
310             codonStart = Integer.parseInt(q.getValues()[0].trim());
311           } catch (NumberFormatException e)
312           {
313             System.err.println("Invalid codon_start in XML for "
314                     + accession + ": " + e.getMessage());
315           }
316         }
317         else if (qname.equals("product"))
318         {
319           // sometimes name is returned e.g. for V00488
320           proteinName = q.getValues()[0].trim();
321         }
322         else
323         {
324           // throw anything else into the additional properties hash
325           String[] qvals = q.getValues();
326           if (qvals != null)
327           {
328             String commaSeparated = StringUtils.arrayToSeparatorList(qvals,
329                     ",");
330             vals.put(qname, commaSeparated);
331           }
332         }
333       }
334     }
335
336     DBRefEntry proteinToEmblProteinRef = null;
337     exons = MappingUtils.removeStartPositions(codonStart - 1, exons);
338
339     SequenceI product = null;
340     Mapping dnaToProteinMapping = null;
341     if (translation != null && proteinName != null && proteinId != null)
342     {
343       int translationLength = translation.length();
344
345       /*
346        * look for product in peptides list, if not found, add it
347        */
348       product = matcher.findIdMatch(proteinId);
349       if (product == null)
350       {
351         product = new Sequence(proteinId, translation, 1, translationLength);
352         product.setDescription(((proteinName.length() == 0) ? "Protein Product from "
353                 + sourceDb
354                 : proteinName));
355         peptides.add(product);
356         matcher.add(product);
357       }
358
359       // we have everything - create the mapping and perhaps the protein
360       // sequence
361       if (exons == null || exons.length == 0)
362       {
363         /*
364          * workaround until we handle dna location for CDS sequence
365          * e.g. location="X53828.1:60..1058" correctly
366          */
367         System.err
368                 .println("Implementation Notice: EMBLCDS records not properly supported yet - Making up the CDNA region of this sequence... may be incorrect ("
369                         + sourceDb + ":" + getAccession() + ")");
370         if (translationLength * 3 == (1 - codonStart + dna.getSequence().length))
371         {
372           System.err
373                   .println("Not allowing for additional stop codon at end of cDNA fragment... !");
374           // this might occur for CDS sequences where no features are marked
375           exons = new int[] { dna.getStart() + (codonStart - 1),
376               dna.getEnd() };
377           dnaToProteinMapping = new Mapping(product, exons, new int[] { 1,
378               translationLength }, 3, 1);
379         }
380         if ((translationLength + 1) * 3 == (1 - codonStart + dna
381                 .getSequence().length))
382         {
383           System.err
384                   .println("Allowing for additional stop codon at end of cDNA fragment... will probably cause an error in VAMSAs!");
385           exons = new int[] { dna.getStart() + (codonStart - 1),
386               dna.getEnd() - 3 };
387           dnaToProteinMapping = new Mapping(product, exons, new int[] { 1,
388               translationLength }, 3, 1);
389         }
390       }
391       else
392       {
393         // Trim the exon mapping if necessary - the given product may only be a
394         // fragment of a larger protein. (EMBL:AY043181 is an example)
395
396         if (isEmblCdna)
397         {
398           // TODO: Add a DbRef back to the parent EMBL sequence with the exon
399           // map
400           // if given a dataset reference, search dataset for parent EMBL
401           // sequence if it exists and set its map
402           // make a new feature annotating the coding contig
403         }
404         else
405         {
406           // final product length truncation check
407           int[] cdsRanges = adjustForProteinLength(translationLength, exons);
408           dnaToProteinMapping = new Mapping(product, cdsRanges, new int[] {
409               1, translationLength }, 3, 1);
410           if (product != null)
411           {
412             /*
413              * make xref with mapping from protein to EMBL dna
414              */
415             DBRefEntry proteinToEmblRef = new DBRefEntry(DBRefSource.EMBL,
416                     getSequenceVersion(), proteinId, new Mapping(
417                             dnaToProteinMapping.getMap().getInverse()));
418             product.addDBRef(proteinToEmblRef);
419
420             /*
421              * make xref from protein to EMBLCDS; we assume here that the 
422              * CDS sequence version is same as dna sequence (?!)
423              */
424             MapList proteinToCdsMapList = new MapList(new int[] { 1,
425                 translationLength }, new int[] { 1 + (codonStart - 1),
426                 (codonStart - 1) + 3 * translationLength }, 1, 3);
427             DBRefEntry proteinToEmblCdsRef = new DBRefEntry(
428                     DBRefSource.EMBLCDS, getSequenceVersion(), proteinId,
429                     new Mapping(proteinToCdsMapList));
430             product.addDBRef(proteinToEmblCdsRef);
431
432             /*
433              * make 'direct' xref from protein to EMBLCDSPROTEIN
434              */
435             proteinToEmblProteinRef = new DBRefEntry(proteinToEmblCdsRef);
436             proteinToEmblProteinRef.setSource(DBRefSource.EMBLCDSProduct);
437             proteinToEmblProteinRef.setMap(null);
438             product.addDBRef(proteinToEmblProteinRef);
439           }
440         }
441       }
442
443       /*
444        * add cds features to dna sequence
445        */
446       for (int xint = 0; exons != null && xint < exons.length; xint += 2)
447       {
448         SequenceFeature sf = makeCdsFeature(exons, xint, proteinName,
449                 proteinId, vals, codonStart);
450         sf.setType(feature.getName()); // "CDS"
451         sf.setEnaLocation(feature.getLocation());
452         sf.setFeatureGroup(sourceDb);
453         dna.addSequenceFeature(sf);
454       }
455     }
456
457     /*
458      * add feature dbRefs to sequence, and mappings for Uniprot xrefs
459      */
460     boolean hasUniprotDbref = false;
461     if (feature.dbRefs != null)
462     {
463       boolean mappingUsed = false;
464       for (DBRefEntry ref : feature.dbRefs)
465       {
466         /*
467          * ensure UniProtKB/Swiss-Prot converted to UNIPROT
468          */
469         String source = DBRefUtils.getCanonicalName(ref.getSource());
470         ref.setSource(source);
471         DBRefEntry proteinDbRef = new DBRefEntry(ref.getSource(),
472                 ref.getVersion(), ref.getAccessionId());
473         if (source.equals(DBRefSource.UNIPROT))
474         {
475           String proteinSeqName = DBRefSource.UNIPROT + "|"
476                   + ref.getAccessionId();
477           if (dnaToProteinMapping != null
478                   && dnaToProteinMapping.getTo() != null)
479           {
480             if (mappingUsed)
481             {
482               /*
483                * two or more Uniprot xrefs for the same CDS - 
484                * each needs a distinct Mapping (as to a different sequence)
485                */
486               dnaToProteinMapping = new Mapping(dnaToProteinMapping);
487             }
488             mappingUsed = true;
489
490             /*
491              * try to locate the protein mapped to (possibly by a 
492              * previous CDS feature); if not found, construct it from
493              * the EMBL translation
494              */
495             SequenceI proteinSeq = matcher.findIdMatch(proteinSeqName);
496             if (proteinSeq == null)
497             {
498               proteinSeq = new Sequence(proteinSeqName,
499                       product.getSequenceAsString());
500               matcher.add(proteinSeq);
501               peptides.add(proteinSeq);
502             }
503             dnaToProteinMapping.setTo(proteinSeq);
504             dnaToProteinMapping.setMappedFromId(proteinId);
505             proteinSeq.addDBRef(proteinDbRef);
506             ref.setMap(dnaToProteinMapping);
507           }
508           hasUniprotDbref = true;
509         }
510         if (product != null)
511         {
512           /*
513            * copy feature dbref to our protein product
514            */
515           DBRefEntry pref = proteinDbRef;
516           pref.setMap(null); // reference is direct
517           product.addDBRef(pref);
518           // Add converse mapping reference
519           if (dnaToProteinMapping != null)
520           {
521             Mapping pmap = new Mapping(dna, dnaToProteinMapping.getMap()
522                     .getInverse());
523             pref = new DBRefEntry(sourceDb, getSequenceVersion(),
524                     this.getAccession());
525             pref.setMap(pmap);
526             if (dnaToProteinMapping.getTo() != null)
527             {
528               dnaToProteinMapping.getTo().addDBRef(pref);
529             }
530           }
531         }
532         dna.addDBRef(ref);
533       }
534     }
535
536     /*
537      * if we have a product (translation) but no explicit Uniprot dbref
538      * (example: EMBL AAFI02000057 protein_id EAL65544.1)
539      * then construct mappings to an assumed EMBLCDSPROTEIN accession
540      */
541     if (!hasUniprotDbref && product != null)
542     {
543       if (proteinToEmblProteinRef == null)
544       {
545         // assuming CDSPROTEIN sequence version = dna version (?!)
546         proteinToEmblProteinRef = new DBRefEntry(
547                 DBRefSource.EMBLCDSProduct, getSequenceVersion(), proteinId);
548       }
549       product.addDBRef(proteinToEmblProteinRef);
550
551       if (dnaToProteinMapping != null
552               && dnaToProteinMapping.getTo() != null)
553       {
554         DBRefEntry dnaToEmblProteinRef = new DBRefEntry(
555                 DBRefSource.EMBLCDSProduct, getSequenceVersion(), proteinId);
556         dnaToEmblProteinRef.setMap(dnaToProteinMapping);
557         dnaToProteinMapping.setMappedFromId(proteinId);
558         dna.addDBRef(dnaToEmblProteinRef);
559       }
560     }
561   }
562
563   /**
564    * Helper method to construct a SequenceFeature for one cds range
565    * 
566    * @param exons
567    *          array of cds [start, end, ...] positions
568    * @param exonStartIndex
569    *          offset into the exons array
570    * @param proteinName
571    * @param proteinAccessionId
572    * @param vals
573    *          map of 'miscellaneous values' for feature
574    * @param codonStart
575    *          codon start position for CDS (1/2/3, normally 1)
576    * @return
577    */
578   protected SequenceFeature makeCdsFeature(int[] exons, int exonStartIndex,
579           String proteinName, String proteinAccessionId,
580           Map<String, String> vals, int codonStart)
581   {
582     int exonNumber = exonStartIndex / 2 + 1;
583     SequenceFeature sf = new SequenceFeature();
584     sf.setBegin(Math.min(exons[exonStartIndex], exons[exonStartIndex + 1]));
585     sf.setEnd(Math.max(exons[exonStartIndex], exons[exonStartIndex + 1]));
586     sf.setDescription(String.format("Exon %d for protein '%s' EMBLCDS:%s",
587             exonNumber, proteinName, proteinAccessionId));
588     sf.setPhase(String.valueOf(codonStart - 1));
589     sf.setStrand(exons[exonStartIndex] <= exons[exonStartIndex + 1] ? "+"
590             : "-");
591     sf.setValue(FeatureProperties.EXONPOS, exonNumber);
592     sf.setValue(FeatureProperties.EXONPRODUCT, proteinName);
593     if (!vals.isEmpty())
594     {
595       StringBuilder sb = new StringBuilder();
596       boolean first = true;
597       for (Entry<String, String> val : vals.entrySet())
598       {
599         if (!first)
600         {
601           sb.append(";");
602         }
603         sb.append(val.getKey()).append("=").append(val.getValue());
604         first = false;
605         sf.setValue(val.getKey(), val.getValue());
606       }
607       sf.setAttributes(sb.toString());
608     }
609     return sf;
610   }
611
612   /**
613    * Returns the CDS positions as a single array of [start, end, start, end...]
614    * positions. If on the reverse strand, these will be in descending order.
615    * 
616    * @param feature
617    * @return
618    */
619   protected int[] getCdsRanges(EmblFeature feature)
620   {
621     if (feature.location == null)
622     {
623       return new int[] {};
624     }
625
626     try
627     {
628       List<int[]> ranges = DnaUtils.parseLocation(feature.location);
629       return listToArray(ranges);
630     } catch (ParseException e)
631     {
632       Cache.log.warn(String.format(
633               "Not parsing inexact CDS location %s in ENA %s",
634               feature.location, this.accession));
635       return new int[] {};
636     }
637   }
638
639   /**
640    * Converts a list of [start, end] ranges to a single array of [start, end,
641    * start, end ...]
642    * 
643    * @param ranges
644    * @return
645    */
646   int[] listToArray(List<int[]> ranges)
647   {
648     int[] result = new int[ranges.size() * 2];
649     int i = 0;
650     for (int[] range : ranges)
651     {
652       result[i++] = range[0];
653       result[i++] = range[1];
654     }
655     return result;
656   }
657
658   /**
659    * Truncates (if necessary) the exon intervals to match 3 times the length of
660    * the protein; also accepts 3 bases longer (for stop codon not included in
661    * protein)
662    * 
663    * @param proteinLength
664    * @param exon
665    *          an array of [start, end, start, end...] intervals
666    * @return the same array (if unchanged) or a truncated copy
667    */
668   static int[] adjustForProteinLength(int proteinLength, int[] exon)
669   {
670     if (proteinLength <= 0 || exon == null)
671     {
672       return exon;
673     }
674     int expectedCdsLength = proteinLength * 3;
675     int exonLength = MappingUtils.getLength(Arrays.asList(exon));
676
677     /*
678      * if exon length matches protein, or is shorter, or longer by the 
679      * length of a stop codon (3 bases), then leave it unchanged
680      */
681     if (expectedCdsLength >= exonLength
682             || expectedCdsLength == exonLength - 3)
683     {
684       return exon;
685     }
686
687     int origxon[];
688     int sxpos = -1;
689     int endxon = 0;
690     origxon = new int[exon.length];
691     System.arraycopy(exon, 0, origxon, 0, exon.length);
692     int cdspos = 0;
693     for (int x = 0; x < exon.length; x += 2)
694     {
695       cdspos += Math.abs(exon[x + 1] - exon[x]) + 1;
696       if (expectedCdsLength <= cdspos)
697       {
698         // advanced beyond last codon.
699         sxpos = x;
700         if (expectedCdsLength != cdspos)
701         {
702           // System.err
703           // .println("Truncating final exon interval on region by "
704           // + (cdspos - cdslength));
705         }
706
707         /*
708          * shrink the final exon - reduce end position if forward
709          * strand, increase it if reverse
710          */
711         if (exon[x + 1] >= exon[x])
712         {
713           endxon = exon[x + 1] - cdspos + expectedCdsLength;
714         }
715         else
716         {
717           endxon = exon[x + 1] + cdspos - expectedCdsLength;
718         }
719         break;
720       }
721     }
722
723     if (sxpos != -1)
724     {
725       // and trim the exon interval set if necessary
726       int[] nxon = new int[sxpos + 2];
727       System.arraycopy(exon, 0, nxon, 0, sxpos + 2);
728       nxon[sxpos + 1] = endxon; // update the end boundary for the new exon
729                                 // set
730       exon = nxon;
731     }
732     return exon;
733   }
734
735   public String getSequenceVersion()
736   {
737     return sequenceVersion;
738   }
739
740   public void setSequenceVersion(String sequenceVersion)
741   {
742     this.sequenceVersion = sequenceVersion;
743   }
744
745   public String getSequenceLength()
746   {
747     return sequenceLength;
748   }
749
750   public void setSequenceLength(String sequenceLength)
751   {
752     this.sequenceLength = sequenceLength;
753   }
754
755   public String getEntryVersion()
756   {
757     return entryVersion;
758   }
759
760   public void setEntryVersion(String entryVersion)
761   {
762     this.entryVersion = entryVersion;
763   }
764
765   public String getMoleculeType()
766   {
767     return moleculeType;
768   }
769
770   public void setMoleculeType(String moleculeType)
771   {
772     this.moleculeType = moleculeType;
773   }
774
775   public String getTopology()
776   {
777     return topology;
778   }
779
780   public void setTopology(String topology)
781   {
782     this.topology = topology;
783   }
784
785   public String getTaxonomicDivision()
786   {
787     return taxonomicDivision;
788   }
789
790   public void setTaxonomicDivision(String taxonomicDivision)
791   {
792     this.taxonomicDivision = taxonomicDivision;
793   }
794
795   public String getDescription()
796   {
797     return description;
798   }
799
800   public void setDescription(String description)
801   {
802     this.description = description;
803   }
804
805   public String getFirstPublicDate()
806   {
807     return firstPublicDate;
808   }
809
810   public void setFirstPublicDate(String firstPublicDate)
811   {
812     this.firstPublicDate = firstPublicDate;
813   }
814
815   public String getFirstPublicRelease()
816   {
817     return firstPublicRelease;
818   }
819
820   public void setFirstPublicRelease(String firstPublicRelease)
821   {
822     this.firstPublicRelease = firstPublicRelease;
823   }
824
825   public String getLastUpdatedDate()
826   {
827     return lastUpdatedDate;
828   }
829
830   public void setLastUpdatedDate(String lastUpdatedDate)
831   {
832     this.lastUpdatedDate = lastUpdatedDate;
833   }
834
835   public String getLastUpdatedRelease()
836   {
837     return lastUpdatedRelease;
838   }
839
840   public void setLastUpdatedRelease(String lastUpdatedRelease)
841   {
842     this.lastUpdatedRelease = lastUpdatedRelease;
843   }
844
845   public String getDataClass()
846   {
847     return dataClass;
848   }
849
850   public void setDataClass(String dataClass)
851   {
852     this.dataClass = dataClass;
853   }
854 }