chado_linker__featureloc.inc 12 KB

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