commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/3b6cdcd97595/ Changeset: 3b6cdcd97595 Branch: stable User: jmchilton Date: 2013-11-30 15:28:38 Summary: Fix from Jim Johnson for optional input handling in provenance API. Affected #: 1 file diff -r 51b4282dce3a411d02b982d1cca137884d5f6c2b -r 3b6cdcd9759595335cacd06b960efa6d96faaf72 lib/galaxy/webapps/galaxy/api/provenance.py --- a/lib/galaxy/webapps/galaxy/api/provenance.py +++ b/lib/galaxy/webapps/galaxy/api/provenance.py @@ -54,6 +54,8 @@ for p in job.parameters: out[p.name] = p.value for in_d in job.input_datasets: + if not in_d.dataset: + continue if follow: out[in_d.name] = self._get_record(trans, in_d.dataset, follow) else: https://bitbucket.org/galaxy/galaxy-central/commits/2b5329b6fba3/ Changeset: 2b5329b6fba3 User: jmchilton Date: 2013-11-30 15:29:06 Summary: Merge latest stable. Affected #: 1 file diff -r 228156daa575892f92d81c30a7e0f0ec4fa6b960 -r 2b5329b6fba3a5d332e734139b30a14d48a680a3 lib/galaxy/webapps/galaxy/api/provenance.py --- a/lib/galaxy/webapps/galaxy/api/provenance.py +++ b/lib/galaxy/webapps/galaxy/api/provenance.py @@ -58,6 +58,8 @@ for p in job.parameters: out[p.name] = p.value for in_d in job.input_datasets: + if not in_d.dataset: + continue if follow: out[in_d.name] = self._get_record(trans, in_d.dataset, follow) else: 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