chado_linker__featureloc.inc 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. <?php
  2. /**
  3. * Implements hook_info() for fields.
  4. *
  5. * This is a hook provided by the tripal_chado module for offloading the
  6. * hook_field_info() hook for each field to specify.
  7. */
  8. function chado_linker__featureloc_info() {
  9. return array(
  10. 'label' => t('Alignments'),
  11. 'description' => t('Locations on landmark sequences where the feature is aligned.'),
  12. 'default_widget' => 'chado_linker__featureloc_widget',
  13. 'default_formatter' => 'chado_linker__featureloc_formatter',
  14. 'settings' => array(),
  15. 'storage' => array(
  16. 'type' => 'field_chado_storage',
  17. 'module' => 'tripal_chado',
  18. 'active' => TRUE
  19. ),
  20. );
  21. }
  22. /**
  23. * Implements hook_attach_info().
  24. *
  25. * This is a hook provided by the tripal_Chado module. It allows the field
  26. * to specify which bundles it will attach to and to specify thee settings.
  27. *
  28. * @param $entity_type
  29. * @param $entity
  30. * @param $term
  31. *
  32. * @return
  33. * A field array
  34. */
  35. function chado_linker__featureloc_attach_info($entity_type, $bundle, $target) {
  36. $field_info = array();
  37. $table_name = $target['data_table'];
  38. $type_table = $target['type_table'];
  39. $type_field = $target['field'];
  40. $cv_id = $target['cv_id'];
  41. $cvterm_id = $target['cvterm_id'];
  42. // If this is not the feature table then we don't want to attach.
  43. if ($table_name != 'feature') {
  44. return $field_info;
  45. }
  46. $schema = chado_get_schema('featureloc');
  47. $pkey = $schema['primary key'][0];
  48. // Initialize the field array.
  49. $field_info = array(
  50. 'field_name' => 'featureloc',
  51. 'field_type' => 'chado_linker__featureloc',
  52. 'widget_type' => 'chado_linker__featureloc_widget',
  53. 'widget_settings' => array('display_label' => 1),
  54. 'description' => '',
  55. 'label' => 'Alignments',
  56. 'is_required' => 0,
  57. 'cardinality' => FIELD_CARDINALITY_UNLIMITED,
  58. 'storage' => 'field_chado_storage',
  59. 'field_settings' => array(
  60. 'chado_table' => 'featureloc',
  61. 'chado_column' => $pkey,
  62. 'base_table' => 'feature',
  63. 'semantic_web' => array(
  64. 'type' => '',
  65. 'ns' => '',
  66. 'nsurl' => '',
  67. ),
  68. ),
  69. );
  70. }
  71. /**
  72. * Implements hook_widget_info.
  73. *
  74. * This is a hook provided by the tripal_chado module for offloading
  75. * the hook_field_widget_info() hook for each field to specify.
  76. */
  77. function chado_linker__featureloc_widget_info() {
  78. return array(
  79. 'label' => t('Alignment Settings'),
  80. 'field types' => array('chado_linker__featureloc')
  81. );
  82. }
  83. /**
  84. * Implements hook_formatter_info.
  85. *
  86. * This is a hook provided by the tripal_chado module for
  87. * offloading the hook_field_formatter_info() for each field
  88. * to specify.
  89. *
  90. */
  91. function chado_linker__featureloc_formatter_info() {
  92. return array(
  93. 'label' => t('Alignments'),
  94. 'field types' => array('chado_linker__featureloc'),
  95. 'settings' => array(
  96. ),
  97. );
  98. }
  99. /**
  100. * Implements hook_formatter_settings_summary.
  101. *
  102. * This is a hook provided by the tripal_chado module for
  103. * offloading the hook_field_formatter_settings_summary() for each field
  104. * to specify.
  105. *
  106. */
  107. function chado_linker__featureloc_formatter_settings_summary($field, $instance,
  108. $view_mode) {
  109. }
  110. /**
  111. * Provides a settings form for the formatter.
  112. *
  113. * This is a hook provided by the tripal_chado module for
  114. * offloading the hook_field_formatter_settings_form() for each field
  115. * to specify.
  116. */
  117. function chado_linker__featureloc_formatter_settings_form($field, $instance,
  118. $view_mode, $form, &$form_state) {
  119. }
  120. /**
  121. * Validation function for the chado_linker_featureloc_formatter_settings_form.
  122. */
  123. function chado_linker__featureloc_formatter_settings_form_validate(&$form, &$form_state) {
  124. // Place here as an example for validating the settings form.
  125. }
  126. /**
  127. *
  128. */
  129. function chado_linker__featureloc_formatter(&$element, $entity_type, $entity,
  130. $field, $instance, $langcode, $items, $display) {
  131. // Get the settings
  132. $settings = $display['settings'];
  133. foreach ($items as $delta => $item) {
  134. $alignments = $item['featurelocs'];
  135. if (count($alignments) > 0){
  136. // the $headers array is an array of fields to use as the colum headers.
  137. // additional documentation can be found here
  138. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  139. $headers = array('Aligned Feature' ,'Feature Type', 'Alignment Location');
  140. // the $rows array contains an array of rows where each row is an array
  141. // of values for each column of the table in that row. Additional documentation
  142. // can be found here:
  143. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  144. $rows = array();
  145. foreach ($alignments as $alignment){
  146. $feature_name = $alignment->name;
  147. if (property_exists($alignment, 'nid')) {
  148. $feature_name = l($feature_name, "node/" . $alignment->nid);
  149. }
  150. $feature_loc = '';
  151. $strand = '.';
  152. if ($alignment->strand == -1) {
  153. $strand = '-';
  154. }
  155. elseif ($alignment->strand == 1) {
  156. $strand = '+';
  157. }
  158. // if this is a match then make the other location
  159. if(property_exists($alignment, 'right_feature')){
  160. $rstrand = '.';
  161. if ($alignment->right_strand == -1) {
  162. $rstrand = '-';
  163. }
  164. elseif ($alignment->right_strand == 1) {
  165. $rstrand = '+';
  166. }
  167. $feature_loc = $feature->name .":". ($alignment->fmin + 1) . ".." . $alignment->fmax . " " . $strand;
  168. $feature_loc .= "<br>" . $alignment->name .":". ($alignment->right_fmin + 1) . ".." . $alignment->right_fmax . " " . $rstrand;
  169. }
  170. else {
  171. $feature_loc = $alignment->name .":". ($alignment->fmin + 1) . ".." . $alignment->fmax . " " . $strand;
  172. }
  173. $rows[] = array(
  174. $feature_name,
  175. $alignment->type,
  176. $feature_loc
  177. );
  178. }
  179. // the $table array contains the headers and rows array as well as other
  180. // options for controlling the display of the table. Additional
  181. // documentation can be found here:
  182. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  183. $table = array(
  184. 'header' => $headers,
  185. 'rows' => $rows,
  186. 'attributes' => array(
  187. 'id' => 'tripal_feature-table-alignments',
  188. 'class' => 'tripal-data-table'
  189. ),
  190. 'sticky' => FALSE,
  191. 'caption' => '',
  192. 'colgroups' => array(),
  193. 'empty' => '',
  194. );
  195. // once we have our table array structure defined, we call Drupal's theme_table()
  196. // function to generate the table.
  197. $element[$delta] = array(
  198. '#type' => 'markup',
  199. '#markup' => theme_table($table),
  200. );
  201. }
  202. }
  203. }
  204. /**
  205. * Loads the field values with appropriate data.
  206. *
  207. * This function is called by the tripal_chado_field_storage_load() for
  208. * each property managed by the field_chado_storage storage type. This is
  209. * an optional hook function that is only needed if the field has
  210. * multiple form elements.
  211. */
  212. function chado_linker__featureloc_load($field, $entity, $base_table, $record) {
  213. $field_name = $field['field_name'];
  214. $options = array(
  215. 'return_array' => 1,
  216. 'include_fk' => array(
  217. 'srcfeature_id' => array(
  218. 'type_id' => 1,
  219. ),
  220. 'feature_id' => array(
  221. 'type_id' => 1
  222. ),
  223. )
  224. );
  225. $feature = chado_expand_var($record, 'table', 'featureloc', $options);
  226. // get alignments as child
  227. $cfeaturelocs = $feature->featureloc->feature_id;
  228. if (!$cfeaturelocs) {
  229. $cfeaturelocs = array();
  230. }
  231. // get alignment as parent
  232. $pfeaturelocs = $feature->featureloc->srcfeature_id;
  233. if (!$pfeaturelocs) {
  234. $pfeaturelocs = array();
  235. }
  236. // get matched alignments (those with an itermediate 'match' or 'EST_match', etc
  237. $mfeaturelocs = chado_linker__featureloc_get_matched_alignments($feature);
  238. $feature->matched_featurelocs = $mfeaturelocs;
  239. // combine all three alignments into a single array for printing together in
  240. // a single list
  241. $alignments = array();
  242. foreach ($pfeaturelocs as $featureloc) {
  243. // if type is a 'match' then ignore it. We will handle those below
  244. if (preg_match('/(^match$|^.*?_match|match_part)$/', $featureloc->feature_id->type_id->name)) {
  245. continue;
  246. }
  247. $alignment = new stdClass();
  248. $alignment->record = $featureloc;
  249. $alignment->name = $featureloc->feature_id->name;
  250. $alignment->type = $featureloc->feature_id->type_id->name;
  251. $alignment->fmin = $featureloc->fmin;
  252. $alignment->fmax = $featureloc->fmax;
  253. $alignment->phase = $featureloc->phase;
  254. $alignment->strand = $featureloc->strand;
  255. $alignments[] = $alignment;
  256. if (property_exists($featureloc->feature_id, 'nid')) {
  257. $alignment->nid = $featureloc->feature_id->nid;
  258. }
  259. }
  260. foreach ($cfeaturelocs as $featureloc) {
  261. // if type is a 'match' then ignore it. We will handle those below
  262. if (preg_match('/(^match$|^.*?_match|match_part)$/', $featureloc->feature_id->type_id->name)) {
  263. continue;
  264. }
  265. $alignment = new stdClass();
  266. $alignment->record = $featureloc;
  267. $alignment->name = $featureloc->srcfeature_id->name;
  268. $alignment->type = $featureloc->srcfeature_id->type_id->name;
  269. $alignment->fmin = $featureloc->fmin;
  270. $alignment->is_fmin_partial = $featureloc->is_fmin_partial;
  271. $alignment->fmax = $featureloc->fmax;
  272. $alignment->is_fmax_partial = $featureloc->is_fmax_partial;
  273. $alignment->phase = $featureloc->phase;
  274. $alignment->strand = $featureloc->strand;
  275. $alignments[] = $alignment;
  276. if (property_exists($featureloc->srcfeature_id, 'nid')) {
  277. $alignment->nid = $featureloc->srcfeature_id->nid;
  278. }
  279. }
  280. // in matching features, the left feature is always the feature
  281. // provided to this function.
  282. foreach ($mfeaturelocs as $featureloc) {
  283. // get more information about the right feature
  284. $select = array('feature_id' => $featureloc->right_srcfeature_id);
  285. $rfeature = chado_generate_var('feature', $select);
  286. // now add to the list
  287. $alignment = new stdClass();
  288. $alignment->record = $featureloc;
  289. $alignment->right_feature = $rfeature;
  290. $alignment->name = $rfeature->name;
  291. $alignment->type = $rfeature->type_id->name;
  292. $alignment->fmin = $featureloc->left_fmin;
  293. $alignment->is_fmin_partial = $featureloc->left_is_fmin_partial;
  294. $alignment->fmax = $featureloc->left_fmax;
  295. $alignment->is_fmax_partial = $featureloc->left_is_fmax_partial;
  296. $alignment->phase = $featureloc->left_phase;
  297. $alignment->strand = $featureloc->left_strand;
  298. $alignment->right_fmin = $featureloc->right_fmin;
  299. $alignment->right_is_fmin_partial = $featureloc->right_is_fmin_partial;
  300. $alignment->right_fmax = $featureloc->right_fmax;
  301. $alignment->right_is_fmax_partial = $featureloc->right_is_fmax_partial;
  302. $alignment->right_phase = $featureloc->right_phase;
  303. $alignment->right_strand = $featureloc->right_strand;
  304. $alignments[] = $alignment;
  305. if (property_exists($rfeature, 'nid')) {
  306. $alignment->nid = $rfeature->nid;
  307. }
  308. }
  309. $entity->{$field_name}['und'][0]['featurelocs'] = $alignments;
  310. }
  311. /**
  312. * This function is for features that align through an intermediate such
  313. * as 'EST_match' or 'match'. This occurs in the case where two sequences
  314. * align but where one does not align perfectly. Some ESTs may be in a contig
  315. * but not all of the EST. Portions may overhang and not be included in the
  316. * consensus if quality is bad.
  317. * For example:
  318. * Feature 1: Contig --------------------
  319. * Feature 2: EST_match -------
  320. * Feature 3: EST ---------
  321. *
  322. * The feature provided to the function will always be the feature 1. The
  323. * featureloc columns prefixed with 'right' (e.g. right_fmin) belong to the
  324. * alignment of feature 3 with feature 2
  325. *
  326. * Features may align to more than one feature and are not matches. We do
  327. * not want to include these, so we have to filter on the SO terms:
  328. * match, or %_match
  329. *
  330. * @ingroup tripal_feature
  331. */
  332. function chado_linker__featureloc_get_matched_alignments($feature) {
  333. $sql = "
  334. SELECT
  335. FL1.featureloc_id as left_featureloc_id,
  336. FL1.srcfeature_id as left_srcfeature_id,
  337. FL1.feature_id as left_feature_id,
  338. FL1.fmin as left_fmin,
  339. FL1.is_fmin_partial as left_is_fmin_partial,
  340. FL1.fmax as left_fmax,
  341. FL1.is_fmax_partial as left_is_fmax_partial,
  342. FL1.strand as left_strand,
  343. FL1.phase as left_phase,
  344. FL1.locgroup as left_locgroup,
  345. FL1.rank as left_rank,
  346. FL2.featureloc_id as right_featureloc_id,
  347. FL2.srcfeature_id as right_srcfeature_id,
  348. FL2.feature_id as right_feature_id,
  349. FL2.fmin as right_fmin,
  350. FL2.is_fmin_partial as right_is_fmin_partial,
  351. FL2.fmax as right_fmax,
  352. FL2.is_fmax_partial as right_is_fmax_partial,
  353. FL2.strand as right_strand,
  354. FL2.phase as right_phase,
  355. FL2.locgroup as right_locgroup,
  356. FL2.rank as right_rank
  357. FROM {feature} F1
  358. INNER JOIN {featureloc} FL1 on FL1.srcfeature_id = F1.feature_id
  359. INNER JOIN {feature} F2 on FL1.feature_id = F2.feature_id
  360. INNER JOIN {featureloc} FL2 on FL2.feature_id = F2.feature_id
  361. INNER JOIN {cvterm} CVT2 on F2.type_id = CVT2.cvterm_id
  362. WHERE
  363. F1.feature_id = :feature_id AND
  364. (CVT2.name = 'match' or CVT2.name like '%_match')
  365. ORDER BY FL1.fmin
  366. ";
  367. $results = chado_query($sql, array(':feature_id' => $feature->feature_id));
  368. // iterate through the results and add them to our featurelocs array
  369. $featurelocs = array();
  370. while ($fl = $results->fetchObject()) {
  371. // ignore featurelocs where the left and right srcfeature is the same
  372. if (strcmp($fl->left_srcfeature_id, $fl->right_srcfeature_id) == 0) {
  373. continue;
  374. }
  375. $featurelocs[] = $fl ;
  376. }
  377. return $featurelocs;
  378. }
  379. /**
  380. * Implements hook_ws_formatter().
  381. */
  382. function chado_linker__featureloc_ws_formatter(&$element, $entity_type, $entity,
  383. $field, $instance, $items) {
  384. }
  385. /**
  386. * Implements hook_widget().
  387. */
  388. function chado_linker__featureloc_widget(&$widget, $form, $form_state, $field, $instance, $langcode, $items, $delta, $element) {
  389. }
  390. /**
  391. * Callback function for validating the chado_linker_featureloc_widget.
  392. */
  393. function chado_linker__featureloc_widget_validate($element, &$form_state) {
  394. }