Changeset 3112 for trunk/src/plugins/core
- Timestamp:
- Feb 7, 2007, 2:13:05 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/core/net/sf/basedb/plugins/BioAssaySetExporter.java
r3109 r3112 449 449 // Data header 450 450 // Reporter headers 451 out.write("reporterInternalId\treporterID\t lastUpdate\tgeneSymbol");451 out.write("reporterInternalId\treporterID\tgeneSymbol"); 452 452 for (ExtendedProperty ep : reporterProperties) 453 453 out.write("\t"+ep.getName()); 454 // Number 3 in below statement comes from using threereporter454 // Number 2 in below statement comes from using two reporter 455 455 // 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() 457 457 // statements (and more). 458 int nof_reporter_columns= 3+reporterProperties.size();458 int nof_reporter_columns=2+reporterProperties.size(); 459 459 // Bioassay headers 460 460 out.write("\texperimentalFactor"); … … 488 488 query.select(Dynamic.select(VirtualColumn.COLUMN)); 489 489 query.select(Dynamic.selectReporter("externalId")); 490 query.select(Dynamic.selectReporter("lastUpdate"));491 490 query.select(Dynamic.selectReporter("symbol")); 492 491 for (ExtendedProperty ep : reporterProperties) … … 505 504 int[] column_reporter= new int[nof_reporter_columns]; 506 505 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; 510 508 for (ExtendedProperty ep : reporterProperties) 511 509 {
Note: See TracChangeset
for help on using the changeset viewer.