analysis; $analysis = chado_expand_var($analysis, 'field', 'analysis.description'); ?>
'Analysis Name', 'header' => TRUE, 'width' => '20%', ], $analysis->name, ]; // Implementation row $software = $analysis->program; if ($analysis->programversion != 'n/a') { $software .= " (" . $analysis->programversion . ")"; } if ($analysis->algorithm) { $software .= ". " . $analysis->algorithm; } $rows[] = [ [ 'data' => 'Method', 'header' => TRUE, ], $software, ]; // Source row $source = ''; if ($analysis->sourceuri) { $source = "sourceuri\">$analysis->sourcename"; } else { $source = $analysis->sourcename; } if ($analysis->sourceversion) { $source = " (" . $analysis->sourceversion . ")"; } $rows[] = [ [ 'data' => 'Source', 'header' => TRUE, ], $source, ]; // Date performed row $rows[] = [ [ 'data' => 'Date performed', 'header' => TRUE, ], preg_replace("/^(\d+-\d+-\d+) .*/", "$1", $analysis->timeexecuted), ]; // allow site admins to see the analysis ID if (user_access('view ids')) { // Analysis ID $rows[] = [ [ 'data' => 'Analysis ID', 'header' => TRUE, 'class' => 'tripal-site-admin-only-table-row', ], [ 'data' => $analysis->analysis_id, 'class' => 'tripal-site-admin-only-table-row', ], ]; } // the $table array contains the headers and rows array as well as other // options for controlling the display of the table. Additional // documentation can be found here: // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7 $table = [ 'header' => $headers, 'rows' => $rows, 'attributes' => [ 'id' => 'tripal_analysis-table-base', 'class' => 'tripal-data-table', ], 'sticky' => FALSE, 'caption' => '', 'colgroups' => [], 'empty' => '', ]; // once we have our table array structure defined, we call Drupal's theme_table() // function to generate the table. print theme_table($table); if (property_exists($analysis, 'description')) { ?>
description; ?>