Changeset 4132
- Timestamp:
- Feb 8, 2008, 11:18:11 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/core/net/sf/basedb/plugins/IlluminaRawDataImporter.java
r4124 r4132 83 83 import net.sf.basedb.core.query.Restrictions; 84 84 import net.sf.basedb.plugins.util.Parameters; 85 import net.sf.basedb.util.Coordinate; 85 86 import net.sf.basedb.util.error.SimpleErrorHandler; 86 87 import net.sf.basedb.util.parser.ColumnMapper; … … 603 604 String propertyName = m.group(1); 604 605 String arrayName = m.group(2); 606 String lastInName = arrayName.substring(arrayName.length()-1); 607 int arrayNum = Coordinate.alphaToNumeric(lastInName); 608 if (arrayNum <= 0) arrayNum = 1; 605 609 // Check if raw data property exists 606 610 if (illumina.getProperty(propertyName) == null) … … 621 625 RawBioAssay rba = RawBioAssay.getNew(dc, generic, illumina); 622 626 rba.setName(arrayName); 627 rba.setArrayNum(arrayNum); 623 628 if (design != null) rba.setArrayDesign(design); 624 629 if (scan != null) rba.setScan(scan);
Note: See TracChangeset
for help on using the changeset viewer.