tripal_chado.install 54 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598
  1. <?php
  2. function tripal_chado_install() {
  3. if (chado_is_installed()) {
  4. // For an upgraded site we need to move some vocabulary terms over
  5. // to the new 'local' vocabulary:
  6. chado_insert_db(array(
  7. 'name' => 'local',
  8. 'description' => variable_get('site_name', 'This site.'),
  9. ));
  10. // Move the library properties out of the tripal database and into the
  11. // local database.
  12. $sql = "
  13. UPDATE {dbxref}
  14. SET db_id = (SELECT db_id FROM {db} WHERE name = 'local')
  15. WHERE dbxref_id IN (
  16. SELECT DISTINCT CVT.dbxref_id
  17. FROM {cvterm} CVT
  18. INNER JOIN {cv} CV ON CV.cv_id = CVT.cv_id
  19. WHERE CV.name IN (
  20. 'library_property',
  21. 'library_type',
  22. 'project_property',
  23. 'nd_experiment_types',
  24. 'nd_geolocation_property',
  25. 'tripal_analysis'
  26. )
  27. )
  28. ";
  29. chado_query($sql);
  30. }
  31. }
  32. /**
  33. * Implementation of hook_uninstall().
  34. *
  35. * @ingroup tripal
  36. */
  37. function tripal_chado_uninstall() {
  38. // // Drop the foreign key between tripal_custom_tables and tripal_mviews
  39. // // so that Drupal can then drop the tables
  40. // db_query('
  41. // ALTER TABLE {tripal_custom_tables}
  42. // DROP CONSTRAINT tripal_custom_tables_fk1 CASCADE
  43. // ');
  44. variable_set('tripal_chado_is_prepared', FALSE);
  45. }
  46. function tripal_chado_chado_semweb_schema(){
  47. return array(
  48. 'fields' => array(
  49. 'chado_semweb_id' => array(
  50. 'type' => 'serial',
  51. 'not null' => TRUE
  52. ),
  53. 'chado_table' => array(
  54. 'type' => 'varchar',
  55. 'length ' => 128,
  56. 'not null' => TRUE
  57. ),
  58. 'chado_column' => array(
  59. 'type' => 'text',
  60. 'length ' => 128,
  61. 'not null' => TRUE
  62. ),
  63. 'cvterm_id' => array(
  64. 'type' => 'int',
  65. ),
  66. ),
  67. 'primary key' => array(
  68. 0 => 'chado_semweb_id',
  69. ),
  70. 'indexes' => array(
  71. 'chado_semweb_id_idx1' => array('cvterm_id'),
  72. 'chado_semweb_id_idx2' => array('chado_column'),
  73. 'chado_semweb_id_idx3' => array('chado_table'),
  74. ),
  75. 'unique keys' => array(
  76. 'chado_semweb_uq1' => array('chado_table', 'chado_column'),
  77. ),
  78. );
  79. }
  80. /**
  81. * Table definition for the tripal_cv_obo table
  82. * @param $schema
  83. */
  84. function tripal_chado_tripal_cv_obo_schema() {
  85. return array(
  86. 'fields' => array(
  87. 'obo_id' => array(
  88. 'type' => 'serial',
  89. 'unsigned' => TRUE,
  90. 'not null' => TRUE
  91. ),
  92. 'name' => array(
  93. 'type' => 'varchar',
  94. 'length' => 255
  95. ),
  96. 'path' => array(
  97. 'type' => 'varchar',
  98. 'length' => 1024
  99. ),
  100. ),
  101. 'indexes' => array(
  102. 'tripal_cv_obo_idx1' => array('obo_id'),
  103. ),
  104. 'primary key' => array('obo_id'),
  105. );
  106. }
  107. /**
  108. *
  109. */
  110. function tripal_chado_enable() {
  111. // If Tripal v2 is already installed, then when the module is first enabled
  112. // after an upgade, the installation of this module will try and recreate
  113. // some of the tables created with tripal_core and the installation will fail.
  114. // Therefore, the tables were temporarily moved out of the way to preserve
  115. // the data. Now we'll move them back.
  116. tripal_chado_upgrade_v2_v3_enable();
  117. }
  118. /**
  119. * Implements hook_schema().
  120. */
  121. function tripal_chado_schema() {
  122. // If Tripal v2 is already installed, then when the module is first enabled
  123. // after an upgade, the installation of this module will try and recreate
  124. // some of the tables created with tripal_core and the installation will fail.
  125. // Therefore, we need to temporarily move those tables out of the way, let
  126. // the module install and then move them back.
  127. $migrated = variable_get('tripal_v2_upgrade_v3_check_chado', FALSE);
  128. if (!$migrated) {
  129. try {
  130. tripal_chado_upgrade_v2_v3_pre_enable();
  131. variable_set('tripal_v2_upgrade_v3_check_chado', TRUE);
  132. }
  133. catch(Exception $e) {
  134. watchdog_exception('tripal_chado', $e);
  135. }
  136. }
  137. // Links TripalEntity entities to the chado record.
  138. $schema['chado_bundle'] = tripal_chado_chado_bundle_schema();
  139. $schema['chado_semweb'] = tripal_chado_chado_semweb_schema();
  140. $schema['tripal_mviews'] = tripal_chado_tripal_mviews_schema();
  141. $schema['tripal_custom_tables'] = tripal_chado_tripal_custom_tables_schema();
  142. $schema['tripal_cv_obo'] = tripal_chado_tripal_cv_obo_schema();
  143. $schema['tripal_pub_import'] = tripal_chado_tripal_pub_import_schema();
  144. // if this module is already installed and enabled, then we want to provide
  145. // the schemas for all of the custom tables. This will allow Views to
  146. // see the schemas. We check if the module is installed because during
  147. // installation we don't want to make these custom tables available as we don't
  148. // want them created in the Drupal database. The custom tables go in the
  149. // Chado database.
  150. if (db_table_exists('tripal_custom_tables')) {
  151. $sql = 'SELECT * FROM {tripal_custom_tables}';
  152. $results = db_query($sql);
  153. foreach ($results as $custom) {
  154. $schema[$custom->table_name] = unserialize($custom->schema);
  155. }
  156. }
  157. // Map cvterm usage to chado tables
  158. $schema['chado_cvterm_mapping'] = tripal_chado_chado_cvterm_mapping_schema();
  159. // When a chado Tripal content type is created, a linking table is also created to
  160. // link the entity to it's record in chado (@see tripal_chado_bundle_create() ).
  161. // This table is created via db_create_table() but in order to expose it to
  162. // the Drupal Schema API, we also need to define each one here.
  163. if (db_table_exists('chado_bundle')) {
  164. $resource = db_query('SELECT tb.name FROM chado_bundle cb LEFT JOIN tripal_bundle tb ON tb.id=cb.bundle_id');
  165. foreach ($resource as $r) {
  166. $bundle_name = $r->name;
  167. // This makes an assumption about the name of the linking table.
  168. // @todo: Switch to chado_get_bundle_entity_table($bundle).
  169. $chado_entity_table = 'chado_' . $bundle_name;
  170. $schema[$chado_entity_table] = array(
  171. 'description' => 'The linker table that associates TripalEntities with Chado records for entities of type ' . $bundle_name . '.',
  172. 'fields' => array(
  173. 'mapping_id' => array(
  174. 'type' => 'serial',
  175. 'not null' => TRUE
  176. ),
  177. 'entity_id' => array(
  178. 'description' => 'The unique entity id.',
  179. 'type' => 'int',
  180. 'not null' => TRUE,
  181. ),
  182. 'record_id' => array(
  183. 'description' => 'The unique numerical identifier for the record that this entity is associated with (e.g. feature_id, stock_id, library_id, etc.).',
  184. 'type' => 'int',
  185. 'not null' => TRUE,
  186. ),
  187. 'nid' => array(
  188. 'description' => 'Optional. For linking nid to the entity when migrating Tripal v2 content',
  189. 'type' => 'int',
  190. )
  191. ),
  192. 'primary key' => array(
  193. 'mapping_id',
  194. ),
  195. 'indexes' => array(
  196. 'record_id' => array('record_id'),
  197. 'entity_id' => array('entity_id'),
  198. 'nid' => array('nid'),
  199. ),
  200. 'unique keys' => array(
  201. 'table_record' => array('record_id'),
  202. 'entity_id' => array('entity_id'),
  203. ),
  204. );
  205. }
  206. }
  207. return $schema;
  208. }
  209. /**
  210. * This function should be executed only one time during upgrade of v2 to v3.
  211. */
  212. function tripal_chado_upgrade_v2_v3_pre_enable() {
  213. // If Tripal v2 is already installed, then when the module is first enabled
  214. // after an upgade, the installation of this module will try and recreate
  215. // some of the tables created with tripal_core and the installation will fail.
  216. // Therefore, we need to temporarily move those tables out of the way, let
  217. // the module install and then move them back.
  218. if (db_table_exists('tripal_mviews')) {
  219. // Move the tripal_mviews table out of the way.
  220. $sql = "ALTER TABLE tripal_mviews RENAME TO tripal_mviews2";
  221. db_query($sql);
  222. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_mviews_mv_name_key'")->fetchField()) {
  223. $sql = "ALTER INDEX tripal_mviews_mv_name_key RENAME TO tripal_mviews_mv_name_key2";
  224. }
  225. else {
  226. $sql = "CREATE UNIQUE INDEX tripal_mviews_mv_name_key2 ON tripal_mviews2 USING btree (name)";
  227. }
  228. db_query($sql);
  229. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_mviews_mv_table_key'")->fetchField()) {
  230. $sql = "ALTER INDEX tripal_mviews_mv_table_key RENAME TO tripal_mviews_mv_table_key2";
  231. }
  232. else {
  233. $sql = "CREATE UNIQUE INDEX tripal_mviews_mv_table_key2 ON tripal_mviews2 USING btree (mv_table)";
  234. }
  235. db_query($sql);
  236. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_mviews_mview_id_idx'")->fetchField()) {
  237. $sql = "ALTER INDEX tripal_mviews_mview_id_idx RENAME TO tripal_mviews_mview_id_idx2";
  238. }
  239. else {
  240. $sql = "CREATE INDEX tripal_mviews_mview_id_idx2 ON tripal_mviews2 USING btree (mview_id)";
  241. }
  242. db_query($sql);
  243. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_mviews_pkey'")->fetchField()) {
  244. $sql = "ALTER INDEX tripal_mviews_pkey RENAME TO tripal_mviews_pkey2";
  245. }
  246. else {
  247. $sql = "CREATE UNIQUE INDEX tripal_mviews_pkey2 ON tripal_mviews2 USING btree (mview_id)";
  248. }
  249. db_query($sql);
  250. }
  251. if (db_table_exists('tripal_custom_tables')) {
  252. // Move the tripal_custom_tables table out of the way.
  253. $sql = "ALTER TABLE tripal_custom_tables RENAME TO tripal_custom_tables2";
  254. db_query($sql);
  255. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_custom_tables_pkey'")->fetchField()) {
  256. $sql = "ALTER INDEX tripal_custom_tables_pkey RENAME TO tripal_custom_tables_pkey2";
  257. }
  258. else {
  259. $sql = "CREATE UNIQUE INDEX tripal_custom_tables_pkey2 ON tripal_custom_tables2 USING btree (table_id)";
  260. }
  261. db_query($sql);
  262. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_custom_tables_table_id_idx'")->fetchField()) {
  263. $sql = "ALTER INDEX tripal_custom_tables_table_id_idx RENAME TO tripal_custom_tables_table_id_idx2";
  264. }
  265. else {
  266. $sql = "CREATE INDEX tripal_custom_tables_table_id_idx2 ON tripal_custom_tables2 USING btree (table_id)";
  267. }
  268. db_query($sql);
  269. }
  270. if (db_table_exists('tripal_cv_obo')) {
  271. // Move the tripal_cv_obo table out of the way.
  272. $sql = "ALTER TABLE tripal_cv_obo RENAME TO tripal_cv_obo2";
  273. db_query($sql);
  274. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_cv_obo_obo_id_idx'")->fetchField()) {
  275. $sql = "ALTER INDEX tripal_cv_obo_obo_id_idx RENAME TO tripal_cv_obo_obo_id_idx2";
  276. }
  277. else if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_cv_obo_tripal_cv_obo_idx1_idx'")->fetchField()) {
  278. $sql = "ALTER INDEX tripal_cv_obo_tripal_cv_obo_idx1_idx RENAME TO tripal_cv_obo_obo_id_idx2";
  279. }
  280. else {
  281. $sql = "CREATE INDEX tripal_cv_obo_obo_id_idx2 ON tripal_cv_obo2 USING btree (obo_id)";
  282. }
  283. db_query($sql);
  284. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_cv_obo_pkey'")->fetchField()) {
  285. $sql = "ALTER INDEX tripal_cv_obo_pkey RENAME TO tripal_cv_obo_pkey2";
  286. }
  287. else {
  288. $sql = "CREATE UNIQUE INDEX tripal_cv_obo_pkey2 ON tripal_cv_obo2 USING btree (obo_id)";
  289. }
  290. db_query($sql);
  291. }
  292. if (db_table_exists('tripal_pub_import')) {
  293. // Move the tripal_pub_import table out of the way.
  294. $sql = "ALTER TABLE tripal_pub_import RENAME TO tripal_pub_import2";
  295. db_query($sql);
  296. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_pub_import_name_idx'")->fetchField()) {
  297. $sql = "ALTER INDEX tripal_pub_import_name_idx RENAME TO tripal_pub_import_name_idx2";
  298. }
  299. else {
  300. $sql = "CREATE INDEX tripal_pub_import_name_idx2 ON tripal_pub_import2 USING btree (name)";
  301. }
  302. db_query($sql);
  303. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_pub_import_pkey'")->fetchField()) {
  304. $sql = "ALTER INDEX tripal_pub_import_pkey RENAME TO tripal_pub_import_pkey2";
  305. }
  306. else {
  307. $sql = "CREATE UNIQUE INDEX tripal_pub_import_pkey2 ON tripal_pub_import2 USING btree (pub_import_id)";
  308. }
  309. db_query($sql);
  310. }
  311. }
  312. /**
  313. * This function should be executed only one time during upgrade of v2 to v3.
  314. */
  315. function tripal_chado_upgrade_v2_v3_enable() {
  316. // If Tripal v2 is already installed, the installation of this module
  317. // will try and recreate some of the tables created with tripal_core and the
  318. // installation will fail. Therefore, in the install we renamed it. Now
  319. // we want to move it back.
  320. if (db_table_exists('tripal_mviews2')) {
  321. // tripal_mviews
  322. $sql = "DROP TABLE tripal_mviews";
  323. db_query($sql);
  324. $sql = "ALTER TABLE tripal_mviews2 RENAME to tripal_mviews";
  325. db_query($sql);
  326. $sql = "ALTER INDEX tripal_mviews_mv_name_key2 RENAME TO tripal_mviews_mv_name_key";
  327. db_query($sql);
  328. $sql = "ALTER INDEX tripal_mviews_mv_table_key2 RENAME TO tripal_mviews_mv_table_key";
  329. db_query($sql);
  330. $sql = "ALTER INDEX tripal_mviews_mview_id_idx2 RENAME TO tripal_mviews_mview_id_idx";
  331. db_query($sql);
  332. $sql = "ALTER INDEX tripal_mviews_pkey2 RENAME TO tripal_mviews_pkey";
  333. db_query($sql);
  334. }
  335. // tripal_custom_tables
  336. if (db_table_exists('tripal_custom_tables2')) {
  337. $sql = "DROP TABLE tripal_custom_tables";
  338. db_query($sql);
  339. $sql = "ALTER TABLE tripal_custom_tables2 RENAME to tripal_custom_tables";
  340. db_query($sql);
  341. $sql = "ALTER INDEX tripal_custom_tables_pkey2 RENAME TO tripal_custom_tables_pkey";
  342. db_query($sql);
  343. $sql = "ALTER INDEX tripal_custom_tables_table_id_idx2 RENAME TO tripal_custom_tables_table_id_idx";
  344. db_query($sql);
  345. }
  346. // tripal_cv_obo
  347. if (db_table_exists('tripal_cv_obo2')) {
  348. $sql = "DROP TABLE tripal_cv_obo";
  349. db_query($sql);
  350. $sql = "ALTER TABLE tripal_cv_obo2 RENAME to tripal_cv_obo";
  351. db_query($sql);
  352. $sql = "ALTER INDEX tripal_cv_obo_obo_id_idx2 RENAME TO tripal_cv_obo_obo_id_idx";
  353. db_query($sql);
  354. if (db_query("SELECT 1 FROM pg_indexes WHERE indexname = 'tripal_cv_obo_pkey2'")->fetchField()) {
  355. $sql = "ALTER INDEX tripal_cv_obo_pkey2 RENAME TO tripal_cv_obo_pkey";
  356. }
  357. db_query($sql);
  358. }
  359. // tripal_pub_import
  360. if (db_table_exists('tripal_pub_import2')) {
  361. $sql = "DROP TABLE tripal_pub_import";
  362. db_query($sql);
  363. $sql = "ALTER TABLE tripal_pub_import2 RENAME to tripal_pub_import";
  364. db_query($sql);
  365. $sql = "ALTER INDEX tripal_pub_import_name_idx2 RENAME TO tripal_pub_import_name_idx";
  366. db_query($sql);
  367. $sql = "ALTER INDEX tripal_pub_import_pkey2 RENAME TO tripal_pub_import_pkey";
  368. db_query($sql);
  369. }
  370. }
  371. /**
  372. * @section
  373. * Schema Definitions.
  374. */
  375. /**
  376. * Implementation of hook_schema().
  377. *
  378. * @ingroup tripal_pub
  379. */
  380. function tripal_chado_tripal_pub_import_schema() {
  381. return array(
  382. 'fields' => array(
  383. 'pub_import_id' => array(
  384. 'type' => 'serial',
  385. 'not null' => TRUE
  386. ),
  387. 'name' => array(
  388. 'type' => 'varchar',
  389. 'length' => 255,
  390. 'not null' => TRUE
  391. ),
  392. 'criteria' => array(
  393. 'type' => 'text',
  394. 'size' => 'normal',
  395. 'not null' => TRUE,
  396. 'description' => 'Contains a serialized PHP array containing the search criteria'
  397. ),
  398. 'disabled' => array(
  399. 'type' => 'int',
  400. 'unsigned' => TRUE,
  401. 'not NULL' => TRUE,
  402. 'default' => 0
  403. ),
  404. 'do_contact' => array(
  405. 'type' => 'int',
  406. 'unsigned' => TRUE,
  407. 'not NULL' => TRUE,
  408. 'default' => 0
  409. ),
  410. ),
  411. 'primary key' => array('pub_import_id'),
  412. 'indexes' => array(
  413. 'name' => array('name')
  414. ),
  415. );
  416. }
  417. /**
  418. * Describes the Tripal Custom Tables (tripal_custom_tables) table
  419. * This keeps track of tables created by Tripal and stored in chado that may or may not
  420. * also be materialized views.
  421. *
  422. * @ingroup tripal
  423. */
  424. function tripal_chado_tripal_custom_tables_schema() {
  425. return array(
  426. 'fields' => array(
  427. 'table_id' => array(
  428. 'type' => 'serial',
  429. 'unsigned' => TRUE,
  430. 'not NULL' => TRUE
  431. ),
  432. 'table_name' => array(
  433. 'type' => 'varchar',
  434. 'length' => 255,
  435. 'not NULL' => TRUE
  436. ),
  437. 'schema' => array(
  438. 'type' => 'text',
  439. 'not NULL' => TRUE
  440. ),
  441. 'mview_id' => array(
  442. 'type' => 'int',
  443. 'not NULL' => FALSE
  444. )
  445. ),
  446. 'indexes' => array(
  447. 'table_id' => array('table_id'),
  448. ),
  449. 'primary key' => array('table_id'),
  450. 'foreign keys' => array(
  451. 'tripal_mviews' => array(
  452. 'table' => 'tripal_mviews',
  453. 'columns' => array(
  454. 'mview_id' => 'mview_id'
  455. ),
  456. ),
  457. ),
  458. );
  459. }
  460. /**
  461. * Describes the Tripal Materialized View (tripal_mviews) table
  462. * This table keeps track of all materialized views created by Tripal and stored in chado
  463. *
  464. * @ingroup tripal
  465. */
  466. function tripal_chado_tripal_mviews_schema() {
  467. return array(
  468. 'fields' => array(
  469. 'mview_id' => array(
  470. 'type' => 'serial',
  471. 'unsigned' => TRUE,
  472. 'not NULL' => TRUE
  473. ),
  474. 'name' => array(
  475. 'type' => 'varchar',
  476. 'length' => 255,
  477. 'not NULL' => TRUE
  478. ),
  479. 'modulename' => array(
  480. 'type' => 'varchar',
  481. 'length' => 50,
  482. 'not NULL' => TRUE,
  483. 'description' => 'The module name that provides the callback for this job'
  484. ),
  485. 'mv_table' => array(
  486. 'type' => 'varchar',
  487. 'length' => 128,
  488. 'not NULL' => FALSE
  489. ),
  490. 'mv_specs' => array(
  491. 'type' => 'text',
  492. 'size' => 'normal',
  493. 'not NULL' => FALSE
  494. ),
  495. 'mv_schema' => array(
  496. 'type' => 'text',
  497. 'size' => 'normal',
  498. 'not NULL' => FALSE
  499. ),
  500. 'indexed' => array(
  501. 'type' => 'text',
  502. 'size' => 'normal',
  503. 'not NULL' => FALSE
  504. ),
  505. 'query' => array(
  506. 'type' => 'text',
  507. 'size' => 'normal',
  508. 'not NULL' => TRUE
  509. ),
  510. 'special_index' => array(
  511. 'type' => 'text',
  512. 'size' => 'normal',
  513. 'not NULL' => FALSE
  514. ),
  515. 'last_update' => array(
  516. 'type' => 'int',
  517. 'not NULL' => FALSE,
  518. 'description' => 'UNIX integer time'
  519. ),
  520. 'status' => array(
  521. 'type' => 'text',
  522. 'size' => 'normal',
  523. 'not NULL' => FALSE
  524. ),
  525. 'comment' => array(
  526. 'type' => 'text',
  527. 'size' => 'normal',
  528. 'not NULL' => FALSE
  529. ),
  530. ),
  531. 'indexes' => array(
  532. 'mview_id' => array('mview_id')
  533. ),
  534. 'unique keys' => array(
  535. 'mv_table' => array('mv_table'),
  536. 'mv_name' => array('name'),
  537. ),
  538. 'primary key' => array('mview_id'),
  539. );
  540. }
  541. /**
  542. * Links Biological Data Entities to the chado "base" table the data is stored in.
  543. * This is where we would specify that a particular gene maps to the record in the
  544. * chado.feature table with a feature_id=2432;
  545. */
  546. function tripal_chado_chado_bundle_schema() {
  547. $schema = array(
  548. 'description' => 'Describes how a bundle maps data to Chado',
  549. 'fields' => array(
  550. 'chado_bundle_id' => array(
  551. 'description' => 'The primary identifier for this table.',
  552. 'type' => 'serial',
  553. 'unsigned' => TRUE,
  554. 'not null' => TRUE,
  555. ),
  556. 'bundle_id' => array(
  557. 'description' => 'The unique entity id.',
  558. 'type' => 'int',
  559. 'not null' => TRUE,
  560. ),
  561. 'data_table' => array(
  562. 'description' => 'The table in Chado that this term services (e.g. feature, stock, library, etc.)',
  563. 'type' => 'varchar',
  564. 'length' => 128,
  565. 'not null' => TRUE,
  566. 'default' => '',
  567. ),
  568. 'type_linker_table' => array(
  569. 'description' => 'If a linker table (e.g. cvterm/prop) is needed to uniquely identify a content type then that table name is provided here.',
  570. 'type' => 'varchar',
  571. 'length' => 128,
  572. 'not null' => FALSE,
  573. 'default' => '',
  574. ),
  575. 'type_column' => array(
  576. 'description' => 'The column in the data table or linker table that distinguishes the data type. This must be in a foreign key relationship to the cvterm table.',
  577. 'type' => 'varchar',
  578. 'length' => 128,
  579. 'not null' => FALSE,
  580. 'default' => '',
  581. ),
  582. 'type_id' => array(
  583. 'description' => 'If a type_column is set then this is the cvterm_id of the data type that this bundle maps to.',
  584. 'size' => 'big',
  585. 'type' => 'int',
  586. ),
  587. 'type_value' => array(
  588. 'description' => 'If a property table is used for a linker, then the value that should be matched to identify this content type is stored here.',
  589. 'type' => 'text',
  590. 'not null' => FALSE,
  591. 'default' => '',
  592. )
  593. ),
  594. 'indexes' => array(
  595. 'bundle_id' => array('bundle_id'),
  596. 'data_table' => array('data_table'),
  597. ),
  598. 'unique keys' => array(
  599. 'record' => array('bundle_id'),
  600. ),
  601. 'primary key' => array('chado_bundle_id'),
  602. );
  603. return $schema;
  604. }
  605. /**
  606. * Tripal cvterm mapping schema
  607. * Map cvterms to chado tables that use them
  608. */
  609. function tripal_chado_chado_cvterm_mapping_schema() {
  610. $schema = array (
  611. 'table' => 'chado_cvterm_mapping',
  612. 'fields' => array (
  613. 'mapping_id' => array(
  614. 'type' => 'serial',
  615. 'not null' => TRUE
  616. ),
  617. 'cvterm_id' => array (
  618. 'type' => 'int',
  619. 'not null' => TRUE
  620. ),
  621. 'chado_table' => array (
  622. 'type' => 'varchar',
  623. 'length' => 128,
  624. 'not null' => TRUE
  625. ),
  626. 'chado_field' => array (
  627. 'type' => 'varchar',
  628. 'length' => 128,
  629. 'not null' => FALSE
  630. ),
  631. ),
  632. 'primary key' => array (
  633. 0 => 'mapping_id'
  634. ),
  635. 'unique key' => array(
  636. 'cvterm_id',
  637. ),
  638. 'indexes' => array(
  639. 'tripal_cvterm2table_idx1' => array('cvterm_id'),
  640. 'tripal_cvterm2table_idx2' => array('chado_table'),
  641. 'tripal_cvterm2table_idx3' => array('chado_table', 'chado_field'),
  642. ),
  643. );
  644. return $schema;
  645. }
  646. /**
  647. * Fixes the phase on the tripal_gffcds_temp table used for importing GFF files, and fixes the db.name term mapping.
  648. *
  649. */
  650. function tripal_chado_update_7300() {
  651. try {
  652. if (chado_table_exists('tripal_gffcds_temp')) {
  653. chado_query("ALTER TABLE {tripal_gffcds_temp} ALTER COLUMN phase DROP NOT NULL;");
  654. }
  655. $term = chado_insert_cvterm(array(
  656. 'id' => 'data:1048',
  657. 'name' => 'Database ID',
  658. 'cv_name' => 'EDAM',
  659. 'definition' => 'An identifier of a biological or bioinformatics database.',
  660. ));
  661. chado_associate_semweb_term('db', 'name', $term);
  662. }
  663. catch (\PDOException $e) {
  664. $error = $e->getMessage();
  665. throw new DrupalUpdateException('Could not fix phase on tripal_gffcds_temp table: '. $error);
  666. }
  667. }
  668. /**
  669. * Divides chado_entity table for better integration with views.
  670. */
  671. function tripal_chado_update_7301() {
  672. module_load_include('inc', 'tripal_chado', 'includes/tripal_chado.bundle');
  673. try {
  674. $transaction = db_transaction();
  675. $query = db_select('chado_bundle', 'CB');
  676. $query->join('tripal_bundle', 'TB', 'TB.id = CB.bundle_id');
  677. $query->fields('CB', array('data_table'));
  678. $query->fields('TB', array('name'));
  679. $cbundles = $query->execute();
  680. // If the table for the bundle doesn't exist then create one, and then
  681. // move all of the records from the chado_entity table to it.
  682. while($cbundle = $cbundles->fetchObject()) {
  683. $cbundle_table = chado_get_bundle_entity_table($cbundle);
  684. if (!db_table_exists($cbundle_table)) {
  685. // Create the bundle table.
  686. tripal_chado_create_bundle_table($cbundle);
  687. // Now move the records over.
  688. $sql = "
  689. INSERT INTO {$cbundle_table} (entity_id, record_id, nid)
  690. SELECT CE.entity_id, CE.record_id, CE.nid
  691. FROM {chado_entity} CE
  692. INNER JOIN {tripal_entity} TE ON CE.entity_id = TE.id
  693. WHERE TE.bundle = :bundle
  694. ";
  695. db_query($sql, array(':bundle' => $cbundle->name));
  696. }
  697. }
  698. // Now remove the chado_entity table.
  699. db_drop_table('chado_entity');
  700. }
  701. catch (\PDOException $e) {
  702. $transaction->rollback();
  703. $error = $e->getMessage();
  704. throw new DrupalUpdateException('Could not perform update: '. $error);
  705. }
  706. }
  707. /**
  708. * Corrections to the EDAM database.
  709. */
  710. function tripal_chado_update_7302(){
  711. try {
  712. // Add the term for the field.
  713. chado_insert_db(array(
  714. 'name' => 'format',
  715. 'description' => 'A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere. The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. ',
  716. 'url' => 'http://edamontology.org/page',
  717. 'urlprefix' => 'http://edamontology.org/{db}_{accession}',
  718. ));
  719. chado_insert_db(array(
  720. 'name' => 'operation',
  721. 'description' => 'A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs). Special cases are: a) An operation that consumes no input (has no input arguments).',
  722. 'url' => 'http://edamontology.org/page',
  723. 'urlprefix' => 'http://edamontology.org/{db}_{accession}',
  724. ));
  725. chado_insert_db(array(
  726. 'name' => 'topic',
  727. 'description' => 'A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other.',
  728. 'url' => 'http://edamontology.org/page',
  729. 'urlprefix' => 'http://edamontology.org/{db}_{accession}',
  730. ));
  731. chado_insert_cv(
  732. 'EDAM',
  733. 'EDAM is an ontology of well established, familiar concepts that are prevalent within bioinformatics, including types of data and data identifiers, data formats, operations and topics. EDAM is a simple ontology - essentially a set of terms with synonyms and definitions - organised into an intuitive hierarchy for convenient use by curators, software developers and end-users. EDAM is suitable for large-scale semantic annotations and categorization of diverse bioinformatics resources. EDAM is also suitable for diverse application including for example within workbenches and workflow-management systems, software distributions, and resource registries.'
  734. );
  735. }
  736. catch (\PDOException $e) {
  737. $transaction->rollback();
  738. $error = $e->getMessage();
  739. throw new DrupalUpdateException('Could not perform update: '. $error);
  740. }
  741. }
  742. /**
  743. * Fixes inconsistency with Chado v1.3 update if was applied.
  744. */
  745. function tripal_chado_update_7303() {
  746. try {
  747. $chado_version = chado_get_version();
  748. if ($chado_version == '1.3') {
  749. module_load_include('inc', 'tripal_chado', 'includes/setup/tripal_chado.setup');
  750. tripal_chado_fix_v1_3_custom_tables();
  751. }
  752. }
  753. catch (\PDOException $e) {
  754. $transaction->rollback();
  755. $error = $e->getMessage();
  756. throw new DrupalUpdateException('Could not perform update: '. $error);
  757. }
  758. }
  759. /**
  760. * Add some new controlled vocabulary terms.
  761. */
  762. function tripal_chado_update_7304() {
  763. try {
  764. $term = chado_insert_cvterm(array(
  765. 'id' => 'SIO:001080',
  766. 'name' => 'vocabulary',
  767. 'cv_name' => 'SIO',
  768. 'definition' => 'A vocabulary is a collection of terms.',
  769. ));
  770. chado_associate_semweb_term('cvterm', 'cv_id', $term);
  771. $term = chado_insert_cvterm(array(
  772. 'id' => 'data:2976',
  773. 'name' => 'Protein sequence',
  774. 'cv_name' => 'EDAM',
  775. 'definition' => 'One or more protein sequences, possibly with associated annotation.',
  776. ));
  777. $term = chado_insert_cvterm(array(
  778. 'id' => 'local:fmin',
  779. 'name' => 'minimal boundary',
  780. 'definition' => 'The leftmost, minimal boundary in the linear range ' .
  781. 'represented by the feature location. Sometimes this is called ' .
  782. 'start although this is confusing because it does not necessarily ' .
  783. 'represent the 5-prime coordinate.',
  784. 'cv_name' => 'local',
  785. ));
  786. chado_associate_semweb_term('featureloc', 'fmin', $term);
  787. $term = chado_insert_cvterm(array(
  788. 'id' => 'local:fmax',
  789. 'name' => 'maximal boundary',
  790. 'definition' => 'The rightmost, maximal boundary in the linear range ' .
  791. 'represented by the featureloc. Sometimes this is called end although ' .
  792. 'this is confusing because it does not necessarily represent the ' .
  793. '3-prime coordinate',
  794. 'cv_name' => 'local',
  795. ));
  796. chado_associate_semweb_term('featureloc', 'fmax', $term);
  797. $term = chado_insert_cvterm(array(
  798. 'id' => 'data:2336',
  799. 'name' => 'Translation phase specification',
  800. 'cv_name' => 'EDAM',
  801. 'definition' => 'Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence.',
  802. ));
  803. chado_associate_semweb_term('featureloc', 'phase', $term);
  804. $term = chado_insert_cvterm(array(
  805. 'id' => 'data:3002',
  806. 'name' => 'Annotation track',
  807. 'cv_name' => 'EDAM',
  808. 'definition' => 'Annotation of one particular positional feature on a ' .
  809. 'biomolecular (typically genome) sequence, suitable for import and ' .
  810. 'display in a genome browser. Synonym: Sequence annotation track.',
  811. ));
  812. chado_associate_semweb_term('featureloc', 'srcfeature_id', $term);
  813. }
  814. catch (\PDOException $e) {
  815. $transaction->rollback();
  816. $error = $e->getMessage();
  817. throw new DrupalUpdateException('Could not perform update: '. $error);
  818. }
  819. }
  820. /**
  821. * Adding missing cv/db details and cvterms.
  822. */
  823. function tripal_chado_update_7305() {
  824. try {
  825. chado_insert_db(array(
  826. 'name' => 'rdfs',
  827. 'description' => 'Resource Description Framework Schema',
  828. 'url' => 'https://www.w3.org/TR/rdf-schema/',
  829. 'urlprefix' => 'https://www.w3.org/TR/rdf-schema/#ch_{accession}',
  830. ));
  831. chado_insert_cv('rdfs', 'Resource Description Framework Schema');
  832. chado_insert_db(array(
  833. 'name' => 'SO',
  834. 'description' => 'The sequence ontology.',
  835. 'url' => 'http://www.sequenceontology.org/',
  836. 'urlprefix' => 'http://www.sequenceontology.org/browser/current_svn/term/{db}:{accession}',
  837. ));
  838. chado_insert_cv('sequence', 'The sequence ontology.');
  839. chado_insert_db(array(
  840. 'name' => 'TAXRANK',
  841. 'description' => 'A vocabulary of taxonomic ranks (species, family, phylum, etc)',
  842. 'url' => 'http://www.obofoundry.org/ontology/taxrank.html',
  843. 'urlprefix' => 'http://purl.obolibrary.org/obo/{db}_{accession}',
  844. ));
  845. chado_insert_cv('taxonomic_rank', 'A vocabulary of taxonomic ranks (species, family, phylum, etc)');
  846. chado_insert_db(array(
  847. 'name' => 'hydra',
  848. 'description' => 'A Vocabulary for Hypermedia-Driven Web APIs',
  849. 'url' => 'http://www.w3.org/ns/hydra/core',
  850. 'urlprefix' => 'http://www.w3.org/ns/hydra/core#{accession}',
  851. ));
  852. chado_insert_cv(
  853. 'hydra',
  854. 'A Vocabulary for Hypermedia-Driven Web APIs.'
  855. );
  856. chado_insert_db(array(
  857. 'name' => 'dc',
  858. 'description' => 'DCMI Metadata Terms.',
  859. 'url' => 'http://purl.org/dc/dcmitype/',
  860. 'urlprefix' => 'http://purl.org/dc/terms/{accession}',
  861. ));
  862. chado_insert_cv(
  863. 'dc',
  864. 'DCMI Metadata Terms.'
  865. );
  866. $term = chado_insert_cvterm(array(
  867. 'id' => 'dc:Service',
  868. 'name' => 'Service',
  869. 'cv_name' => 'dc',
  870. 'definition' => 'A system that provides one or more functions.',
  871. ));
  872. $name = chado_insert_cvterm(array(
  873. 'id' => 'hydra:Collection',
  874. 'name' => 'Collection',
  875. 'cv_name' => 'hydra',
  876. 'definition' => 'A collection holding references to a number of related resources.',
  877. ));
  878. $name = chado_insert_cvterm(array(
  879. 'id' => 'hydra:member',
  880. 'name' => 'member',
  881. 'cv_name' => 'hydra',
  882. 'definition' => 'A member of the collection',
  883. ));
  884. $name = chado_insert_cvterm(array(
  885. 'id' => 'hydra:description',
  886. 'name' => 'description',
  887. 'cv_name' => 'hydra',
  888. 'definition' => 'A description.',
  889. ));
  890. $name = chado_insert_cvterm(array(
  891. 'id' => 'hydra:totalItems',
  892. 'name' => 'totalItems',
  893. 'cv_name' => 'hydra',
  894. 'definition' => 'The total number of items referenced by a collection.',
  895. ));
  896. $name = chado_insert_cvterm(array(
  897. 'id' => 'hydra:title',
  898. 'name' => 'title',
  899. 'cv_name' => 'hydra',
  900. 'definition' => 'A title, often used along with a description.',
  901. ));
  902. $name = chado_insert_cvterm(array(
  903. 'id' => 'hydra:PartialCollectionView',
  904. 'name' => 'PartialCollectionView',
  905. 'cv_name' => 'hydra',
  906. 'definition' => 'A PartialCollectionView describes a partial view of a Collection. Multiple PartialCollectionViews can be connected with the the next/previous properties to allow a client to retrieve all members of the collection.',
  907. ));
  908. $term = chado_insert_cvterm(array(
  909. 'id' => 'schema:ItemPage',
  910. 'name' => 'ItemPage',
  911. 'cv_name' => 'schema',
  912. 'definition' => 'A page devoted to a single item, such as a particular product or hotel.',
  913. ));
  914. global $base_path;
  915. chado_insert_db(array(
  916. 'name' => 'null',
  917. 'description' => 'No online database.',
  918. 'url' => $base_path . 'cv/lookup/null',
  919. 'urlprefix' => $base_path. 'cv/lookup/{db}/{accession}',
  920. ));
  921. chado_insert_db(array(
  922. 'name' => 'local',
  923. 'description' => 'Terms created for this site.',
  924. 'url' => $base_path . 'cv/lookup/local',
  925. 'urlprefix' => $base_path . 'cv/lookup/{db}/{accession}',
  926. ));
  927. $term = chado_insert_cvterm(array(
  928. 'id' => 'local:rank',
  929. 'name' => 'rank',
  930. 'definition' => 'A taxonmic rank',
  931. 'cv_name' => 'local',
  932. ));
  933. }
  934. catch (\PDOException $e) {
  935. $transaction->rollback();
  936. $error = $e->getMessage();
  937. throw new DrupalUpdateException('Could not perform update: '. $error);
  938. }
  939. }
  940. /**
  941. * Add cvterm mapping for the Map entity type
  942. */
  943. function tripal_chado_update_7306() {
  944. try {
  945. $identifier = array(
  946. 'cv_id' => array('name' => 'EDAM'),
  947. 'name' => 'Map'
  948. );
  949. $cvterm = chado_get_cvterm($identifier);
  950. tripal_chado_add_cvterm_mapping($cvterm->cvterm_id, 'featuremap', NULL);
  951. }
  952. catch (\PDOException $e) {
  953. $error = $e->getMessage();
  954. throw new DrupalUpdateException('Could not perform update: '. $error);
  955. }
  956. }
  957. /**
  958. * Add cvterm mapping for the Publication entity type
  959. */
  960. function tripal_chado_update_7307() {
  961. try {
  962. $identifier = array(
  963. 'cv_id' => array('name' => 'tripal_pub'),
  964. 'name' => 'Publication'
  965. );
  966. $cvterm = chado_get_cvterm($identifier);
  967. tripal_chado_add_cvterm_mapping($cvterm->cvterm_id, 'pub', NULL);
  968. }
  969. catch (\PDOException $e) {
  970. $error = $e->getMessage();
  971. throw new DrupalUpdateException('Could not perform update: '. $error);
  972. }
  973. }
  974. /**
  975. * Add cvterm mapping for the analysis.sourcversion and analysis.sourcename.
  976. */
  977. function tripal_chado_update_7308() {
  978. try {
  979. $term = chado_insert_cvterm(array(
  980. 'id' => 'IAO:0000129',
  981. 'name' => 'version number',
  982. 'cv_name' => 'IAO',
  983. 'definition' => 'A version number is an ' .
  984. 'information content entity which is a sequence of characters ' .
  985. 'borne by part of each of a class of manufactured products or its ' .
  986. 'packaging and indicates its order within a set of other products ' .
  987. 'having the same name.',
  988. ));
  989. chado_associate_semweb_term('analysis', 'sourceversion', $term);
  990. chado_associate_semweb_term(NULL, 'version', $term);
  991. $term = chado_insert_cvterm(array(
  992. 'id' => 'schema:name',
  993. 'name' => 'name',
  994. 'cv_name' => 'schema',
  995. 'definition' => 'The name of the item.',
  996. ));
  997. chado_associate_semweb_term('analysis', 'sourcename', $term);
  998. $term = chado_insert_cvterm(array(
  999. 'id' => 'data:2091',
  1000. 'name' => 'Accession',
  1001. 'cv_name' => 'EDAM',
  1002. 'definition' => 'A persistent (stable) and unique identifier, typically identifying an object (entry) from a database.',
  1003. ));
  1004. chado_associate_semweb_term('dbxref', 'accession', $term);
  1005. }
  1006. catch (\PDOException $e) {
  1007. $error = $e->getMessage();
  1008. throw new DrupalUpdateException('Could not perform update: '. $error);
  1009. }
  1010. }
  1011. /**
  1012. * Add cvterm 'annotation' and maps to cvterm linking tables.
  1013. */
  1014. function tripal_chado_update_7309() {
  1015. try {
  1016. $term = chado_insert_cvterm(array(
  1017. 'id' => 'SIO:001166',
  1018. 'name' => 'annotation',
  1019. 'cv_name' => 'SIO',
  1020. 'definition' => 'An annotation is a written explanatory or critical description, or other in-context information (e.g., pattern, motif, link), that has been associated with data or other types of information.',
  1021. ));
  1022. chado_associate_semweb_term('feature_cvterm', 'cvterm_id', $term);
  1023. chado_associate_semweb_term('analysis_cvterm', 'cvterm_id', $term);
  1024. chado_associate_semweb_term('cell_line_cvterm', 'cvterm_id', $term);
  1025. chado_associate_semweb_term('environment_cvterm', 'cvterm_id', $term);
  1026. chado_associate_semweb_term('expression_cvterm', 'cvterm_id', $term);
  1027. chado_associate_semweb_term('library_cvterm', 'cvterm_id', $term);
  1028. chado_associate_semweb_term('organism_cvterm', 'cvterm_id', $term);
  1029. chado_associate_semweb_term('phenotype_cvterm', 'cvterm_id', $term);
  1030. chado_associate_semweb_term('stock_cvterm', 'cvterm_id', $term);
  1031. chado_associate_semweb_term('stock_relationship_cvterm', 'cvterm_id', $term);
  1032. $term = chado_insert_cvterm(array(
  1033. 'id' => 'SIO:000281',
  1034. 'name' => 'negation',
  1035. 'cv_name' => 'SIO',
  1036. 'definition' => 'NOT is a logical operator in that has the value true if its operand is false.',
  1037. ));
  1038. chado_associate_semweb_term('feature_cvterm', 'is_not', $term);
  1039. chado_associate_semweb_term('analysis_cvterm', 'is_not', $term);
  1040. chado_associate_semweb_term('organism_cvterm', 'is_not', $term);
  1041. chado_associate_semweb_term('stock_cvterm', 'is_not', $term);
  1042. }
  1043. catch (\PDOException $e) {
  1044. $error = $e->getMessage();
  1045. throw new DrupalUpdateException('Could not perform update: '. $error);
  1046. }
  1047. }
  1048. /**
  1049. * Adds the 'OBCS' and rank order term.
  1050. */
  1051. function tripal_chado_update_7310() {
  1052. try {
  1053. chado_insert_db(array(
  1054. 'name' => 'OBCS',
  1055. 'description' => 'Ontology of Biological and Clinical Statistics.',
  1056. 'url' => 'https://github.com/obcs/obcs',
  1057. 'urlprefix' => 'http://purl.obolibrary.org/obo/{db}_{accession}',
  1058. ));
  1059. chado_insert_cv(
  1060. 'OBCS',
  1061. 'Ontology of Biological and Clinical Statistics.'
  1062. );
  1063. $term = chado_insert_cvterm(array(
  1064. 'id' => 'OBCS:0000117',
  1065. 'name' => 'rank order',
  1066. 'cv_name' => 'OBCS',
  1067. 'definition' => 'A data item that represents an arrangement according to a rank, i.e., the position of a particular case relative to other cases on a defined scale.',
  1068. ));
  1069. chado_associate_semweb_term(NULL, 'rank', $term);
  1070. }
  1071. catch (\PDOException $e) {
  1072. $error = $e->getMessage();
  1073. throw new DrupalUpdateException('Could not perform update: '. $error);
  1074. }
  1075. }
  1076. /**
  1077. * Fix a mistake with the association of the term with featureloc.fmin.
  1078. */
  1079. function tripal_chado_update_7311() {
  1080. try {
  1081. $term = chado_insert_cvterm(array(
  1082. 'id' => 'local:fmin',
  1083. 'name' => 'minimal boundary',
  1084. 'definition' => 'The leftmost, minimal boundary in the linear range ' .
  1085. 'represented by the feature location. Sometimes this is called ' .
  1086. 'start although this is confusing because it does not necessarily ' .
  1087. 'represent the 5-prime coordinate.',
  1088. 'cv_name' => 'local',
  1089. ));
  1090. chado_associate_semweb_term('featureloc', 'fmin', $term);
  1091. }
  1092. catch (\PDOException $e) {
  1093. $error = $e->getMessage();
  1094. throw new DrupalUpdateException('Could not perform update: '. $error);
  1095. }
  1096. }
  1097. /**
  1098. * Associates a local term with the pub.miniref column.
  1099. */
  1100. function tripal_chado_update_7312() {
  1101. try {
  1102. $term = chado_insert_cvterm(array(
  1103. 'id' => 'local:miniref',
  1104. 'name' => 'Mini-ref',
  1105. 'definition' => 'A small in-house unique identifier for a publication.',
  1106. 'cv_name' => 'local',
  1107. ));
  1108. chado_associate_semweb_term('pub', 'miniref', $term);
  1109. $term = chado_insert_cvterm(array(
  1110. 'id' => 'schema:url',
  1111. 'name' => 'url',
  1112. 'cv_name' => 'schema',
  1113. 'definition' => 'URL of the item.',
  1114. ));
  1115. chado_associate_semweb_term('db', 'url', $term);
  1116. }
  1117. catch (\PDOException $e) {
  1118. $error = $e->getMessage();
  1119. throw new DrupalUpdateException('Could not perform update: '. $error);
  1120. }
  1121. }
  1122. /**
  1123. * Run the cvtermpath for the Tripal Pub and Contact ontologies.
  1124. */
  1125. function tripal_chado_update_7313() {
  1126. try {
  1127. $cv = chado_get_cv(array('name' => 'tripal_pub'));
  1128. chado_update_cvtermpath($cv->cv_id);
  1129. $cv = chado_get_cv(array('name' => 'tripal_contact'));
  1130. chado_update_cvtermpath($cv->cv_id);
  1131. }
  1132. catch (\PDOException $e) {
  1133. $error = $e->getMessage();
  1134. throw new DrupalUpdateException('Could not perform update: '. $error);
  1135. }
  1136. }
  1137. /**
  1138. * Adds a local term for the featuremap.feature_id column.
  1139. */
  1140. function tripal_chado_update_7314() {
  1141. try {
  1142. $term = chado_insert_cvterm(array(
  1143. 'name' => 'Reference Feature',
  1144. 'definition' => 'A genomic or genetic feature on which other features are mapped.',
  1145. 'cv_name' => 'local',
  1146. 'is_relationship' => 0,
  1147. 'db_name' => 'local'
  1148. ));
  1149. chado_associate_semweb_term('featurepos', 'map_feature_id', $term);
  1150. }
  1151. catch (\PDOException $e) {
  1152. $error = $e->getMessage();
  1153. throw new DrupalUpdateException('Could not perform update: '. $error);
  1154. }
  1155. }
  1156. /**
  1157. * Fixes a mistake with the schema:additionalType term.
  1158. */
  1159. function tripal_chado_update_7315() {
  1160. try {
  1161. $term = chado_insert_cvterm(array(
  1162. 'id' => 'schema:additionalType',
  1163. 'name' => 'additionalType',
  1164. 'cv_name' => 'schema',
  1165. 'definition' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in.',
  1166. ));
  1167. chado_delete_record('cv', array('name' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in.'));
  1168. }
  1169. catch (\PDOException $e) {
  1170. $error = $e->getMessage();
  1171. throw new DrupalUpdateException('Could not perform update: '. $error);
  1172. }
  1173. }
  1174. /**
  1175. * Adds the email term for potential use with contact properties.
  1176. */
  1177. function tripal_chado_update_7316() {
  1178. try {
  1179. $term = chado_insert_cvterm(array(
  1180. 'id' => 'SIO:001323',
  1181. 'name' => 'email address',
  1182. 'cv_name' => 'SIO',
  1183. 'definition' => 'an email address is an identifier to send mail to particular electronic mailbox.',
  1184. ));
  1185. }
  1186. catch (\PDOException $e) {
  1187. $error = $e->getMessage();
  1188. throw new DrupalUpdateException('Could not perform update: '. $error);
  1189. }
  1190. }
  1191. /**
  1192. * Support for the biomaterial table.
  1193. */
  1194. function tripal_chado_update_7317() {
  1195. try {
  1196. $term = chado_insert_cvterm(array(
  1197. 'id' => 'OBI:0100026',
  1198. 'name' => 'organism',
  1199. 'cv_name' => 'obi',
  1200. 'definition' => 'A material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment. An organism may be unicellular or made up, like humans, of many billions of cells divided into specialized tissues and organs.',
  1201. ));
  1202. chado_associate_semweb_term('biomaterial', 'taxon_id', $term);
  1203. $term = chado_insert_cvterm(array(
  1204. 'id' => 'local:contact',
  1205. 'name' => 'contact',
  1206. 'definition' => 'An entity (e.g. individual or organization) through ' .
  1207. 'whom a person can gain access to information, favors, ' .
  1208. 'influential people, and the like.',
  1209. 'cv_name' => 'local',
  1210. ));
  1211. chado_associate_semweb_term('biomaterial', 'biosourceprovider_id', $term);
  1212. }
  1213. catch (\PDOException $e) {
  1214. $error = $e->getMessage();
  1215. throw new DrupalUpdateException('Could not perform update: '. $error);
  1216. }
  1217. }
  1218. /**
  1219. * Adding biological sample term for biomaterial entities.
  1220. */
  1221. function tripal_chado_update_7318() {
  1222. try {
  1223. chado_insert_db(array(
  1224. 'name' => 'sep',
  1225. 'description' => 'Sample processing and separation techniques.',
  1226. 'url' => 'http://psidev.info/index.php?q=node/312',
  1227. 'urlprefix' => 'http://purl.obolibrary.org/obo/{db}_{accession}',
  1228. ));
  1229. chado_insert_cv('sep','A structured controlled vocabulary for the annotation of sample processing and separation techniques in scientific experiments.');
  1230. $term = chado_insert_cvterm(array(
  1231. 'id' => 'sep:00195',
  1232. 'name' => 'biological sample',
  1233. 'cv_name' => 'sep',
  1234. 'definition' => 'A biological sample analysed by a particular technology.',
  1235. ));
  1236. }
  1237. catch (\PDOException $e) {
  1238. $error = $e->getMessage();
  1239. throw new DrupalUpdateException('Could not perform update: '. $error);
  1240. }
  1241. }
  1242. /**
  1243. * Adding new Analysis term.
  1244. */
  1245. function tripal_chado_update_7319() {
  1246. try {
  1247. $term = chado_insert_cvterm(array(
  1248. 'id' => 'operation:2945',
  1249. 'name' => 'Analysis',
  1250. 'cv_name' => 'EDAM',
  1251. 'definition' => 'Apply analytical methods to existing data of a specific type.',
  1252. ));
  1253. }
  1254. catch (\PDOException $e) {
  1255. $error = $e->getMessage();
  1256. throw new DrupalUpdateException('Could not perform update: '. $error);
  1257. }
  1258. }
  1259. /**
  1260. * Adding Phylogenetic Tree content type.
  1261. */
  1262. function tripal_chado_update_7320() {
  1263. try {
  1264. // Associate the Analysis term with the analysis_id of the phylotree table.
  1265. $term = chado_get_cvterm(array('id' => 'operation:2945'));
  1266. chado_associate_semweb_term('phylotree', 'analysis_id', $term);
  1267. $term = chado_insert_cvterm(array(
  1268. 'id' => 'data:0872',
  1269. 'name' => 'Phylogenetic tree',
  1270. 'cv_name' => 'EDAM',
  1271. 'definition' => 'The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length.',
  1272. ));
  1273. $term = chado_insert_cvterm(array(
  1274. 'id' => 'data:3272',
  1275. 'name' => 'Species tree',
  1276. 'cv_name' => 'EDAM',
  1277. 'definition' => 'A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled.',
  1278. ));
  1279. $term = chado_insert_cvterm(array(
  1280. 'id' => 'data:3271',
  1281. 'name' => 'Gene tree',
  1282. 'cv_name' => 'EDAM',
  1283. 'definition' => 'A phylogenetic tree that is an estimate of the character\'s phylogeny.',
  1284. ));
  1285. $term = chado_insert_cvterm(array(
  1286. 'id' => 'operation:0567',
  1287. 'name' => 'Phylogenetic tree visualisation',
  1288. 'cv_name' => 'EDAM',
  1289. 'definition' => 'A phylogenetic tree that is an estimate of the character\'s phylogeny.',
  1290. ));
  1291. // Create the 'Phylogenetic tree' content type.
  1292. $error = '';
  1293. $args = array(
  1294. 'vocabulary' => 'data',
  1295. 'accession' => '0872',
  1296. 'term_name' => 'Phylogenetic tree',
  1297. 'storage_args' => array(
  1298. 'data_table' => 'phylotree',
  1299. )
  1300. );
  1301. $term = tripal_load_term_entity(array('vocabulary' => 'data', 'accession' => '0872'));
  1302. if ($term) {
  1303. $bundle = tripal_load_bundle_entity(array('term_id' => $term->id));
  1304. }
  1305. if (!$term or !$bundle) {
  1306. if (!tripal_create_bundle($args)) {
  1307. throw new Exception('Error Encountered creating "Phylogenetic tree" Tripal Content Type.');
  1308. }
  1309. }
  1310. }
  1311. catch (\PDOException $e) {
  1312. $error = $e->getMessage();
  1313. throw new DrupalUpdateException('Could not perform update: '. $error);
  1314. }
  1315. }
  1316. /**
  1317. * Updating details for local ontologies.
  1318. */
  1319. function tripal_chado_update_7321() {
  1320. try {
  1321. chado_insert_db(array(
  1322. 'name' => 'TPUB',
  1323. 'description' => 'Tripal Publiation Ontology. A temporary ontology until a more formal appropriate ontology an be identified.',
  1324. 'url' => '/cv/lookup/TPUB',
  1325. 'urlprefix' => '/cv/lookup/TPUB/{accession}',
  1326. ));
  1327. chado_insert_cv('tripal_pub', 'Tripal Publiation Ontology. A temporary ontology until a more formal appropriate ontology an be identified.');
  1328. chado_insert_db(array(
  1329. 'name' => 'rdf',
  1330. 'description' => 'Resource Description Framework',
  1331. 'url' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns',
  1332. 'urlprefix' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
  1333. ));
  1334. chado_insert_cv(
  1335. 'rdf',
  1336. 'Resource Description Framework'
  1337. );
  1338. chado_insert_db(array(
  1339. 'name' => 'rdfs',
  1340. 'description' => 'Resource Description Framework Schema',
  1341. 'url' => 'https://www.w3.org/TR/rdf-schema/',
  1342. 'urlprefix' => 'http://www.w3.org/2000/01/rdf-schema#{accession}',
  1343. ));
  1344. chado_insert_db(array(
  1345. 'name' => 'hydra',
  1346. 'description' => 'A Vocabulary for Hypermedia-Driven Web APIs',
  1347. 'url' => 'http://www.w3.org/ns/hydra/core',
  1348. 'urlprefix' => 'http://www.w3.org/ns/hydra/core#{accession}',
  1349. ));
  1350. chado_insert_cv(
  1351. 'hydra',
  1352. 'A Vocabulary for Hypermedia-Driven Web APIs.'
  1353. );
  1354. }
  1355. catch (\PDOException $e) {
  1356. $error = $e->getMessage();
  1357. throw new DrupalUpdateException('Could not perform update: '. $error);
  1358. }
  1359. }
  1360. /**
  1361. * Fixing the SWO, TPUB and TContact vocabulary URLs
  1362. */
  1363. function tripal_chado_update_7322() {
  1364. try {
  1365. chado_insert_db(array(
  1366. 'name' => 'TPUB',
  1367. 'description' => 'Tripal Publiation Ontology. A temporary ontology until a more formal appropriate ontology an be identified.',
  1368. 'url' => 'cv/lookup/TPUB',
  1369. 'urlprefix' => 'cv/lookup/TPUB/{accession}',
  1370. ));
  1371. chado_insert_db(array(
  1372. 'name' => 'TContact',
  1373. 'description' => 'Tripal Contact Ontology. A temporary ontology until a more formal appropriate ontology an be identified.',
  1374. 'url' => 'cv/lookup/TContact',
  1375. 'urlprefix' => 'cv/lookup/TContact/{accession}',
  1376. ));
  1377. chado_insert_cv('tripal_contact', 'Tripal Contact Ontology. A temporary ontology until a more formal appropriate ontology an be identified.');
  1378. chado_insert_db(array(
  1379. 'name' => 'SWO',
  1380. 'description' => 'Software Ontology',
  1381. 'url' => 'http://purl.obolibrary.org/obo/swo',
  1382. 'urlprefix' => 'http://www.ebi.ac.uk/swo/',
  1383. ));
  1384. }
  1385. catch (\PDOException $e) {
  1386. $error = $e->getMessage();
  1387. throw new DrupalUpdateException('Could not perform update: '. $error);
  1388. }
  1389. }
  1390. /**
  1391. * Adding the db2cv materialized view.
  1392. */
  1393. function tripal_chado_update_7323() {
  1394. try {
  1395. module_load_include('inc', 'tripal_chado', 'includes/setup/tripal_chado.chado_vx_x');
  1396. tripal_chado_add_db2cv_mview_mview();
  1397. drupal_set_message('Populating materialized view db2cv_mview...');
  1398. $mview_id = chado_get_mview_id('db2cv_mview');
  1399. chado_populate_mview($mview_id);
  1400. drupal_set_message('Populating materialized view cv_root_mview...');
  1401. $mview_id = chado_get_mview_id('cv_root_mview');
  1402. chado_populate_mview($mview_id);
  1403. }
  1404. catch (\PDOException $e) {
  1405. $error = $e->getMessage();
  1406. throw new DrupalUpdateException('Could not perform update: '. $error);
  1407. }
  1408. }
  1409. /**
  1410. * Updating the db2cv materialized view.
  1411. */
  1412. function tripal_chado_update_7324() {
  1413. try {
  1414. if (chado_table_exists(db2cv_mview) and !chado_column_exists('db2cv_mview', 'num_terms')) {
  1415. module_load_include('inc', 'tripal_chado', 'includes/setup/tripal_chado.chado_vx_x');
  1416. // Remove the old mview.
  1417. $mview_id = chado_get_mview_id('db2cv_mview');
  1418. chado_delete_mview($mview_id);
  1419. // Readd the mview.
  1420. tripal_chado_add_db2cv_mview_mview();
  1421. drupal_set_message('Populating materialized view db2cv_mview...');
  1422. $mview_id = chado_get_mview_id('db2cv_mview');
  1423. chado_populate_mview($mview_id);
  1424. }
  1425. }
  1426. catch (\PDOException $e) {
  1427. $error = $e->getMessage();
  1428. throw new DrupalUpdateException('Could not perform update: '. $error);
  1429. }
  1430. }
  1431. /**
  1432. * Adding additional vocabulary term mapping to Chado table columns.
  1433. */
  1434. function tripal_chado_update_7325() {
  1435. try {
  1436. module_load_include('inc', 'tripal_chado', 'includes/tripal_chado.semweb');
  1437. tripal_chado_populate_chado_semweb_table();
  1438. }
  1439. catch (\PDOException $e) {
  1440. $error = $e->getMessage();
  1441. throw new DrupalUpdateException('Could not perform update: '. $error);
  1442. }
  1443. }
  1444. /**
  1445. * Adding a "Company" term.
  1446. */
  1447. function tripal_chado_update_7326() {
  1448. try {
  1449. // The Company term is missing for the Tripal Contact ontology, but is
  1450. // useful for the arraydesign.manufacturer which is an FK to Contact.
  1451. // It seems better to use a term from a curated ontology than to add to
  1452. // Tripal Contact.
  1453. $term = chado_insert_cvterm(array(
  1454. 'id' => 'NCIT:C54131',
  1455. 'name' => 'Company',
  1456. 'cv_name' => 'ncit',
  1457. 'definition' => 'Any formal business entity for profit, which may be a corporation, a partnership, association or individual proprietorship. [ NCI http://dictionary.law.com ]',
  1458. ));
  1459. }
  1460. catch (\PDOException $e) {
  1461. $error = $e->getMessage();
  1462. throw new DrupalUpdateException('Could not perform update: '. $error);
  1463. }
  1464. }
  1465. /**
  1466. * Adding terms for sequence visualization.
  1467. */
  1468. function tripal_chado_update_7327() {
  1469. try {
  1470. $term = chado_insert_cvterm(array(
  1471. 'id' => 'operation:0564',
  1472. 'name' => 'Sequence visualisation',
  1473. 'cv_name' => 'EDAM',
  1474. 'definition' => 'Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown.',
  1475. ));
  1476. }
  1477. catch (\PDOException $e) {
  1478. $error = $e->getMessage();
  1479. throw new DrupalUpdateException('Could not perform update: '. $error);
  1480. }
  1481. }
  1482. /**
  1483. * Don't count relationship cvterms as ontology roots.
  1484. */
  1485. function tripal_chado_update_7328() {
  1486. try {
  1487. $mv_name = 'cv_root_mview';
  1488. // Remove the old mview.
  1489. $mview_id = chado_get_mview_id($mv_name);
  1490. chado_delete_mview($mview_id);
  1491. module_load_include('inc', 'tripal_chado', 'includes/setup/tripal_chado.chado_vx_x');
  1492. // Re-add the mview.
  1493. tripal_chado_add_cv_root_mview_mview();
  1494. $mview_id = chado_get_mview_id($mv_name);
  1495. chado_populate_mview($mview_id);
  1496. }
  1497. catch (\PDOException $e) {
  1498. $error = $e->getMessage();
  1499. throw new DrupalUpdateException('Could not perform update: '. $error);
  1500. }
  1501. }
  1502. /**
  1503. * Fixing the chado_bundle.type_id type.
  1504. */
  1505. function tripal_chado_update_7329() {
  1506. try {
  1507. db_change_field('chado_bundle', 'type_id', 'type_id', [
  1508. 'description' => 'If a type_column is set then this is the cvterm_id of the data type that this bundle maps to.',
  1509. 'size' => 'big',
  1510. 'type' => 'int',
  1511. ]);
  1512. }
  1513. catch (\PDOException $e) {
  1514. $error = $e->getMessage();
  1515. throw new DrupalUpdateException('Could not perform update: '. $error);
  1516. }
  1517. }