Changeset 3516
- Timestamp:
- Oct 1, 2015, 12:55:22 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.meludi/trunk/src/net/sf/basedb/meludi/servlet/ExtractionServlet.java
r3502 r3516 2915 2915 if (extractList != null) 2916 2916 { 2917 // Get first extract member item 2918 Extract e = (Extract)extractList.get(0); 2917 // Get first extract member item that was processed from specimen 2918 Extract e = null; 2919 for (Extract extract: extractList) 2920 { 2921 // Exclude input DNA and RNA, since these lack lot number annotations 2922 if (extract != null && !Meludi.itemIsExtractSourceItem(extract.getName())) 2923 { 2924 e = extract; 2925 break; 2926 } 2927 } 2919 2928 if (e != null) 2920 2929 {
Note: See TracChangeset
for help on using the changeset viewer.