commit/galaxy-central: jmchilton: Small cleanup to lib/galaxy/tools/evaluation.py.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/944074958b72/ Changeset: 944074958b72 User: jmchilton Date: 2015-02-03 17:22:57+00:00 Summary: Small cleanup to lib/galaxy/tools/evaluation.py. Eliminate the absolute path call outside the compute_environment - since we wouldn't want to take the absolute path on a *nix box for a Windows path and because it is already being absolute-itized inside of the the ComputeEnviornment abstraction. Eliminate TODO comment that has already been TODONE. Affected #: 1 file diff -r 99a7a07c6ffba2948b2e1197a3a33554f60126ba -r 944074958b72d49757455a07a503024e631d15a6 lib/galaxy/tools/evaluation.py --- a/lib/galaxy/tools/evaluation.py +++ b/lib/galaxy/tools/evaluation.py @@ -353,8 +353,7 @@ # More convienent access to app.config.new_file_path; we don't need to # wrap a string, but this method of generating additional datasets # should be considered DEPRECATED - # TODO: path munging for cluster/dataset server relocatability - param_dict['__new_file_path__'] = os.path.abspath(self.compute_environment.new_file_path()) + param_dict['__new_file_path__'] = self.compute_environment.new_file_path() # The following points to location (xxx.loc) files which are pointers # to locally cached data param_dict['__tool_data_path__'] = param_dict['GALAXY_DATA_INDEX_DIR'] = self.app.config.tool_data_path Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org