We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6f76b commit f2e46faCopy full SHA for f2e46fa
api/src/Downstream/Type/LigandFit.php
@@ -56,6 +56,15 @@ function results() {
56
$dat['MODEL_APPAID'] = $appaid;
57
$dat['SOLUTIONS'] = json_decode($json_data);
58
$dat['PARENTAUTOPROCPROGRAM'] = $this->process['PROCESSINGCOMMENTS'];
59
+
60
+ $integrator = $this->_lookup_autoproc(
61
+ null,
62
+ $this->process['PARAMETERS']['scaling_id']
63
+ );
64
+ if ($integrator) {
65
+ $dat['PARENTAUTOPROCPROGRAM'] .= ' (' . $integrator['PROCESSINGPROGRAMS'] . ')';
66
+ $dat['PARENTAUTOPROCPROGRAMID'] = $integrator['AUTOPROCPROGRAMID'];
67
+ }
68
69
$results = new DownstreamResult($this);
70
$results->data = $dat;
0 commit comments