tripal_jbrowse.install 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. <?php
  2. /**
  3. * @file
  4. * Install the module.
  5. *
  6. * Creates the JBrowse Instance content type using the method from
  7. * http://www.thecarneyeffect.co.uk/creating-custom-content-type-adding-fields-programmatically-drupal-7
  8. */
  9. /**
  10. * Implements hook_install().
  11. */
  12. function tripal_jbrowse_install() {
  13. $t = get_t();
  14. /**** STEP 1: Create the content type ****/
  15. // machine name of the content type
  16. $name = 'jbrowse_instance';
  17. // define the node type
  18. $type = array(
  19. 'type' => $name,
  20. 'name' => $t('JBrowse Instance'),
  21. 'base' => 'node_content',
  22. 'title_label' => $t('Title'),
  23. 'description' => $t('Integrates an existing JBrowse instance within these nodes.'),
  24. 'custom' => TRUE,
  25. );
  26. // set other node defaults not declared above
  27. $content_type = node_type_set_defaults($type);
  28. // add the body field
  29. node_add_body_field($content_type, $t('JBrowse Description'));
  30. // save the content type
  31. node_type_save($content_type);
  32. // add peristant variables that control settings
  33. variable_set('additional_settings__active_tab_' . $name, 'edit-menu');
  34. variable_set('node_preview_' . $name, 2);
  35. variable_set('node_options_' . $name, array(0 => 'status', 1 => 'promote'));
  36. variable_set('node_submitted_' . $name, 0);
  37. variable_set('menu_options_' . $name, array());
  38. variable_set('menu_parent_' . $name, 'main-menu:0');
  39. /**** STEP 2: Add Fields ****/
  40. // create all the fields we are adding to our content type
  41. foreach (_jbrowse_installed_fields() as $field) {
  42. field_create_field($field);
  43. }
  44. // create all the instances for our fields
  45. foreach (_jbrowse_installed_instances() as $instance) {
  46. $instance['entity_type'] = 'node';
  47. $instance['bundle'] = $type['type'];
  48. field_create_instance($instance);
  49. }
  50. }
  51. /**
  52. * Implements hook_uninstall().
  53. */
  54. function tripal_jbrowse_uninstall() {
  55. // machine name of the content type
  56. $name = 'jbrowse_instance';
  57. // gather all job nodes created
  58. $sql = 'SELECT nid FROM {node} n WHERE n.type = :type';
  59. $result = db_query($sql, array(':type' => $name));
  60. $nids = array();
  61. foreach ($result as $row) {
  62. $nids[] = $row->nid;
  63. }
  64. // delete all the job nodes at once
  65. node_delete_multiple($nids);
  66. // remove peristant variables that control settings
  67. variable_del('additional_settings__active_tab_' . $name);
  68. variable_del('node_preview_' . $name);
  69. variable_del('node_options_' . $name);
  70. variable_del('node_submitted_' . $name);
  71. variable_del('menu_options_' . $name);
  72. variable_del('menu_parent_' . $name);
  73. // find all fields and delete them
  74. foreach (array_keys(_jbrowse_installed_fields()) as $field) {
  75. field_delete_field($field);
  76. }
  77. // find all fields and delete instance
  78. $instances = field_info_instances('node', $name);
  79. foreach ($instances as $instance_name => $instance) {
  80. field_delete_instance($instance);
  81. }
  82. // delete our content type
  83. node_type_delete($name);
  84. // purge all field infromation
  85. field_purge_batch(1000);
  86. }
  87. /**
  88. * Defines all the fields needed for the jbrowse_instance content type.
  89. *
  90. * @return
  91. * An associative array specifying the fields we wish to add to our
  92. * new node type.
  93. */
  94. function _jbrowse_installed_fields() {
  95. return array(
  96. 'field_jburl' => array(
  97. 'translatable' => '0',
  98. 'entity_types' => array(),
  99. 'settings' => array(
  100. 'attributes' => array(
  101. 'target' => 'default',
  102. 'class' => '',
  103. 'rel' => '',
  104. ),
  105. 'url' => 0,
  106. 'title' => 'optional',
  107. 'title_value' => '',
  108. 'title_maxlength' => 128,
  109. 'enable_tokens' => 1,
  110. 'display' => array(
  111. 'url_cutoff' => 80,
  112. ),
  113. ),
  114. 'storage' => array(
  115. 'type' => 'field_sql_storage',
  116. 'settings' => array(),
  117. 'module' => 'field_sql_storage',
  118. 'active' => '1',
  119. 'details' => array(
  120. 'sql' => array(
  121. 'FIELD_LOAD_CURRENT' => array(
  122. 'field_data_field_jburl' => array(
  123. 'url' => 'field_jburl_url',
  124. 'title' => 'field_jburl_title',
  125. 'attributes' => 'field_jburl_attributes',
  126. ),
  127. ),
  128. 'FIELD_LOAD_REVISION' => array(
  129. 'field_revision_field_jburl' => array(
  130. 'url' => 'field_jburl_url',
  131. 'title' => 'field_jburl_title',
  132. 'attributes' => 'field_jburl_attributes',
  133. ),
  134. ),
  135. ),
  136. ),
  137. ),
  138. 'foreign keys' => array(),
  139. 'indexes' => array(),
  140. 'field_name' => 'field_jburl',
  141. 'type' => 'link_field',
  142. 'module' => 'link',
  143. 'active' => '1',
  144. 'locked' => '0',
  145. 'cardinality' => '1',
  146. 'deleted' => '0',
  147. 'columns' => array(
  148. 'url' => array(
  149. 'type' => 'varchar',
  150. 'length' => 2048,
  151. 'not null' => FALSE,
  152. 'sortable' => TRUE,
  153. ),
  154. 'title' => array(
  155. 'type' => 'varchar',
  156. 'length' => 255,
  157. 'not null' => FALSE,
  158. 'sortable' => TRUE,
  159. ),
  160. 'attributes' => array(
  161. 'type' => 'text',
  162. 'size' => 'medium',
  163. 'not null' => FALSE,
  164. ),
  165. ),
  166. 'bundles' => array(
  167. 'node' => array(
  168. 'jbrowse_instance',
  169. ),
  170. ),
  171. ),
  172. 'field_jbloc' => array(
  173. 'translatable' => '0',
  174. 'entity_types' => array(),
  175. 'settings' => array(
  176. 'max_length' => '255',
  177. ),
  178. 'storage' => array(
  179. 'type' => 'field_sql_storage',
  180. 'settings' => array(),
  181. 'module' => 'field_sql_storage',
  182. 'active' => '1',
  183. 'details' => array(
  184. 'sql' => array(
  185. 'FIELD_LOAD_CURRENT' => array(
  186. 'field_data_field_jbloc' => array(
  187. 'value' => 'field_jbloc_value',
  188. 'format' => 'field_jbloc_format',
  189. ),
  190. ),
  191. 'FIELD_LOAD_REVISION' => array(
  192. 'field_revision_field_jbloc' => array(
  193. 'value' => 'field_jbloc_value',
  194. 'format' => 'field_jbloc_format',
  195. ),
  196. ),
  197. ),
  198. ),
  199. ),
  200. 'foreign keys' => array(
  201. 'format' => array(
  202. 'table' => 'filter_format',
  203. 'columns' => array(
  204. 'format' => 'format',
  205. ),
  206. ),
  207. ),
  208. 'indexes' => array(
  209. 'format' => array(
  210. 'format',
  211. ),
  212. ),
  213. 'field_name' => 'field_jbloc',
  214. 'type' => 'text',
  215. 'module' => 'text',
  216. 'active' => '1',
  217. 'locked' => '0',
  218. 'cardinality' => '1',
  219. 'deleted' => '0',
  220. 'columns' => array(
  221. 'value' => array(
  222. 'type' => 'varchar',
  223. 'length' => '255',
  224. 'not null' => FALSE,
  225. ),
  226. 'format' => array(
  227. 'type' => 'varchar',
  228. 'length' => 255,
  229. 'not null' => FALSE,
  230. ),
  231. ),
  232. 'bundles' => array(
  233. 'node' => array(
  234. 'jbrowse_instance',
  235. ),
  236. ),
  237. ),
  238. 'field_jbtracks' => array(
  239. 'translatable' => '0',
  240. 'entity_types' => array(),
  241. 'settings' => array(),
  242. 'storage' => array(
  243. 'type' => 'field_sql_storage',
  244. 'settings' => array(),
  245. 'module' => 'field_sql_storage',
  246. 'active' => '1',
  247. 'details' => array(
  248. 'sql' => array(
  249. 'FIELD_LOAD_CURRENT' => array(
  250. 'field_data_field_jbtracks' => array(
  251. 'value' => 'field_jbtracks_value',
  252. 'format' => 'field_jbtracks_format',
  253. ),
  254. ),
  255. 'FIELD_LOAD_REVISION' => array(
  256. 'field_revision_field_jbtracks' => array(
  257. 'value' => 'field_jbtracks_value',
  258. 'format' => 'field_jbtracks_format',
  259. ),
  260. ),
  261. ),
  262. ),
  263. ),
  264. 'foreign keys' => array(
  265. 'format' => array(
  266. 'table' => 'filter_format',
  267. 'columns' => array(
  268. 'format' => 'format',
  269. ),
  270. ),
  271. ),
  272. 'indexes' => array(
  273. 'format' => array(
  274. 'format',
  275. ),
  276. ),
  277. 'field_name' => 'field_jbtracks',
  278. 'type' => 'text_long',
  279. 'module' => 'text',
  280. 'active' => '1',
  281. 'locked' => '0',
  282. 'cardinality' => '1',
  283. 'deleted' => '0',
  284. 'columns' => array(
  285. 'value' => array(
  286. 'type' => 'text',
  287. 'size' => 'big',
  288. 'not null' => FALSE,
  289. ),
  290. 'format' => array(
  291. 'type' => 'varchar',
  292. 'length' => 255,
  293. 'not null' => FALSE,
  294. ),
  295. ),
  296. 'bundles' => array(
  297. 'node' => array(
  298. 'jbrowse_instance',
  299. ),
  300. ),
  301. ),
  302. );
  303. }
  304. /**
  305. * Defines the field instances needed for the jbrowse_instance content type.
  306. *
  307. * @return
  308. * An associative array specifying the instances we wish to add to our new
  309. * node type.
  310. */
  311. function _jbrowse_installed_instances() {
  312. return array(
  313. 'field_jburl' => array(
  314. 'label' => 'Existing JBrowse URL',
  315. 'widget' => array(
  316. 'weight' => '1',
  317. 'type' => 'link_field',
  318. 'module' => 'link',
  319. 'active' => 0,
  320. 'settings' => array(),
  321. ),
  322. 'settings' => array(
  323. 'validate_url' => 1,
  324. 'url' => 0,
  325. 'title' => 'none',
  326. 'title_value' => '',
  327. 'title_maxlength' => '128',
  328. 'enable_tokens' => 0,
  329. 'display' => array(
  330. 'url_cutoff' => '',
  331. ),
  332. 'attributes' => array(
  333. 'target' => '_blank',
  334. 'rel' => '',
  335. 'class' => '',
  336. 'configurable_title' => 0,
  337. 'title' => '',
  338. ),
  339. 'rel_remove' => 'default',
  340. 'user_register_form' => FALSE,
  341. ),
  342. 'display' => array(
  343. 'default' => array(
  344. 'label' => 'above',
  345. 'type' => 'link_default',
  346. 'settings' => array(),
  347. 'module' => 'link',
  348. 'weight' => 3,
  349. ),
  350. 'teaser' => array(
  351. 'type' => 'hidden',
  352. 'label' => 'above',
  353. 'settings' => array(),
  354. 'weight' => 0,
  355. ),
  356. ),
  357. 'required' => 1,
  358. 'description' => 'The URL for the existing JBrowse you wish to integrate into this page. This URL should not include any query parameters.',
  359. 'default_value' => NULL,
  360. 'field_name' => 'field_jburl',
  361. 'entity_type' => 'node',
  362. 'bundle' => 'jbrowse_instance',
  363. 'deleted' => '0',
  364. ),
  365. 'field_jbloc' => array(
  366. 'label' => 'Start Location',
  367. 'widget' => array(
  368. 'weight' => '3',
  369. 'type' => 'text_textfield',
  370. 'module' => 'text',
  371. 'active' => 1,
  372. 'settings' => array(
  373. 'size' => '60',
  374. ),
  375. ),
  376. 'settings' => array(
  377. 'text_processing' => '0',
  378. 'user_register_form' => FALSE,
  379. ),
  380. 'display' => array(
  381. 'default' => array(
  382. 'label' => 'above',
  383. 'type' => 'text_default',
  384. 'settings' => array(),
  385. 'module' => 'text',
  386. 'weight' => 1,
  387. ),
  388. 'teaser' => array(
  389. 'type' => 'hidden',
  390. 'label' => 'above',
  391. 'settings' => array(),
  392. 'weight' => 0,
  393. ),
  394. ),
  395. 'required' => 0,
  396. 'description' => "<p>The initial genomic position which will be visible in the viewing field. Possible input strings are:</p>\r\n<strong>\"Chromosome\"+\":\"+ start point + \"..\" + end point</strong>\r\n<p>A chromosome name/ID followed by “:”, starting position, “..” and end position of the genome to be viewed in the browser is used as an input. Chromosome ID can be either a string or a mix of string and numbers. “CHR” to indicate chromosome may or may not be used. Strings are not case-sensitive. If the chromosome ID is found in the database reference sequence (RefSeq), the chromosome will be shown from the starting position to the end position given in URL.</p>\r\n<pre> ctgA:100..200</pre>\r\n<p>Chromosome ctgA will be displayed from position 100 to 200.</p>\r\nOR <strong>start point + \"..\" + end point</strong>\r\n<p>A string of numerical value, “..” and another numerical value is given with the loc option. JBrowse navigates through the currently selected chromosome from the first numerical value, start point, to the second numerical value, end point.</p>\r\n<pre> 200..600</pre>\r\n<p>Displays position 200 to 600 of the current chromosome.</p>\r\nOR <strong>center base</strong>\r\n<p>If only one numerical value is given as an input, JBrowse treats the input as the center position. Then an arbitrary region of the currently selected gene is displayed in the viewing field with the given input position as basepair position on which to center the view.</p>\r\nOR <strong>feature name/ID</strong>\r\n<p>If a string or a mix of string and numbers are entered as an input, JBrowse treats the input as a feature name/ID of a gene. If the ID exists in the database RefSeq, JBrowser displays an arbitrary region of the feature from the the position 0, starting position of the gene, to a certain end point.</p>\r\n<pre> ctgA</pre>\r\n<p>Displays an arbitrary region from the ctgA reference.</p>",
  397. 'default_value' => NULL,
  398. 'field_name' => 'field_jbloc',
  399. 'entity_type' => 'node',
  400. 'bundle' => 'jbrowse_instance',
  401. 'deleted' => '0',
  402. ),
  403. 'field_jbtracks' => array(
  404. 'label' => 'Tracks to Display',
  405. 'widget' => array(
  406. 'weight' => '4',
  407. 'type' => 'text_textarea',
  408. 'module' => 'text',
  409. 'active' => 1,
  410. 'settings' => array(
  411. 'rows' => '2',
  412. ),
  413. ),
  414. 'settings' => array(
  415. 'text_processing' => '0',
  416. 'user_register_form' => FALSE,
  417. ),
  418. 'display' => array(
  419. 'default' => array(
  420. 'label' => 'above',
  421. 'type' => 'text_default',
  422. 'settings' => array(),
  423. 'module' => 'text',
  424. 'weight' => 2,
  425. ),
  426. 'teaser' => array(
  427. 'type' => 'hidden',
  428. 'label' => 'above',
  429. 'settings' => array(),
  430. 'weight' => 0,
  431. ),
  432. ),
  433. 'required' => 0,
  434. 'description' => "<p>A comma-delimited strings containing track names, each of which should correspond to the \"label\" element of the track information dictionaries that are currently viewed in the viewing field.</p>\r\n<pre> DNA,knownGene,ccdsGene,snp131,pgWatson,simpleRepeat</pre>",
  435. 'default_value' => NULL,
  436. 'field_name' => 'field_jbtracks',
  437. 'entity_type' => 'node',
  438. 'bundle' => 'jbrowse_instance',
  439. 'deleted' => '0',
  440. ),
  441. );
  442. }