so__transcript.inc 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. class so__transcript extends TripalField {
  3. // --------------------------------------------------------------------------
  4. // EDITABLE STATIC CONSTANTS
  5. //
  6. // The following constants SHOULD be set for each descendent class. They are
  7. // used by the static functions to provide information to Drupal about
  8. // the field and it's default widget and formatter.
  9. // --------------------------------------------------------------------------
  10. // The term that this field maps to. The format for the term should be:
  11. // [vocab]:[accession] where [vocab] is the short name of the vocabulary
  12. // and [acession] is the unique accession number for the term. This term
  13. // must already exist in the vocabulary storage backend. This
  14. // value should never be changed once fields exist for this type.
  15. public static $term = 'SO:0000673';
  16. // The default lable for this field.
  17. public static $label = 'Transcript';
  18. // The default description for this field.
  19. public static $description = 'An RNA synthesized on a DNA or RNA template by an RNA polymerase.';
  20. // Provide a list of global settings. These can be accessed witihn the
  21. // globalSettingsForm. When the globalSettingsForm is submitted then
  22. // Drupal will automatically change these settings for all fields.
  23. public static $settings = array(
  24. 'chado_table' => '',
  25. 'chado_column' => '',
  26. 'base_table' => '',
  27. );
  28. // Provide a list of instance specific settings. These can be access within
  29. // the instanceSettingsForm. When the instanceSettingsForm is submitted
  30. // then Drupal with automatically change these settings for the instnace.
  31. // It is recommended to put settings at the instance level whenever possible.
  32. public static $instance_settings = array();
  33. // Set this to the name of the storage backend that by default will support
  34. // this field.
  35. public static $storage = 'tripal_no_storage';
  36. // The default widget for this field.
  37. public static $default_widget = 'so__transcript_widget';
  38. // The default formatter for this field.
  39. public static $default_formatter = 'so__transcript_formatter';
  40. // --------------------------------------------------------------------------
  41. // PROTECTED CLASS MEMBERS -- DO NOT OVERRIDE
  42. // --------------------------------------------------------------------------
  43. // An array containing details about the field. The format of this array
  44. // is the same as that returned by field_info_fields()
  45. protected $field;
  46. // An array containing details about an instance of the field. A field does
  47. // not have to have an instance. But if dealing with an instance (such as
  48. // when using the widgetForm, formatterSettingsForm, etc.) it should be set.
  49. protected $instance;
  50. /**
  51. *
  52. * @see TripalField::validate()
  53. */
  54. public function validate($entity_type, $entity, $field, $items, &$errors) {
  55. }
  56. /**
  57. *
  58. * @see TripalField::load()
  59. */
  60. public function load($entity, $details = array()) {
  61. $record = $details['record'];
  62. $field_name = $this->field['field_name'];
  63. // Set some defaults for the empty record.
  64. $entity->{$field_name}['und'][0] = array(
  65. 'value' => array(
  66. 'type' => '',
  67. 'name' => '',
  68. 'identifier' => '',
  69. 'location' => '',
  70. ),
  71. );
  72. // TODO: If the tripal_get_feature_relationships() slows this down then
  73. // we may need to write a custom function to get the data.
  74. $rels = tripal_get_feature_relationships($record);
  75. // TODO: what if other transcripts names from SO are used. In that
  76. // case we should support those too (using cvtermpath table to find them).
  77. // mRNA should not be hard-coded below.
  78. // Set the value to be a array of "table" rows.
  79. $transcripts = array();
  80. if (key_exists('part of', $rels['object']) &&
  81. key_exists('mRNA', $rels['object']['part of'])) {
  82. $transcripts = $rels['object']['part of']['mRNA'];
  83. }
  84. $headers = array('Name' ,'Identifier', 'Location');
  85. $rows = array();
  86. $i = 0;
  87. foreach ($transcripts as $transcript) {
  88. // link the feature to it's node
  89. $feature_name = $transcript->record->subject_id->name;
  90. $locations = $transcript->child_featurelocs;
  91. $loc = "";
  92. foreach ($locations AS $location) {
  93. $loc .= $location->srcfeature_name . ":" . $location->fmin . ".." . $location->fmax;
  94. }
  95. $type = $transcript->record->subject_id->type_id;
  96. $entity->{$field_name}['und'][$i]['value'] = array(
  97. 'type' => $type->name,
  98. 'name' => $feature_name,
  99. 'identifier' => $transcript->record->subject_id->uniquename,
  100. 'location' => $loc,
  101. );
  102. // Add in the semantic web information that describes each key in the
  103. // value array.
  104. $entity->{$field_name}['und'][$i]['semantic_web'] = array(
  105. 'type' => $type->dbxref_id->db_id->name . ":" . $type->dbxref_id->accession,
  106. 'name' => tripal_get_chado_semweb_term('cvterm', 'name'),
  107. 'identifier' => tripal_get_chado_semweb_term('feature', 'uniquename'),
  108. 'location' => '',
  109. );
  110. if (property_exists($transcript->record->subject_id, 'entity_id')) {
  111. $entity_id = $transcript->record->subject_id->entity_id;
  112. $entity->{$field_name}['und'][$i]['value']['entity'] = 'TripalEntity:' . $entity_id;
  113. }
  114. $i++;
  115. }
  116. }
  117. }