Changeset 4036
- Timestamp:
- Dec 5, 2007, 9:39:17 AM (16 years ago)
- Location:
- trunk/src/clients/migrate/net/sf/basedb/clients/migrate
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/migrate/net/sf/basedb/clients/migrate/PluginTransfer.java
r3683 r4036 182 182 catch (BaseException e) 183 183 { 184 log.warn("Couldn't create configuration file[" + base1Properties + "] for BASE 1 plugin ");185 if (log.isDebugEnabled()) log.debug(" \t" +e);184 log.warn("Couldn't create configuration file[" + base1Properties + "] for BASE 1 plugin: " + e.getMessage()); 185 if (log.isDebugEnabled()) log.debug("", e); 186 186 } 187 187 catch (SQLException e) -
trunk/src/clients/migrate/net/sf/basedb/clients/migrate/WizzzardTransfer.java
r3683 r4036 96 96 setCommonItemData(dc, pluginConfiguration, rs); 97 97 PluginConfigurationRequest request = pluginConfiguration.configure(); 98 // Always allow complex column mappings, just in case 99 request.setParameterValue("complexExpressions", "allow"); 98 100 99 101 String dataHeaderRegexp = fixRegexp(rs.getString(12)); … … 124 126 request.setParameterValue("minDataColumns", minDataColumns); 125 127 request.setParameterValue("maxDataColumns", maxDataColumns); 128 // Always allow complex column mappings, just in case 129 request.setParameterValue("complexExpressions", "allow"); 126 130 // RawBioAssayData 127 131 request.setParameterValue( … … 288 292 "reporterIdColumnMapping", mappings.get("reporterId")); 289 293 request.setParameterValue( 290 "symbolColumnMapping", mappings.get("geneSymbol")); 291 request.setParameterValue( 292 "nameColumnMapping", mappings.get("geneName")); 294 "blockColumnMapping", mappings.get("_r_block")); 295 request.setParameterValue( 296 "rowColumnMapping", mappings.get("_r_y")); 297 request.setParameterValue( 298 "columnColumnMapping", mappings.get("_r_x")); 293 299 } 294 300 else … … 319 325 catch (BaseException e) 320 326 { 321 log.warn("The wizzard [" + base1Properties + "] could not be transfered ");322 if (log.isDebugEnabled()) log.debug(" \t" +e);327 log.warn("The wizzard [" + base1Properties + "] could not be transfered:" + e.getMessage() ); 328 if (log.isDebugEnabled()) log.debug("", e); 323 329 } 324 330 catch (SQLException e)
Note: See TracChangeset
for help on using the changeset viewer.