tripal_analysis_blast.module 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. <?php
  2. require_once "parse_blast_XML.inc";
  3. /*******************************************************************************
  4. * Tripal Blast Result lets users show/hide blast results associated
  5. * with a tripal feature
  6. ******************************************************************************/
  7. function tripal_analysis_blast_init(){
  8. // Add javascript and style sheet
  9. drupal_add_css(drupal_get_path('theme', 'tripal').'/css/tripal_analysis_blast.css');
  10. drupal_add_js(drupal_get_path('theme', 'tripal').'/js/tripal_analysis_blast.js');
  11. }
  12. /*******************************************************************************
  13. * tripal_analysis_blast_menu()
  14. * HOOK: Implementation of hook_menu()
  15. * Entry points and paths of the module
  16. */
  17. function tripal_analysis_blast_menu() {
  18. // Show top 10/25/all blast results for ajax calls
  19. $items['tripal_top_blast'] = array(
  20. 'path' => 'top_blast',
  21. 'title' => t('Blast Hits'),
  22. 'page callback' => 'tripal_get_feature_blast_results_ajax',
  23. 'page arguments' => array(1,2,3),
  24. 'access arguments' => array('access content'),
  25. 'type' => MENU_CALLBACK
  26. );
  27. // Show regular expressions for selected database in Blast admin page
  28. $items['admin/tripal/tripal_analysis/tripal_blast_regex/%'] = array(
  29. 'title' => t('Blast Regex'),
  30. 'page callback' => 'tripal_get_blast_regex',
  31. 'page arguments' => array(4),
  32. 'access arguments' => array('administer site configuration'),
  33. 'type' => MENU_CALLBACK
  34. );
  35. $items['tripal_blast_report'] = array(
  36. 'title' => t('Homology Report'),
  37. 'page callback' => 'tripal_get_blast_report',
  38. 'page arguments' => array(1,2,3,4,5),
  39. 'access arguments' => array('access chado_analysis_blast content'),
  40. 'type' => MENU_CALLBACK,
  41. 'file' => 'tripal_analysis_blast_htmlreport.inc'
  42. );
  43. return $items;
  44. }
  45. /*******************************************************************************
  46. * tripal_analysis_blast_nodeapi()
  47. * HOOK: Implementation of hook_nodeapi()
  48. * Display blast results for allowed node types
  49. */
  50. function tripal_analysis_blast_nodeapi(&$node, $op, $teaser, $page) {
  51. switch ($op) {
  52. case 'view':
  53. if($teaser){
  54. return '';
  55. }
  56. // Find out which node types for showing the blast
  57. $types_to_show = variable_get('tripal_analysis_blast_setting',
  58. array('chado_feature'));
  59. // Abort if this node is not one of the types we should show.
  60. if (!in_array($node->type, $types_to_show, TRUE)) {
  61. break;
  62. }
  63. if(strcmp($node->type,'chado_feature')==0){
  64. if($node->build_mode == NODE_BUILD_SEARCH_INDEX){
  65. $node->content['tripal_analysis_blast_index_version'] = array(
  66. '#value' => theme('tripal_analysis_blast_results_index_version',$node),
  67. '#weight' => 8,
  68. );
  69. } else {
  70. // Show blast result if not at teaser view
  71. $node->content['tripal_feature_blast_results'] = array(
  72. '#value' => theme('tripal_feature_blast_results', $node),
  73. '#weight' => 8
  74. );
  75. }
  76. }
  77. break;
  78. }
  79. }
  80. /************************************************************************
  81. * We need to let drupal know about our theme functions and their arguments.
  82. * We create theme functions to allow users of the module to customize the
  83. * look and feel of the output generated in this module
  84. */
  85. function tripal_analysis_blast_theme () {
  86. return array(
  87. 'tripal_analysis_blast_results_index_version' => array (
  88. 'arguments' => array('node'),
  89. ),
  90. 'tripal_feature_blast_results' => array(
  91. 'arguments' => array('node'=> null),
  92. 'template' => 'tripal_feature_blast_results',
  93. )
  94. );
  95. }
  96. /*******************************************************************************
  97. *
  98. */
  99. function tripal_get_feature_blast_results_ajax($feature_id, $db_id, $max){
  100. $sql = "SELECT nid FROM {chado_feature} WHERE feature_id = %d";
  101. $nid = db_fetch_object(db_query($sql,$feature_id));
  102. $node = node_load($nid->nid);
  103. // add the additional variables that the theme needs to generate the output
  104. $node->db_id = $db_id;
  105. $node->max = $max;
  106. // call the theme to rebuild the blast results
  107. drupal_json(array('update' => theme('tripal_feature_blast_results',$node)));
  108. }
  109. /*******************************************************************************
  110. *
  111. */
  112. function tripal_analysis_blast_preprocess_tripal_feature_blast_results(&$variables){
  113. $feature = $variables['node']->feature;
  114. $db_id = $variables['node']->db_id; // this value only gets set on an ajax call
  115. $max = 10;
  116. if(isset($variables['node']->max)){
  117. $max = $variables['node']->max;
  118. }
  119. $blast_results = tripal_get_feature_blast_results($feature->feature_id, $db_id, $max);
  120. $variables['tripal_analysis_blast']['blast_results_list'] = $blast_results;
  121. }
  122. /*******************************************************************************
  123. * Prepare blast result for the feature shown on the page
  124. */
  125. function theme_tripal_analysis_blast_results_index_version ($node) {
  126. $feature = $node->feature;
  127. $content = tripal_get_blast_results_index_version($feature->feature_id);
  128. return $content;
  129. }
  130. /*******************************************************************************
  131. * tripal_get_feature_blast_results()
  132. * Get blast result from featureprop table for the feature
  133. */
  134. function tripal_get_feature_blast_results($feature_id, $db_id, $max){
  135. // Get the blast results stored as XML from the analysisfeatureprop table
  136. // the type for the property is named 'analysis_blast_output_iteration_hits'
  137. // and is found in the 'tripal' controlled vocabulary. This CV term was
  138. // added by this module.
  139. $select = array(
  140. 'analysisfeature_id' => array(
  141. 'feature_id' => $feature_id,
  142. ),
  143. 'type_id' => array(
  144. 'name' => 'analysis_blast_output_iteration_hits',
  145. 'cv_id' => array(
  146. 'name' => 'tripal'
  147. ),
  148. ),
  149. );
  150. $blast_results = tripal_core_chado_select('analysisfeatureprop',array('*'),$select);
  151. // get the HTML content for viewing each of the XML file
  152. $blast_obj_array = array ();
  153. $blast_obj_counter = 0;
  154. foreach ($blast_results as $index => $analysisfeatureprop) {
  155. // get the blast XML for this feature
  156. $blast_xml = $analysisfeatureprop->value;
  157. // get the analysis record
  158. $analysisfeature_arr = tripal_core_chado_select('analysisfeature',array('analysis_id'),
  159. array('analysisfeature_id' => $analysisfeatureprop->analysisfeature_id));
  160. $analysis_arr = tripal_core_chado_select('analysis',array('*'),
  161. array('analysis_id' => $analysisfeature_arr[0]->analysis_id));
  162. $analysis = $analysis_arr[0];
  163. $analysis_id = $analysis->analysis_id;
  164. // the old style was to store all parameters in a single CV term in the analysisprop
  165. // table. However now each property has it's own CV term in that table. But,
  166. // we still need to support the old method for backwards compatibility.
  167. // so, first get the old style variable and see if it has values. In
  168. // particular we need the database setting
  169. $blast_settings = tripal_analysis_get_property($analysis_id,'analysis_blast_settings');
  170. if($blast_settings){
  171. $blastsettings = explode("|", $blast_settings[0]->value);
  172. // if we don't have the proper number of fields in the value column then
  173. // skip this entry
  174. if(count($blastsettings) != 3){
  175. continue;
  176. }
  177. $adb_id = $blastsettings[0];
  178. }
  179. // if we're not using the old style then try the new method to get the
  180. // database id
  181. else {
  182. $blastdb = tripal_analysis_get_property($analysis_id,'analysis_blast_blastdb');
  183. $adb_id = $blastdb->value;
  184. }
  185. // if the callee specified a database to show then we want to check that
  186. // with the database id of the analysis we're looking at. If they
  187. // don't match then skip this blast. If a database id was not specified
  188. // then continue
  189. if($db_id and $adb_id != $db_id){
  190. continue;
  191. }
  192. // get the database
  193. if($adb_id){
  194. $db_arr = tripal_core_chado_select('db',array('*'),array('db_id' => $adb_id));
  195. $db = $db_arr[0];
  196. }
  197. // parse the XML and add it to the array of blast results to be returned
  198. $blast_obj = tripal_analysis_blast_get_result_object($blast_xml,$db,$max,$feature_id, $analysis);
  199. $blast_obj->analysis = $analysis;
  200. $blast_obj_array [$blast_obj_counter] = $blast_obj;
  201. $blast_obj_counter ++;
  202. }
  203. return $blast_obj_array;
  204. }
  205. /*******************************************************************************
  206. * Scanning the file folder for blast results and prepare content for indexing
  207. */
  208. function tripal_get_blast_results_index_version ($feature_id){
  209. // Get cvterm_id for 'analysis_blast_output_iteration_hits' which is required
  210. // for inserting into the analysisfeatureprop table
  211. $previous_db = tripal_db_set_active('chado');
  212. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  213. "INNER JOIN cv ON cv.cv_id = CVT.cv_id ".
  214. "WHERE CVT.name = 'analysis_blast_output_iteration_hits' ".
  215. "AND CV.name = 'tripal'";
  216. $type_id = db_result(db_query($sql));
  217. // Get xml string from analysisfeatureprop value column, get db_id from analysisprop value column
  218. // , and get analysis_id from analysisfeature table
  219. $sql = "SELECT AP.value AS apvalue, AFP.value AS afpvalue, AF.analysis_id AS aid
  220. FROM {analysisfeatureprop} AFP
  221. INNER JOIN analysisfeature AF ON AF.analysisfeature_id = AFP.analysisfeature_id
  222. INNER JOIN analysisprop AP ON AP.analysis_id = AF.analysis_id
  223. WHERE feature_id = %d
  224. AND AFP.type_id = %d ";
  225. $result = db_query($sql, $feature_id, $type_id);
  226. tripal_db_set_active($previous_db);
  227. // get the HTML content for viewing each of the XML file
  228. while ($analysisfeatureprop = db_fetch_object($result)) {
  229. // get analysis name and date
  230. $previous_db = tripal_db_set_active('chado');
  231. $sql = "SELECT analysis_id AS aid, name, to_char(timeexecuted, 'MM-DD-YYYY') AS time
  232. FROM {analysis} WHERE analysis_id = %d";
  233. $analysis = db_fetch_object(db_query($sql, $analysisfeatureprop->aid));
  234. tripal_db_set_active($previous_db);
  235. $blastsettings = explode("|", $analysisfeatureprop->apvalue);
  236. $att_db_id = $blastsettings [0];
  237. // Get db object using the db_id
  238. $previous_db = tripal_db_set_active('chado');
  239. $sql = "SELECT * FROM {db} WHERE db_id=%d";
  240. $db = db_fetch_object(db_query($sql, $att_db_id));
  241. tripal_db_set_active($previous_db);
  242. // Only index best 10 hits because the default page only shows 10 blast results
  243. $max = 10;
  244. $content .= parse_NCBI_Blast_XML_index_version($analysisfeatureprop->afpvalue,$db,$max,$feature_id,$ajax, $analysis);
  245. }
  246. return $content;
  247. }
  248. /*******************************************************************************
  249. * Tripal Blast administrative setting form. This function is called by
  250. * tripal_analysis module which asks for an admin form to show on the page
  251. */
  252. function tripal_analysis_blast_get_settings() {
  253. // Get an array of node types with internal names as keys
  254. $options = node_get_types('names');
  255. // Add 'chado_feature' to allowed content types for showing blast results
  256. $allowedoptions ['chado_feature'] = "Show blast results on feature pages";
  257. $form['description'] = array(
  258. '#type' => 'item',
  259. '#value' => t("Most chado features were analyzed by blast against major sequence databases. This option allows user to display the blast analysis results. Please read user manual for storage and display of blast files. Check the box to enable the analysis results. Uncheck to disable it."),
  260. '#weight' => 0,
  261. );
  262. $form['tripal_analysis_blast_setting'] = array(
  263. '#type' => 'checkboxes',
  264. '#options' => $allowedoptions,
  265. '#default_value' => variable_get('tripal_analysis_blast_setting',
  266. array('chado_feature')),
  267. );
  268. $form['blast_parser'] = array(
  269. '#title' => t('Blast Parser Settings'),
  270. '#type' => 'fieldset',
  271. '#description' => t('Configure parsers for showing blast results. Each database is '.
  272. 'allowed to have one xml parser.'),
  273. '#weight' => 10
  274. );
  275. $previous_db = tripal_db_set_active('chado'); // use chado database
  276. // get a list of db from chado for user to choose
  277. $sql = 'SELECT db_id, name FROM {db} ORDER BY lower(name)';
  278. $results = db_query ($sql);
  279. $blastdbs = array();
  280. while ($db = db_fetch_object($results)){
  281. $blastdbs[$db->db_id] = $db->name;
  282. }
  283. $form['db_options'] = array(
  284. '#type' => 'value',
  285. '#value' => $blastdbs
  286. );
  287. $form['blast_parser']['blastdb'] = array(
  288. '#title' => t('Database'),
  289. '#type' => 'select',
  290. '#description' => t('The database used for the blast analysis.'),
  291. '#options' => $form['db_options']['#value'],
  292. '#attributes' => array(
  293. 'onChange' => "return tripal_update_regex(this)",
  294. )
  295. );
  296. $form['blast_parser']['displayname'] = array(
  297. '#title' => t('Title for the blast analysis'),
  298. '#type' => 'textfield',
  299. );
  300. $form['blast_parser']['gb_style_parser'] = array(
  301. '#title' => t('Use Genebank style parser. This will clear all regular expression settings for the selected database.'),
  302. '#type' => 'checkbox',
  303. '#attributes' => array(
  304. 'onClick' => "return tripal_set_genbank_style(this)",
  305. )
  306. );
  307. $form['blast_parser']['hit_id'] = array(
  308. '#title' => t('Regular expression for Hit Name'),
  309. '#type' => 'textfield',
  310. );
  311. $form['blast_parser']['hit_def'] = array(
  312. '#title' => t('Regular expression for Hit Description'),
  313. '#type' => 'textfield',
  314. );
  315. $form['blast_parser']['hit_accession'] = array(
  316. '#title' => t('Regular expression for Hit Accession'),
  317. '#type' => 'textfield',
  318. );
  319. $form['blast_parser']['button'] = array(
  320. '#type' => 'submit',
  321. '#value' => t('Save settings')
  322. );
  323. tripal_db_set_active($previous_db); // use drupal database
  324. $settings->form = $form;
  325. $settings->title = "Tripal Blast";
  326. return $settings;
  327. }
  328. /*******************************************************************************
  329. * This function is only called by ajax to get regular expressions for blast
  330. * admin page
  331. */
  332. function tripal_get_blast_regex ($db_id) {
  333. $sql = "SELECT * FROM {tripal_analysis_blast} WHERE db_id = %d";
  334. $blast_regexs = db_fetch_object(db_query($sql, $db_id));
  335. drupal_json(array(
  336. 'name' => $blast_regexs->displayname,
  337. 'genbank_style' => $blast_regexs->genbank_style,
  338. 'reg1' => $blast_regexs->regex_hit_id,
  339. 'reg2' => $blast_regexs->regex_hit_def,
  340. 'reg3' => $blast_regexs->regex_hit_accession)
  341. );
  342. }
  343. /*******************************************************************************
  344. * Provide information to drupal about the node types that we're creating
  345. * in this module
  346. */
  347. function tripal_analysis_blast_node_info() {
  348. $nodes = array();
  349. $nodes['chado_analysis_blast'] = array(
  350. 'name' => t('Analysis: Blast'),
  351. 'module' => 'chado_analysis_blast',
  352. 'description' => t('A blast analysis from the chado database'),
  353. 'has_title' => FALSE,
  354. 'title_label' => t('Analysis: Blast'),
  355. 'has_body' => FALSE,
  356. 'body_label' => t('Blast Analysis Description'),
  357. 'locked' => TRUE
  358. );
  359. return $nodes;
  360. }
  361. /*******************************************************************************
  362. * Provide a Blast Analysis form
  363. */
  364. function chado_analysis_blast_form ($node){
  365. //dprint_r($node);
  366. // add in the default fields
  367. $form = chado_analysis_form($node);
  368. // set the default values
  369. $blast = $node->analysis->tripal_analysis_blast;
  370. $blastdb = $blast->blastdb;
  371. $blastfile = $blast->blastfile;
  372. $blastfile_ext = $blast->blastfile_ext;
  373. $blastparameters = $blast->blastparameters;
  374. $query_re = $blast->query_re;
  375. $query_type = $blast->query_type;
  376. $query_uniquename = $blast->query_uniquename;
  377. $form['blast'] = array(
  378. '#title' => t('Blast Settings'),
  379. '#type' => 'fieldset',
  380. '#description' => t('Specific Settings for Blast Analysis.'),
  381. '#collapsible' => TRUE,
  382. '#attributes' => array('id' => 'blast-extra-settings'),
  383. '#weight' => 11
  384. );
  385. $previous_db = tripal_db_set_active('chado'); // use chado database
  386. // get a list of db from chado for user to choose
  387. $sql = 'SELECT db_id, name FROM {db} ORDER BY lower(name)';
  388. $results = db_query ($sql);
  389. tripal_db_set_active($previous_db);
  390. $blastdbs = array();
  391. while ($db = db_fetch_object($results)){
  392. $blastdbs[$db->db_id] = $db->name;
  393. }
  394. $form['db_options'] = array(
  395. '#type' => 'value',
  396. '#value' => $blastdbs
  397. );
  398. $form['blast']['blastdb'] = array(
  399. '#title' => t('Database'),
  400. '#type' => 'select',
  401. '#description' => t('The database used for the blast analysis. If the database does not appear in this list, please add it.'),
  402. '#options' => $form['db_options']['#value'],
  403. '#default_value' => $blastdb,
  404. );
  405. $form['blast']['blastfile'] = array(
  406. '#title' => t('Blast XML File/Directory: (if you input a directory without the tailing slash, all xml files in the directory will be loaded)'),
  407. '#type' => 'textfield',
  408. '#description' => t('The xml output file generated by blast in full path.'),
  409. '#default_value' => $blastfile,
  410. );
  411. $form['blast']['blastfile_ext'] = array(
  412. '#title' => t('Blast XML file extension'),
  413. '#type' => 'textfield',
  414. '#description' => t('If a directory is provide for the blast file setting above, then a file extension can be provided here. Files with this extension in the directory will be parsed. If no extension is provided then files with a .xml extension will be parsed within the directory. Please provide the extension without the preceeding period (e.g. "out" rather than ".out"'),
  415. '#default_value' => $blastfile_ext,
  416. );
  417. $form['blast']['no_parsed'] = array(
  418. '#title' => t('Number of hits to be parsed'),
  419. '#type' => 'textfield',
  420. '#description' => t("The number of hits to be parsed. Tripal will parse only top 10 hits if you input '10'' in this field."),
  421. '#default_value' => 'all',
  422. );
  423. $form['blast']['query_re'] = array(
  424. '#title' => t('Query Name RE'),
  425. '#type' => 'textfield',
  426. '#description' => t('Enter the regular expression that will extract the '.
  427. 'feature name from the query line in the blast results. This should be '.
  428. 'the same as the definition line in the query FASTA file. This option is '.
  429. 'is only required when the query does not identically match a feature '.
  430. 'in the database.'),
  431. '#default_value' => $query_re,
  432. );
  433. $form['blast']['query_type'] = array(
  434. '#title' => t('Query Type'),
  435. '#type' => 'textfield',
  436. '#description' => t('Please enter the Sequence Ontology term that describes '.
  437. 'the query sequences used for blasting. This is only necessary if two '.
  438. 'or more sequences have the same name.'),
  439. '#default_value' => $query_type,
  440. );
  441. $form['blast']['query_uniquename'] = array(
  442. '#title' => t('Use Unique Name'),
  443. '#type' => 'checkbox',
  444. '#description' => t('Select this checboxk if the query name in the blast file '.
  445. 'matches the uniquename of the feature. By default, the blast results will '.
  446. 'mapped to the "name" of the feature.'),
  447. '#default_value' => $query_uniquename,
  448. );
  449. $form['blast']['blastparameters'] = array(
  450. '#title' => t('Parameters'),
  451. '#type' => 'textfield',
  452. '#description' => t('The parameters for running the blast analysis.'),
  453. '#default_value' => $blastparameters,
  454. );
  455. $form['blast']['blastjob'] = array(
  456. '#type' => 'checkbox',
  457. '#title' => t('Submit a job to parse the xml output into analysisfeatureprop table'),
  458. '#description' => t('Note: features associated with the blast results must '.
  459. 'exist in chado before parsing the file. Otherwise, blast '.
  460. 'results that cannot be linked to a feature will be '.
  461. 'discarded. '),
  462. '#default_value' => $blastjob
  463. );
  464. $form['blast']['blastbesthit'] = array(
  465. '#type' => 'checkbox',
  466. '#title' => t('Submit a job to generate a "best hits" report.'),
  467. '#description' => t('Note: the checkbox above must also be selected.'),
  468. '#default_value' => $blastbesthit
  469. );
  470. return $form;
  471. }
  472. /**
  473. *
  474. */
  475. function chado_analysis_blast_validate($node, &$form){
  476. // use the analysis parent to validate the node
  477. tripal_analysis_validate($node, $form);
  478. }
  479. /*******************************************************************************
  480. * When a node is requested by the user this function is called to allow us
  481. * to add auxiliary data to the node object.
  482. */
  483. function chado_analysis_blast_load($node){
  484. // load the default set of analysis fields
  485. $additions = chado_analysis_load($node);
  486. // create some variables for easier lookup
  487. $analysis = $additions->analysis;
  488. $analysis_id = $analysis->analysis_id;
  489. $blast_settings = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_settings');
  490. $blastdb = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_blastdb');
  491. $blastfile = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_blastfile');
  492. $blastparameters = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_blastparameters');
  493. $no_parsed = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_no_parsed');
  494. $query_re = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_query_re');
  495. $query_type = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_query_type');
  496. $query_uniquename= tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_query_uniquename');
  497. $blastfile_ext = tripal_analysis_get_property($analysis->analysis_id,'analysis_blast_blastfile_ext');
  498. $analysis->tripal_analysis_blast->blastdb = $blastdb->value;
  499. $analysis->tripal_analysis_blast->blastfile = $blastfile->value;
  500. $analysis->tripal_analysis_blast->blastparameters = $blastparameters->value;
  501. $analysis->tripal_analysis_blast->no_parsed = $no_parsed->value;
  502. $analysis->tripal_analysis_blast->query_re = $query_re->value;
  503. $analysis->tripal_analysis_blast->query_type = $query_type->value;
  504. $analysis->tripal_analysis_blast->query_uniquename= $query_uniquename->value;
  505. $analysis->tripal_analysis_blast->blastfile_ext = $blastfile_ext->value;
  506. // get the database information so that we don't have to require callers
  507. // to do the lookup
  508. $select = array('db_id' => $blastdb->value);
  509. $analysis->tripal_analysis_blast->db = tripal_core_generate_chado_var('db',$select);
  510. // if there is an old style 'blast_settings' array, then break these out for
  511. // use in the new format
  512. if(count($blast_settings)>0){
  513. $prop_values = explode ("|", $blast_settings->value);
  514. $analysis->tripal_analysis_blast->blastdb = $prop_values[0];
  515. $analysis->tripal_analysis_blast->blastfile = $prop_values[1];
  516. $analysis->tripal_analysis_blast->blastparameters = $prop_values[2];
  517. }
  518. return $additions;
  519. }
  520. /**
  521. *
  522. */
  523. function chado_analysis_blast_insert($node){
  524. // insert the analysistripal_core_generate_chado_var
  525. chado_analysis_insert($node);
  526. // set the type for this analysis
  527. tripal_analysis_insert_property($node->analysis_id,'analysis_type','tripal_analysis_blast');
  528. // now add in the remaining settings as a single property but separated by bars
  529. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_blastdb',$node->blastdb);
  530. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_blastfile',$node->blastfile);
  531. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_blastparameters',$node->blastparameters);
  532. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_no_parsed',$node->no_parsed);
  533. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_query_re',$node->query_re);
  534. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_query_type',$node->query_type);
  535. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_query_uniquename',$node->query_uniquename);
  536. tripal_analysis_insert_property($node->analysis_id,'analysis_blast_blastfile_ext',$node->blastfile_ext);
  537. // submit the parsing jobs
  538. chado_analysis_blast_submit_jobs($node);
  539. }
  540. /**
  541. *
  542. */
  543. function chado_analysis_blast_update($node){
  544. // update the anlaysis
  545. chado_analysis_update($node);
  546. // add the blast settings
  547. tripal_analysis_update_property($node->analysis_id,'analysis_type','tripal_analysis_blast',1);
  548. tripal_analysis_update_property($node->analysis_id,'analysis_blast_blastdb',$node->blastdb,1);
  549. tripal_analysis_update_property($node->analysis_id,'analysis_blast_blastfile',$node->blastfile,1);
  550. tripal_analysis_update_property($node->analysis_id,'analysis_blast_blastparameters',$node->blastparameters,1);
  551. tripal_analysis_update_property($node->analysis_id,'analysis_blast_no_parsed',$node->no_parsed,1);
  552. tripal_analysis_update_property($node->analysis_id,'analysis_blast_query_re',$node->query_re,1);
  553. tripal_analysis_update_property($node->analysis_id,'analysis_blast_query_type',$node->query_type,1);
  554. tripal_analysis_update_property($node->analysis_id,'analysis_blast_query_uniquename',$node->query_uniquename,1);
  555. tripal_analysis_update_property($node->analysis_id,'analysis_blast_blastfile_ext',$node->blastfile_ext,1);
  556. // if this analysis uses the old style blast settings cvterm then remove that term
  557. $old = tripal_analysis_get_property($node->analysis_id,'analysis_blast_settings');
  558. if(count($old) > 0){
  559. tripal_analysis_delete_property($node->analysis_id,'analysis_blast_settings');
  560. }
  561. // submit the parsing jobs
  562. chado_analysis_blast_submit_jobs($node);
  563. }
  564. /**
  565. *
  566. */
  567. function chado_analysis_blast_submit_jobs($node){
  568. global $user;
  569. // add a job if the user wants to parse the XML
  570. if($node->blastjob) {
  571. $job_args = array(
  572. $node->analysis_id,
  573. $node->blastdb,
  574. $node->blastfile,
  575. $node->no_parsed,
  576. $node->blastfile_ext,
  577. $node->query_re,
  578. $node->query_type,
  579. $node->query_uniquename
  580. );
  581. if (is_readable($node->blastfile)) {
  582. tripal_add_job("Parse blast: $node->blastfile",'tripal_analysis_blast',
  583. 'tripal_analysis_blast_parseXMLFile', $job_args, $user->uid);
  584. } else {
  585. drupal_set_message("Can not open blast output file. Job not scheduled.");
  586. }
  587. }
  588. // add a job if the user wants to create a best hits report.
  589. if($node->blastbesthit) {
  590. $j_args[0] = $node->analysis_id;
  591. tripal_add_job("Parse best hit: $node->blastfile",'tripal_analysis_blast',
  592. 'tripal_analysis_blast_parse_best_hit', $j_args, $user->uid);
  593. }
  594. }
  595. /*******************************************************************************
  596. * Delete blast anlysis
  597. */
  598. function chado_analysis_blast_delete($node){
  599. chado_analysis_delete($node);
  600. }
  601. /*******************************************************************************
  602. * This function customizes the view of the chado_analysis node. It allows
  603. * us to generate the markup.
  604. */
  605. function chado_analysis_blast_view ($node, $teaser = FALSE, $page = FALSE) {
  606. // use drupal's default node view:
  607. //dprint_r($node);
  608. if (!$teaser) {
  609. $node = node_prepare($node, $teaser);
  610. // When previewing a node submitting form, it shows 'Array' instead of
  611. // correct date format. We need to format the date here
  612. $time = $node->timeexecuted;
  613. if(is_array($time)){
  614. $month = $time['month'];
  615. $day = $time['day'];
  616. $year = $time['year'];
  617. $timestamp = $year.'-'.$month.'-'.$day;
  618. $node->timeexecuted = $timestamp;
  619. }
  620. // When viewing a node, we need to reformat the analysisprop since we
  621. // separate each value with a bar |
  622. if (preg_match("/.*\|.*\|.*/",$node->blastdb)) {
  623. $prop_values = explode("|", $node->blastdb);
  624. $node->blastdb = $prop_values[0];
  625. $node->blastfile = $prop_values[1];
  626. $node->blastparameters = $prop_values[2];
  627. }
  628. }
  629. return $node;
  630. }
  631. /*******************************************************************************
  632. * Set the permission types that the chado module uses. Essentially we
  633. * want permissionis that protect creation, editing and deleting of chado
  634. * data objects
  635. */
  636. function tripal_analysis_blast_perm(){
  637. return array(
  638. 'access chado_analysis_blast content',
  639. 'create chado_analysis_blast content',
  640. 'delete chado_analysis_blast content',
  641. 'edit chado_analysis_blast content',
  642. );
  643. }
  644. /*******************************************************************************
  645. * The following function proves access control for users trying to
  646. * perform actions on data managed by this module
  647. */
  648. function chado_analysis_blast_access($op, $node, $account){
  649. if ($op == 'create') {
  650. return user_access('create chado_analysis_blast content', $account);
  651. }
  652. if ($op == 'update') {
  653. if (user_access('edit chado_analysis_blast content', $account)) {
  654. return TRUE;
  655. }
  656. }
  657. if ($op == 'delete') {
  658. if (user_access('delete chado_analysis_blast content', $account)) {
  659. return TRUE;
  660. }
  661. }
  662. if ($op == 'view') {
  663. if (user_access('access chado_analysis_blast content', $account)) {
  664. return TRUE;
  665. }
  666. }
  667. return FALSE;
  668. }