chado_linker__featureloc.inc 14 KB

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