Fixes for biomart in the trunk.

This commit is contained in:
James Taylor
2006-12-19 19:38:42 +00:00
parent 5a226c32ea
commit 7a3e6d9b96
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -229,7 +229,8 @@ class DefaultJobDispatcher( object ):
log.debug( "dispatching job %d to local runner", job_wrapper.job_id )
def dispatch_pbs( self, job_wrapper ):
if "/tools/data_source" in job_wrapper.get_command_line():
command_line = job_wrapper.get_command_line()
if ( command_line is None ) or ( "/tools/data_source" in command_line ):
log.debug( "dispatching job %d to local runner", job_wrapper.job_id )
self.local_job_runner.put( job_wrapper )
else:
+1 -1
View File
@@ -369,7 +369,7 @@ class Tool:
if key in self.param_map:
rval[ key ] = self.param_map[key].to_string( value, app )
else:
rval[ key ] = value
rval[ key ] = str( value )
return rval
def params_to_python( self, params, app ):