tripal_analysis_blast.module 34 KB

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