Changeset 3915
- Timestamp:
- Nov 6, 2007, 11:56:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.4-stable/src/plugins/core/net/sf/basedb/plugins/Base1PluginExecuter.java
r3785 r3915 756 756 } 757 757 } 758 response.setDone(""); 758 759 } 759 760 else … … 1309 1310 BioAssaySet bas = null; 1310 1311 SpotBatcher spotBatcher = null; 1312 Boolean doPositionBatch = null; 1311 1313 1312 1314 HashMap<String, BioAssay> idMap = new HashMap<String, BioAssay>(); … … 1324 1326 { 1325 1327 bas = t.newProduct("new", "new", false); 1328 doPositionBatch = true; 1326 1329 bas.setName(getSourceBioAssaySet(dc).getName()); 1327 1328 1330 List<String> columns = Arrays.asList(ffp.getHeader("columns").split("\\t")); 1329 1331 int idCol = columns.indexOf("id"); … … 1377 1379 if (bas == null) 1378 1380 { 1379 bas = t.newProduct("new", "new", false); 1381 bas = t.newProduct(null, "new", false); 1382 doPositionBatch = false; 1380 1383 } 1381 1384 spotBatcher = bas.getSpotBatcher(); … … 1537 1540 1538 1541 //Batch reporters 1539 if (bas != null )1542 if (bas != null && doPositionBatch) 1540 1543 { 1541 1544 PositionBatcher posBatcher = bas.getPositionBatcher();
Note: See TracChangeset
for help on using the changeset viewer.