chado_feature__residues.inc 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. <?php
  2. class chado_feature__residues extends TripalField {
  3. // The default lable for this field.
  4. public static $default_label = 'Sequences';
  5. // The default description for this field.
  6. public static $default_description = 'A field for managing nucleotide and protein residues.';
  7. // Add any default settings elements. If you override the globalSettingsForm()
  8. // or the instanceSettingsForm() functions then you need to be sure that
  9. // any settings you want those functions to manage are listed in this
  10. // array.
  11. public static $default_settings = array(
  12. 'chado_table' => '',
  13. 'chado_column' => '',
  14. 'base_table' => '',
  15. 'semantic_web' => '',
  16. );
  17. // Set this to the name of the storage backend that by default will support
  18. // this field.
  19. public static $default_storage = 'field_chado_storage';
  20. /**
  21. * @see TripalField::setFieldName()
  22. */
  23. protected function setFieldName() {
  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. $this->field_name = 'feature__residues';
  30. }
  31. /**
  32. * @see TripalField::create_info()
  33. */
  34. function createInfo() {
  35. if (!$this->can_attach) {
  36. return;
  37. }
  38. $table_name = $this->details['chado_table'];
  39. $type_table = $this->details['chado_type_table'];
  40. $type_field = $this->details['chado_type_column'];
  41. $cv_id = $this->details['chado_cv_id'];
  42. $cvterm_id = $this->details['chado_cvterm_id'];
  43. return array(
  44. 'field_name' => $this->field_name,
  45. 'type' => 'chado_feature__residues',
  46. 'cardinality' => 1,
  47. 'locked' => FALSE,
  48. 'storage' => array(
  49. 'type' => 'field_chado_storage',
  50. ),
  51. 'settings' => array(
  52. 'chado_table' => $table_name,
  53. 'chado_column' => 'residues',
  54. 'semantic_web' => tripal_get_chado_semweb_term($table_name, 'residues'),
  55. ),
  56. );
  57. }
  58. /**
  59. * @see TripalField::createInstanceInfo()
  60. */
  61. function createInstanceInfo() {
  62. if (!$this->can_attach) {
  63. return;
  64. }
  65. $table_name = $this->details['chado_table'];
  66. $type_table = $this->details['chado_type_table'];
  67. $type_field = $this->details['chado_type_column'];
  68. $cv_id = $this->details['chado_cv_id'];
  69. $cvterm_id = $this->details['chado_cvterm_id'];
  70. return array(
  71. 'field_name' => $this->field_name,
  72. 'entity_type' => $this->entity_type,
  73. 'bundle' => $this->bundle->name,
  74. 'label' => 'Sequences',
  75. 'description' => 'All available sequences for this record.',
  76. 'required' => FALSE,
  77. 'settings' => array(
  78. 'auto_attach' => FALSE,
  79. ),
  80. 'widget' => array(
  81. 'type' => 'chado_feature__residues_widget',
  82. 'settings' => array(
  83. 'display_label' => 1,
  84. ),
  85. ),
  86. 'display' => array(
  87. 'default' => array(
  88. 'label' => 'above',
  89. 'type' => 'chado_feature__residues_formatter',
  90. 'settings' => array(),
  91. ),
  92. ),
  93. );
  94. }
  95. /**
  96. * @see TripalField::widgetInfo()
  97. */
  98. public static function widgetInfo() {
  99. return array(
  100. 'chado_feature__residues_widget' => array(
  101. 'label' => t('Sequence'),
  102. 'field types' => array('chado_feature__residues'),
  103. ),
  104. );
  105. }
  106. /**
  107. * @see TripalField::formatterInfo()
  108. */
  109. static function formatterInfo() {
  110. return array(
  111. 'chado_feature__residues_formatter' => array(
  112. 'label' => t('Sequences'),
  113. 'field types' => array('chado_feature__residues'),
  114. ),
  115. );
  116. }
  117. /**
  118. * @see TripalField::formatterView()
  119. */
  120. public function formatterView(&$element, $entity_type, $entity, $langcode, $items, $display) {
  121. $element[0] = array(
  122. // We create a render array to produce the desired markup,
  123. '#type' => 'markup',
  124. '#markup' => '',
  125. );
  126. $num_bases = 50;
  127. foreach ($items as $delta => $item) {
  128. // If there are no residues then skip this one.
  129. if (!is_array($item['value']) or !array_key_exists('residues', $item['value'])) {
  130. continue;
  131. }
  132. $residues = $item['value']['residues'];
  133. $label = $item['value']['label'];
  134. $defline = $item['value']['defline'];
  135. $content = '<p>' . $label . '<p>';
  136. $content .= '<pre class="residues-formatter">';
  137. $content .= '>' . $defline . "<br>";
  138. $content .= wordwrap($residues, $num_bases, "<br>", TRUE);
  139. $content .= '</pre>';
  140. $element[$delta] = array(
  141. // We create a render array to produce the desired markup,
  142. '#type' => 'markup',
  143. '#markup' => $content,
  144. );
  145. }
  146. }
  147. /**
  148. * @see TripalField::widgetForm()
  149. */
  150. public function widgetForm(&$widget, &$form, &$form_state, $langcode, $items, $delta, $element) {
  151. $settings = $this->field['settings'];
  152. $field_name = $this->field['field_name'];
  153. $field_type = $this->field['type'];
  154. $field_table = $this->field['settings']['chado_table'];
  155. $field_column = $this->field['settings']['chado_column'];
  156. // Get the field defaults.
  157. $residues = '';
  158. if (count($items) > 0 and array_key_exists('feature__residues', $items[0])) {
  159. $residues = $items[0]['feature__residues'];
  160. }
  161. if (array_key_exists('values', $form_state)) {
  162. //$residues = tripal_chado_get_field_form_values($field_name, $form_state, 0, 'feature__residues');
  163. }
  164. $widget['value'] = array(
  165. '#type' => 'value',
  166. '#value' => array_key_exists($delta, $items) ? $items[$delta]['value'] : '',
  167. );
  168. $widget['feature__residues'] = array(
  169. '#type' => 'textarea',
  170. '#title' => $element['#title'],
  171. '#description' => $element['#description'],
  172. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  173. '#default_value' => $residues,
  174. '#delta' => $delta,
  175. // '#element_validate' => array('chado_feature__residues_widget_validate'),
  176. '#cols' => 30,
  177. );
  178. }
  179. /**
  180. * @see TripalField::load()
  181. */
  182. public function load($entity, $details = array()) {
  183. $field_name = $this->field['field_name'];
  184. $feature = $details['record'];
  185. $num_seqs = 0;
  186. // We don't want to get the sequence for traditionally large types. They are
  187. // too big, bog down the web browser, take longer to load and it's not
  188. // reasonable to print them on a page.
  189. if(strcmp($feature->type_id->name,'scaffold') == 0 or
  190. strcmp($feature->type_id->name,'chromosome') == 0 or
  191. strcmp($feature->type_id->name,'supercontig') == 0 or
  192. strcmp($feature->type_id->name,'pseudomolecule') == 0) {
  193. $entity->{$field_name}['und'][$num_seqs]['value'] = array(
  194. '@type' => 'SO:0000110',
  195. 'type' => 'sequence_feature',
  196. 'label' => 'Residues',
  197. 'defline' => ">This sequence is too large for this display.",
  198. 'residues' => '',
  199. );
  200. $entity->{$field_name}['und'][$num_seqs]['feature__residues'] = '';
  201. }
  202. else {
  203. $feature = chado_expand_var($feature,'field','feature.residues');
  204. if ($feature->residues) {
  205. $entity->{$field_name}['und'][$num_seqs]['value'] = array(
  206. '@type' => 'SO:0000110',
  207. 'type' => 'sequence_feature',
  208. 'label' => 'Raw Sequence',
  209. 'defline' => tripal_get_fasta_defline($feature, '', NULL, '', strlen($feature->residues)),
  210. 'residues' => $feature->residues,
  211. );
  212. $entity->{$field_name}['und'][$num_seqs]['feature__residues'] = $feature->residues;
  213. }
  214. else {
  215. $entity->{$field_name}['und'][$num_seqs]['value'] = array();
  216. $entity->{$field_name}['und'][$num_seqs]['feature__residues'] = '';
  217. }
  218. }
  219. $num_seqs++;
  220. // Add in the protein sequences. It's faster to provide the SQL rather than
  221. // to use chado_generate_var based on the type.
  222. $sql = "
  223. SELECT F.*
  224. FROM {feature_relationship} FR
  225. INNER JOIN {feature} F on FR.subject_id = F.feature_id
  226. INNER JOIN {cvterm} CVT on CVT.cvterm_id = F.type_id
  227. INNER JOIN {cvterm} RCVT on RCVT.cvterm_id = FR.type_id
  228. WHERE
  229. FR.object_id = :feature_id and
  230. CVT.name = 'polypeptide' and
  231. RCVT.name = 'derives_from'
  232. ORDER BY FR.rank ASC
  233. ";
  234. $results = chado_query($sql, array(':feature_id' => $feature->feature_id));
  235. while ($protein = $results->fetchObject()) {
  236. if ($protein->residues) {
  237. $entity->{$field_name}['und'][$num_seqs++]['value'] = array(
  238. '@type' => 'SO:0000104',
  239. 'type' => 'polypeptide',
  240. 'label' => 'Protein Sequence',
  241. 'defline' => tripal_get_fasta_defline($protein, '', NULL, '', strlen($protein->residues)),
  242. 'residues' => $protein->residues,
  243. );
  244. }
  245. }
  246. // Add in sequences from alignments.
  247. $options = array(
  248. 'return_array' => 1,
  249. 'include_fk' => array(
  250. 'srcfeature_id' => array(
  251. 'type_id' => 1
  252. ),
  253. 'feature_id' => array(
  254. 'type_id' => 1
  255. ),
  256. ),
  257. );
  258. $feature = chado_expand_var($feature, 'table', 'featureloc', $options);
  259. $featureloc_sequences = self::get_featureloc_sequences($feature->feature_id, $feature->featureloc->feature_id);
  260. // Add in the coding sequences. It's faster to provide the SQL rather than
  261. // to use chado_generate_var based on the type.
  262. $sql = "
  263. SELECT F.*
  264. FROM {feature_relationship} FR
  265. INNER JOIN {feature} F on FR.subject_id = F.feature_id
  266. INNER JOIN {cvterm} CVT on CVT.cvterm_id = F.type_id
  267. INNER JOIN {cvterm} RCVT on RCVT.cvterm_id = FR.type_id
  268. INNER JOIN {featureloc} FL on FL.feature_id = F.feature_id
  269. WHERE
  270. FR.object_id = :feature_id and
  271. CVT.name = 'CDS' and
  272. RCVT.name = 'part_of'
  273. ORDER BY FR.rank ASC
  274. ";
  275. $results = chado_query($sql, array(':feature_id' => $feature->feature_id));
  276. $coding_seq = '';
  277. while ($CDS = $results->fetchObject()) {
  278. if ($CDS->residues) {
  279. $coding_seq .= $CDS->residues;
  280. }
  281. }
  282. if ($coding_seq) {
  283. $entity->{$field_name}['und'][$num_seqs++]['value'] = array(
  284. '@type' => 'SO:0000316',
  285. 'type' => 'coding_sequence',
  286. 'label' => 'Coding sequence (CDS)',
  287. 'defline' => tripal_get_fasta_defline($feature, 'CDS', NULL, '', strlen($coding_seq)),
  288. 'residues' => $coding_seq,
  289. );
  290. }
  291. foreach($featureloc_sequences as $src => $attrs){
  292. // the $attrs array has the following keys
  293. // * id: a unique identifier combining the feature id with the cvterm id
  294. // * type: the type of sequence (e.g. mRNA, etc)
  295. // * location: the alignment location
  296. // * defline: the definition line
  297. // * formatted_seq: the formatted sequences
  298. // * featureloc: the feature object aligned to
  299. $entity->{$field_name}['und'][$num_seqs++]['value'] = array(
  300. 'residues' => $attrs['residues'],
  301. '@type' => 'SO:0000110',
  302. 'type' => 'sequence_feature',
  303. 'defline' => tripal_get_fasta_defline($feature, '', $attrs['featureloc'], 'CDS', strlen($attrs['residues'])),
  304. 'label' => 'Sequence from alignment at ' . $attrs['location'],
  305. );
  306. // check to see if this alignment has any CDS. If so, generate a CDS sequence
  307. $cds_sequence = tripal_get_feature_sequences(
  308. array(
  309. 'feature_id' => $feature->feature_id,
  310. 'parent_id' => $attrs['featureloc']->srcfeature_id->feature_id,
  311. 'name' => $feature->name,
  312. 'featureloc_id' => $attrs['featureloc']->featureloc_id,
  313. ),
  314. array(
  315. 'derive_from_parent' => 1, // CDS are in parent-child relationships so we want to use the sequence from the parent
  316. 'aggregate' => 1, // we want to combine all CDS for this feature into a single sequence
  317. 'sub_feature_types' => array('CDS'), // we're looking for CDS features
  318. 'is_html' => 0
  319. )
  320. );
  321. if (count($cds_sequence) > 0) {
  322. // the tripal_get_feature_sequences() function can return multiple sequences
  323. // if a feature is aligned to multiple places. In the case of CDSs we expect
  324. // that one mRNA is only aligned to a single location on the assembly so we
  325. // can access the CDS sequence with index 0.
  326. if ($cds_sequence[0]['residues']) {
  327. $entity->{$field_name}['und'][$num_seqs++]['value'] = array(
  328. 'residues' => $cds_sequence[0]['residues'],
  329. '@type' => 'SO:0000316',
  330. 'type' => 'coding_sequence',
  331. 'defline' => tripal_get_fasta_defline($feature, '', $attrs['featureloc'], 'CDS', $cds_sequence[0]['length']),
  332. 'label' => 'Coding sequence (CDS) from alignment at ' . $attrs['location'],
  333. );
  334. }
  335. }
  336. }
  337. }
  338. /**
  339. *
  340. * @param unknown $feature_id
  341. * @param unknown $featurelocs
  342. * @return multitype:|Ambigous <multitype:, an>
  343. */
  344. private static function get_featureloc_sequences($feature_id, $featurelocs) {
  345. // if we don't have any featurelocs then no point in continuing
  346. if (!$featurelocs) {
  347. return array();
  348. }
  349. // get the list of relationships (including any aggregators) and iterate
  350. // through each one to find information needed to color-code the reference sequence
  351. $relationships = self::get_aggregate_relationships($feature_id);
  352. if (!$relationships) {
  353. return array();
  354. }
  355. // iterate through each of the realtionships features and get their
  356. // locations
  357. foreach ($relationships as $rindex => $rel) {
  358. // get the featurelocs for each of the relationship features
  359. $rel_featurelocs = self::get_featurelocs($rel->subject_id, 'as_child', 0);
  360. foreach ($rel_featurelocs as $rfindex => $rel_featureloc) {
  361. // keep track of this unique source feature
  362. $src = $rel_featureloc->src_feature_id . "-" . $rel_featureloc->src_cvterm_id;
  363. // copy over the results to the relationship object. Since there can
  364. // be more than one feature location for each relationship feature we
  365. // use the '$src' variable to keep track of these.
  366. $rel->featurelocs = new stdClass();
  367. $rel->featurelocs->$src = new stdClass();
  368. $rel->featurelocs->$src->src_uniquename = $rel_featureloc->src_uniquename;
  369. $rel->featurelocs->$src->src_cvterm_id = $rel_featureloc->src_cvterm_id;
  370. $rel->featurelocs->$src->src_cvname = $rel_featureloc->src_cvname;
  371. $rel->featurelocs->$src->fmin = $rel_featureloc->fmin;
  372. $rel->featurelocs->$src->fmax = $rel_featureloc->fmax;
  373. $rel->featurelocs->$src->src_name = $rel_featureloc->src_name;
  374. // keep track of the individual parts for each relationship
  375. $start = $rel->featurelocs->$src->fmin;
  376. $end = $rel->featurelocs->$src->fmax;
  377. $type = $rel->subject_type;
  378. $rel_locs[$src]['parts'][$start][$type]['start'] = $start;
  379. $rel_locs[$src]['parts'][$start][$type]['end'] = $end;
  380. $rel_locs[$src]['parts'][$start][$type]['type'] = $type;
  381. }
  382. }
  383. // the featurelocs array provided to the function contains the locations
  384. // where this feature is found. We want to get the sequence for each
  385. // location and then annotate it with the parts found from the relationships
  386. // locations determiend above.
  387. $floc_sequences = array();
  388. foreach ($featurelocs as $featureloc) {
  389. // build the src name so we can keep track of the different parts for each feature
  390. $src = $featureloc->srcfeature_id->feature_id . "-" . $featureloc->srcfeature_id->type_id->cvterm_id;
  391. // orient the parts to the beginning of the feature sequence
  392. if (!empty($rel_locs[$src]['parts'])) {
  393. $parts = $rel_locs[$src]['parts'];
  394. $rparts = array(); // we will fill this up if we're on the reverse strand
  395. foreach ($parts as $start => $types) {
  396. foreach ($types as $type_name => $type) {
  397. if ($featureloc->strand >= 0) {
  398. // this is on the forward strand. We need to convert the start on the src feature to the
  399. // start on this feature's sequence
  400. $parts[$start][$type_name]['start'] = $parts[$start][$type_name]['start'] - $featureloc->fmin;
  401. $parts[$start][$type_name]['end'] = $parts[$start][$type_name]['end'] - $featureloc->fmin;
  402. $parts[$start][$type_name]['type'] = $type_name;
  403. }
  404. else {
  405. // this is on the reverse strand. We need to swap the start and stop and calculate from the
  406. // begining of the reverse sequence
  407. $size = ($featureloc->fmax - $featureloc->fmin);
  408. $start_orig = $parts[$start][$type_name]['start'];
  409. $end_orig = $parts[$start][$type_name]['end'];
  410. $new_start = $size - ($end_orig - $featureloc->fmin);
  411. $new_end = $size - ($start_orig - $featureloc->fmin);
  412. $rparts[$new_start][$type_name]['start'] = $new_start;
  413. $rparts[$new_start][$type_name]['end'] = $new_end;
  414. $rparts[$new_start][$type_name]['type'] = $type_name;
  415. }
  416. }
  417. }
  418. // now sort the parts
  419. // if we're on the reverse strand we need to resort
  420. if ($featureloc->strand >= 0) {
  421. usort($parts, 'chado_feature__residues_sort_rel_parts_by_start');
  422. }
  423. else {
  424. usort($rparts, 'chado_feature__residues_sort_rel_parts_by_start');
  425. $parts = $rparts;
  426. }
  427. $floc_sequences[$src]['id'] = $src;
  428. $floc_sequences[$src]['type'] = $featureloc->feature_id->type_id->name;
  429. $args = array(':feature_id' => $featureloc->srcfeature_id->feature_id);
  430. $start = $featureloc->fmin + 1;
  431. $size = $featureloc->fmax - $featureloc->fmin;
  432. // TODO: fix the hard coded $start and $size
  433. // the $start and $size variables are hard-coded in the SQL statement
  434. // because the db_query function places quotes around all placeholders
  435. // (e.g. :start & :size) and screws up the substring function
  436. $sql = "
  437. SELECT substring(residues from $start for $size) as residues
  438. FROM {feature}
  439. WHERE feature_id = :feature_id
  440. ";
  441. $sequence = chado_query($sql, $args)->fetchObject();
  442. $residues = $sequence->residues;
  443. if ($featureloc->strand < 0) {
  444. $residues = tripal_reverse_compliment_sequence($residues);
  445. }
  446. $strand = '.';
  447. if ($featureloc->strand == 1) {
  448. $strand = '+';
  449. }
  450. elseif ($featureloc->strand == -1) {
  451. $strand = '-';
  452. }
  453. $floc_sequences[$src]['location'] = tripal_get_location_string($featureloc);
  454. $floc_sequences[$src]['defline'] = tripal_get_fasta_defline($featureloc->feature_id, '', $featureloc, '', strlen($residues));
  455. $floc_sequences[$src]['featureloc'] = $featureloc;
  456. $floc_sequences[$src]['residues'] = $residues;
  457. //$floc_sequences[$src]['formatted_seq'] = tripal_feature_color_sequence($residues, $parts, $floc_sequences[$src]['defline']);
  458. }
  459. }
  460. return $floc_sequences;
  461. }
  462. /**
  463. * Get features related to the current feature to a given depth. Recursive function.
  464. *
  465. * @param $feature_id
  466. * @param $substitute
  467. * @param $levels
  468. * @param $base_type_id
  469. * @param $depth
  470. *
  471. * @ingroup tripal_feature
  472. */
  473. private static function get_aggregate_relationships($feature_id, $substitute=1,
  474. $levels=0, $base_type_id=NULL, $depth=0) {
  475. // we only want to recurse to as many levels deep as indicated by the
  476. // $levels variable, but only if this variable is > 0. If 0 then we
  477. // recurse until we reach the end of the relationships tree.
  478. if ($levels > 0 and $levels == $depth) {
  479. return NULL;
  480. }
  481. // first get the relationships for this feature
  482. return self::get_relationships($feature_id, 'as_object');
  483. }
  484. /**
  485. * Get the relationships for a feature.
  486. *
  487. * @param $feature_id
  488. * The feature to get relationships for
  489. * @param $side
  490. * The side of the relationship this feature is (ie: 'as_subject' or 'as_object')
  491. *
  492. * @ingroup tripal_feature
  493. */
  494. private static function get_relationships($feature_id, $side = 'as_subject') {
  495. // get the relationships for this feature. The query below is used for both
  496. // querying the object and subject relationships
  497. $sql = "
  498. SELECT
  499. FS.name as subject_name, FS.uniquename as subject_uniquename,
  500. CVTS.name as subject_type, CVTS.cvterm_id as subject_type_id,
  501. FR.subject_id, FR.type_id as relationship_type_id, FR.object_id, FR.rank,
  502. CVT.name as rel_type,
  503. FO.name as object_name, FO.uniquename as object_uniquename,
  504. CVTO.name as object_type, CVTO.cvterm_id as object_type_id
  505. FROM {feature_relationship} FR
  506. INNER JOIN {cvterm} CVT ON FR.type_id = CVT.cvterm_id
  507. INNER JOIN {feature} FS ON FS.feature_id = FR.subject_id
  508. INNER JOIN {feature} FO ON FO.feature_id = FR.object_id
  509. INNER JOIN {cvterm} CVTO ON FO.type_id = CVTO.cvterm_id
  510. INNER JOIN {cvterm} CVTS ON FS.type_id = CVTS.cvterm_id
  511. ";
  512. if (strcmp($side, 'as_object')==0) {
  513. $sql .= " WHERE FR.object_id = :feature_id";
  514. }
  515. if (strcmp($side, 'as_subject')==0) {
  516. $sql .= " WHERE FR.subject_id = :feature_id";
  517. }
  518. $sql .= " ORDER BY FR.rank";
  519. // get the relationships
  520. $results = chado_query($sql, array(':feature_id' => $feature_id));
  521. // iterate through the relationships, put these in an array and add
  522. // in the Drupal node id if one exists
  523. $i=0;
  524. $esql = "
  525. SELECT entity_id
  526. FROM {chado_entity}
  527. WHERE data_table = 'feature' AND record_id = :feature_id";
  528. $relationships = array();
  529. while ($rel = $results->fetchObject()) {
  530. $entity = db_query($esql, array(':feature_id' => $rel->subject_id))->fetchObject();
  531. if ($entity) {
  532. $rel->subject_entity_id = $entity->entity_id;
  533. }
  534. $entity = db_query($esql, array(':feature_id' => $rel->object_id))->fetchObject();
  535. if ($entity) {
  536. $rel->object_entity_id = $entity->entity_id;
  537. }
  538. $relationships[$i++] = $rel;
  539. }
  540. return $relationships;
  541. }
  542. /**
  543. * Load the locations for a given feature
  544. *
  545. * @param $feature_id
  546. * The feature to look up locations for
  547. * @param $side
  548. * Whether the feature is the scrfeature, 'as_parent', or feature, 'as_child'
  549. * @param $aggregate
  550. * Whether or not to get the locations for related features
  551. *
  552. * @ingroup tripal_feature
  553. */
  554. private static function get_featurelocs($feature_id, $side = 'as_parent', $aggregate = 1) {
  555. $sql = "
  556. SELECT
  557. F.name, F.feature_id, F.uniquename,
  558. FS.name as src_name, FS.feature_id as src_feature_id, FS.uniquename as src_uniquename,
  559. CVT.name as cvname, CVT.cvterm_id,
  560. CVTS.name as src_cvname, CVTS.cvterm_id as src_cvterm_id,
  561. FL.fmin, FL.fmax, FL.is_fmin_partial, FL.is_fmax_partial,FL.strand, FL.phase
  562. FROM {featureloc} FL
  563. INNER JOIN {feature} F ON FL.feature_id = F.feature_id
  564. INNER JOIN {feature} FS ON FS.feature_id = FL.srcfeature_id
  565. INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  566. INNER JOIN {cvterm} CVTS ON FS.type_id = CVTS.cvterm_id
  567. ";
  568. if (strcmp($side, 'as_parent')==0) {
  569. $sql .= "WHERE FL.srcfeature_id = :feature_id ";
  570. }
  571. if (strcmp($side, 'as_child')==0) {
  572. $sql .= "WHERE FL.feature_id = :feature_id ";
  573. }
  574. $flresults = chado_query($sql, array(':feature_id' => $feature_id));
  575. // copy the results into an array
  576. $i=0;
  577. $featurelocs = array();
  578. while ($loc = $flresults->fetchObject()) {
  579. // if a drupal node exists for this feature then add the nid to the
  580. // results object
  581. $loc->feid = tripal_get_chado_entity_id('feature', $loc->feature_id);
  582. $loc->seid = tripal_get_chado_entity_id('feature', $loc->src_feature_id);
  583. // add the result to the array
  584. $featurelocs[$i++] = $loc;
  585. }
  586. // Add the relationship feature locs if aggregate is turned on
  587. if ($aggregate and strcmp($side, 'as_parent')==0) {
  588. // get the relationships for this feature without substituting any children
  589. // for the parent. We want all relationships
  590. $relationships = tripal_feature_get_aggregate_relationships($feature_id, 0);
  591. foreach ($relationships as $rindex => $rel) {
  592. // get the featurelocs for each of the relationship features
  593. $rel_featurelocs = tripal_feature_load_featurelocs($rel->subject_id, 'as_child', 0);
  594. foreach ($rel_featurelocs as $findex => $rfloc) {
  595. $featurelocs[$i++] = $rfloc;
  596. }
  597. }
  598. }
  599. usort($featurelocs, 'chado_feature__residues_sort_locations');
  600. return $featurelocs;
  601. }
  602. }
  603. /**
  604. * Callback function for validating the chado_feature__residues_widget.
  605. */
  606. function chado_feature__residues_widget_validate($element, &$form_state) {
  607. $field_name = $element['#parents'][0];
  608. // Remove any white spaces.
  609. //$residues = tripal_chado_get_field_form_values($field_name, $form_state, 0, 'feature__residues');
  610. if ($residues) {
  611. $residues = preg_replace('/\s/', '', $residues);
  612. tripal_chado_set_field_form_values($field_name, $form_state, $residues, 0, 'feature__residues');
  613. }
  614. }
  615. /**
  616. * Used to sort the list of relationship parts by start position
  617. *
  618. * @ingroup tripal_feature
  619. */
  620. function chado_feature__residues_sort_rel_parts_by_start($a, $b) {
  621. foreach ($a as $type_name => $details) {
  622. $astart = $a[$type_name]['start'];
  623. break;
  624. }
  625. foreach ($b as $type_name => $details) {
  626. $bstart = $b[$type_name]['start'];
  627. break;
  628. }
  629. return strnatcmp($astart, $bstart);
  630. }
  631. /**
  632. * Used to sort the feature locs by start position
  633. *
  634. * @param $a
  635. * One featureloc record (as an object)
  636. * @param $b
  637. * The other featureloc record (as an object)
  638. *
  639. * @return
  640. * Which feature location comes first
  641. *
  642. * @ingroup tripal_feature
  643. */
  644. function chado_feature__residues_sort_locations($a, $b) {
  645. return strnatcmp($a->fmin, $b->fmin);
  646. }