Changeset 4626
- Timestamp:
- Nov 5, 2008, 10:56:12 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/test/roles/index.html
r4548 r4626 325 325 </tr> 326 326 <tr> 327 <td><i> ReporterID</i></td>327 <td><i>External ID</i></td> 328 328 <td>\oligo_id\</td> 329 329 </tr> … … 373 373 </tr> 374 374 <tr> 375 <td><i> ReporterID</i></td>375 <td><i>External ID</i></td> 376 376 <td>\ID\</td> 377 377 </tr> … … 399 399 </tr> 400 400 <tr> 401 <td><i> ReporterID</i></td>401 <td><i>External ID</i></td> 402 402 <td>\Probe Set ID\</td> 403 403 </tr> -
trunk/src/plugins/core/net/sf/basedb/plugins/PlateFlatFileImporter.java
r4513 r4626 126 126 "reporterColumnMapping", 127 127 "Reporter ID", 128 "Mapping that picks the well's reporter idfrom the data columns. " +128 "Mapping that picks the 'External ID' of the well's reporter from the data columns. " + 129 129 "For example: \\ID\\", 130 130 new StringParameterType(255, null, true) … … 161 161 "reporterPrefix", 162 162 "Reporter ID prefix", 163 "This prefix is prepended to the reporter IDs in the input file.", 163 "This prefix is prepended to the external reporter IDs in the input file before " + 164 "a reporter lookup is performed.", 164 165 new StringParameterType(255, null, false) 165 166 ); -
trunk/src/plugins/core/net/sf/basedb/plugins/RawDataFlatFileImporter.java
r4598 r4626 218 218 "reporterIdColumnMapping", 219 219 "Reporter ID", 220 "Mapping that picks the spot's reporter from the data columns. " +220 "Mapping that picks the 'External ID' of the spot's reporter from the data columns. " + 221 221 "For example: \\ID\\", 222 222 requiredColumnMapping -
trunk/src/plugins/core/net/sf/basedb/plugins/ReporterFlatFileImporter.java
r4513 r4626 129 129 private static final PluginParameter<String> reporterIdColumnMapping = new PluginParameter<String>( 130 130 "reporterIdColumnMapping", 131 " ReporterID",132 "Mapping that picks the reporter's ID from the data columns. " +131 "External ID", 132 "Mapping that picks the reporter's external ID from the data columns. " + 133 133 "For example: \\ID\\", 134 134 requiredColumnMapping -
trunk/src/plugins/core/net/sf/basedb/plugins/ReporterMapFlatFileImporter.java
r4513 r4626 128 128 "reporterIdColumnMapping", 129 129 "Reporter ID", 130 "Mapping that picks the reporter's ID from the data columns. " +130 "Mapping that picks the reporter's external ID from the data columns. " + 131 131 "For example: \\ID\\", 132 132 requiredColumnMapping -
trunk/www/lims/plates/wells/edit_well.jsp
r4511 r4626 147 147 </tr> 148 148 <tr> 149 <td class="prompt">Reporter ID</td>149 <td class="prompt">Reporter External ID</td> 150 150 <td><%=reporter == null ? "<i>- none -</i>" : HTML.encodeTags(reporter.getExternalId())%></td> 151 151 </tr>
Note: See TracChangeset
for help on using the changeset viewer.