Changeset 4626


Ignore:
Timestamp:
Nov 5, 2008, 10:56:12 AM (14 years ago)
Author:
Nicklas Nordborg
Message:

Fixes #1164: Reporter importer plug-in displays 'Reporter ID' when setting column mappings... should be 'External ID'

Decided to keep 'Reporter ID' on other plug-ins and only calrify the description since if using 'External ID' it is not clear what this references (eg. spot external id, feature external id...)

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/test/roles/index.html

    r4548 r4626  
    325325      </tr>
    326326      <tr>
    327         <td><i>Reporter ID</i></td>
     327        <td><i>External ID</i></td>
    328328        <td>\oligo_id\</td>
    329329      </tr>
     
    373373      </tr>
    374374      <tr>
    375         <td><i>Reporter ID</i></td>
     375        <td><i>External ID</i></td>
    376376        <td>\ID\</td>
    377377      </tr>
     
    399399      </tr>
    400400      <tr>
    401         <td><i>Reporter ID</i></td>
     401        <td><i>External ID</i></td>
    402402        <td>\Probe Set ID\</td>
    403403      </tr>
  • trunk/src/plugins/core/net/sf/basedb/plugins/PlateFlatFileImporter.java

    r4513 r4626  
    126126    "reporterColumnMapping",
    127127    "Reporter ID",
    128     "Mapping that picks the well's reporter id from the data columns. " +
     128    "Mapping that picks the 'External ID' of the well's reporter from the data columns. " +
    129129    "For example: \\ID\\",
    130130    new StringParameterType(255, null, true)
     
    161161    "reporterPrefix",
    162162    "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.",
    164165    new StringParameterType(255, null, false)
    165166  );
  • trunk/src/plugins/core/net/sf/basedb/plugins/RawDataFlatFileImporter.java

    r4598 r4626  
    218218    "reporterIdColumnMapping",
    219219    "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. " +
    221221    "For example: \\ID\\",
    222222    requiredColumnMapping
  • trunk/src/plugins/core/net/sf/basedb/plugins/ReporterFlatFileImporter.java

    r4513 r4626  
    129129  private static final PluginParameter<String> reporterIdColumnMapping = new PluginParameter<String>(
    130130    "reporterIdColumnMapping",
    131     "Reporter ID",
    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. " +
    133133    "For example: \\ID\\",
    134134    requiredColumnMapping
  • trunk/src/plugins/core/net/sf/basedb/plugins/ReporterMapFlatFileImporter.java

    r4513 r4626  
    128128    "reporterIdColumnMapping",
    129129    "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. " +
    131131    "For example: \\ID\\",
    132132    requiredColumnMapping
  • trunk/www/lims/plates/wells/edit_well.jsp

    r4511 r4626  
    147147      </tr>
    148148      <tr>
    149         <td class="prompt">Reporter ID</td>
     149        <td class="prompt">Reporter External ID</td>
    150150        <td><%=reporter == null ? "<i>- none -</i>" : HTML.encodeTags(reporter.getExternalId())%></td>
    151151      </tr>
Note: See TracChangeset for help on using the changeset viewer.