Ignore:
Timestamp:
Feb 7, 2007, 2:13:05 AM (17 years ago)
Author:
Jari Häkkinen
Message:

Removed MeV export of an unneeded reporter column.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plugins/core/net/sf/basedb/plugins/BioAssaySetExporter.java

    r3109 r3112  
    449449    // Data header
    450450    // Reporter headers
    451     out.write("reporterInternalId\treporterID\tlastUpdate\tgeneSymbol");
     451    out.write("reporterInternalId\treporterID\tgeneSymbol");
    452452    for (ExtendedProperty ep : reporterProperties)
    453453      out.write("\t"+ep.getName());
    454     // Number 3 in below statement comes from using three reporter
     454    // Number 2 in below statement comes from using two reporter
    455455    // entries from ReporterData. Below there is dependencies on this
    456     // '3' such as the selectReporter("") in below query.select()
     456    // '2' such as the selectReporter("") in below query.select()
    457457    // statements (and more).
    458     int nof_reporter_columns=3+reporterProperties.size();
     458    int nof_reporter_columns=2+reporterProperties.size();
    459459    // Bioassay headers
    460460    out.write("\texperimentalFactor");
     
    488488    query.select(Dynamic.select(VirtualColumn.COLUMN));
    489489    query.select(Dynamic.selectReporter("externalId"));
    490     query.select(Dynamic.selectReporter("lastUpdate"));
    491490    query.select(Dynamic.selectReporter("symbol"));
    492491    for (ExtendedProperty ep : reporterProperties)
     
    505504    int[] column_reporter= new int[nof_reporter_columns];
    506505    column_reporter[0]=spotData.getIndex("externalId");
    507     column_reporter[1]=spotData.getIndex("lastUpdate");
    508     column_reporter[2]=spotData.getIndex("symbol");
    509     int idx=3;
     506    column_reporter[1]=spotData.getIndex("symbol");
     507    int idx=2;
    510508    for (ExtendedProperty ep : reporterProperties)
    511509    {
Note: See TracChangeset for help on using the changeset viewer.