Changeset 2123


Ignore:
Timestamp:
Nov 6, 2013, 2:01:27 PM (10 years ago)
Author:
Nicklas Nordborg
Message:

References #489: Histology scoring wizard

Information about the next set of HE glass is now retreived and a GUI is created. There is functionality for selecting which sample to score, enter scores and setting the GoodStain annotation. Some validation has been implemented, but it is not possible to save data back to BASE. Manually selecting a different HE glass is not implemented.

Location:
extensions/net.sf.basedb.reggie/branches/ticket-489
Files:
5 added
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/net.sf.basedb.reggie/branches/ticket-489/src/net/sf/basedb/reggie/dao/HeGlass.java

    r2117 r2123  
    7070    json.put("tray", heGlass.getTray());
    7171    json.put("position", heGlass.getPosition());
    72     json.put("comment", heGlass.getDescription());
     72    json.put("comments", heGlass.getDescription());
    7373   
    7474    if (jsonSamples != null)
     
    9797      jsonSample.put("name", s.getName());
    9898      jsonSample.put("well", JsonUtil.getBioWellAsJSON(s.getBioWell(), false));
     99      jsonSample.put("comments", s.getDescription());
    99100     
    100101      jsonSample.put("GoodStain", Annotationtype.GOOD_STAIN.getAnnotationValue(dc, s));
Note: See TracChangeset for help on using the changeset viewer.