Skip to content

Commit

Permalink
MBP-780 Expose new FIMS fields for GenBank Submission
Browse files Browse the repository at this point in the history
- Shorter names
  • Loading branch information
matthew-cheung committed Dec 6, 2016
1 parent 6687b6a commit e8672bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public List<DocumentField> _getCollectionAttributes() {
//fields.add(new DocumentField("Taxon Notes", "", "biocode_collecting_event.TaxonNotes", String.class, false, false));

fields.add(new DocumentField("Country", "", "biocode_collecting_event.Country", String.class, false, false));
fields.add(new DocumentField("Country (GenBank Format)", "", "biocode_collecting_event.genbank_country", String.class, false, false));
fields.add(new DocumentField("Country (GenBank)", "", "biocode_collecting_event.genbank_country", String.class, false, false));
fields.add(new DocumentField("Island", "", "biocode_collecting_event.Island", String.class, false, false));
fields.add(new DocumentField("Island Group", "", "biocode_collecting_event.IslandGroup", String.class, false, false));
fields.add(new DocumentField("State/Province", "", "biocode_collecting_event.StateProvince", String.class, true, false));
Expand All @@ -236,7 +236,7 @@ public List<DocumentField> _getCollectionAttributes() {

fields.add(LONGITUDE_FIELD);
fields.add(LATITUDE_FIELD);
fields.add(new DocumentField("Latitude/Longitude (GenBank Format)", "", "biocode_collecting_event.genbank_latlong", String.class, false, false));
fields.add(new DocumentField("Latitude/Longitude (GenBank)", "", "biocode_collecting_event.genbank_latlong", String.class, false, false));

fields.add(new DocumentField("Minimum Elevation", "", "biocode_collecting_event.MinElevationMeters", Integer.class, false, false));
fields.add(new DocumentField("Maximum Elevation", "", "biocode_collecting_event.MaxElevationMeters", Integer.class, false, false));
Expand Down

0 comments on commit e8672bb

Please sign in to comment.