tripal_analysis_blast.module 34 KB

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