Changeset 3112
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 { -
trunk/www/plugins/org/tigr/microarray/mev/launch_mev.jsp
r3106 r3112 44 44 // file. Columns and row index in MeV starts at 0. Starting column is 45 45 // the sum of: number of extended reporter data (server specific 46 // number) + number of non extended reporter data (currently 4is used46 // number) + number of non extended reporter data (currently 3 is used 47 47 // in mevExport in bioassayset exporter) + the experimental factor 48 48 // column (that is 1). 49 final int column_idx=ExtendedProperties.getProperties("ReporterData").size()+ 5;49 final int column_idx=ExtendedProperties.getProperties("ReporterData").size()+4; 50 50 // The starting row is the sum of: The header line (1) + the number of 51 51 // experimental factor annotations for an experiemnt.
Note: See TracChangeset
for help on using the changeset viewer.