Changeset 6464
- Timestamp:
- Nov 3, 2021, 1:27:22 PM (15 months ago)
- Location:
- extensions/net.sf.basedb.reggie/branches/4.33-stable/src/net/sf/basedb/reggie
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/branches/4.33-stable/src/net/sf/basedb/reggie/dao/BioplateType.java
r6049 r6464 109 109 /** 110 110 The definition of the "External library plate" type. It is locked to extracts 111 of subtype {@link Subtype#LIBRARY} and uses 8x12 geometry. TODO -- different geometry??111 of subtype {@link Subtype#LIBRARY} and uses 8x12 geometry. 112 112 @since 2.12 113 113 */ 114 114 public static final BioplateType EXTERNAL_LIBRARY = 115 115 new BioplateType("External library plate", Item.EXTRACT, Subtype.LIBRARY, LockMode.LOCKED_AFTER_ADD, Geometry.EIGHT_BY_TWELVE, "ExternalLibPlate", 4); 116 116 117 /** 118 The definition of the "External library strip" type. It is locked to extracts 119 of subtype {@link Subtype#LIBRARY} and uses 1x8 geometry. 120 @since 4.33.4 121 */ 122 public static final BioplateType EXTERNAL_LIBRARY_STRIP = 123 new BioplateType("External library strip", Item.EXTRACT, Subtype.LIBRARY, LockMode.LOCKED_AFTER_ADD, Geometry.ONE_BY_EIGHT, "ExternalLibStrip", 5); 124 125 117 126 /** 118 127 The definition of the "MIPs plate" type. It is locked to extracts -
extensions/net.sf.basedb.reggie/branches/4.33-stable/src/net/sf/basedb/reggie/dao/Geometry.java
r3571 r6464 48 48 public static final Geometry ONE_BY_TWELVE = new Geometry("12-well (1 × 12)", 1, 12); 49 49 50 /** 51 Plate geometry with 1 row and 8 columns. 52 @since 4.33.4 53 */ 54 public static final Geometry ONE_BY_EIGHT = new Geometry("8-well (1 × 8)", 1, 8); 55 50 56 /** 51 57 Plate geometry with 8 rows and 2 columns. -
extensions/net.sf.basedb.reggie/branches/4.33-stable/src/net/sf/basedb/reggie/servlet/InstallServlet.java
r6421 r6464 358 358 jsonChecks.add(checkPlateGeometry(dc, Geometry.THREE_BY_TWO, createIfMissing)); 359 359 jsonChecks.add(checkPlateGeometry(dc, Geometry.ONE_BY_TWELVE, createIfMissing)); 360 jsonChecks.add(checkPlateGeometry(dc, Geometry.ONE_BY_EIGHT, createIfMissing)); 360 361 jsonChecks.add(checkPlateGeometry(dc, Geometry.NINE_BY_NINE, createIfMissing)); 361 362 jsonChecks.add(checkPlateGeometry(dc, Geometry.EIGHT_BY_TWELVE, createIfMissing)); … … 373 374 jsonChecks.add(checkBioplateType(dc, BioplateType.LIBRARY, createIfMissing)); 374 375 jsonChecks.add(checkBioplateType(dc, BioplateType.EXTERNAL_LIBRARY, createIfMissing)); 376 jsonChecks.add(checkBioplateType(dc, BioplateType.EXTERNAL_LIBRARY_STRIP, createIfMissing)); 375 377 jsonChecks.add(checkBioplateType(dc, BioplateType.NEOPREP, createIfMissing)); 376 378 jsonChecks.add(checkBioplateType(dc, BioplateType.MIPS, createIfMissing));
Note: See TracChangeset
for help on using the changeset viewer.