tripal_analysis_blast.module 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387
  1. <?php
  2. // $Id:
  3. // Copyright 2009 Clemson University
  4. /*******************************************************************************
  5. * Tripal Blast Result lets users show/hide blast results associated
  6. * with a tripal feature
  7. ******************************************************************************/
  8. function tripal_analysis_blast_init(){
  9. // Add javascript and style sheet
  10. drupal_add_css(drupal_get_path('theme', 'tripal').
  11. '/css/tripal_analysis_blast.css');
  12. drupal_add_js(drupal_get_path('theme', 'tripal').
  13. '/js/tripal_analysis_blast.js');
  14. }
  15. /*******************************************************************************
  16. * tripal_analysis_blast_menu()
  17. * HOOK: Implementation of hook_menu()
  18. * Entry points and paths of the module
  19. */
  20. function tripal_analysis_blast_menu() {
  21. //Show top 10/25/all blast results for ajax calls
  22. $items['tripal_top_blast'] = array(
  23. 'path' => 'top_blast',
  24. 'title' => t('Blast Hits'),
  25. 'page callback' => 'tripal_get_blast_results',
  26. 'page arguments' => array(1,2,3,'1'),
  27. 'access arguments' => array('access content'),
  28. 'type' => MENU_CALLBACK
  29. );
  30. // Show regular expressions for selected database in Blast admin page
  31. $items['admin/tripal/tripal_blast_regex'] = array(
  32. 'title' => t('Blast Regex'),
  33. 'page callback' => 'tripal_get_blast_regex',
  34. 'page arguments' => array(3),
  35. 'access arguments' => array('administer site configuration'),
  36. 'type' => MENU_CALLBACK
  37. );
  38. return $items;
  39. }
  40. /*******************************************************************************
  41. * tripal_analysis_blast_nodeapi()
  42. * HOOK: Implementation of hook_nodeapi()
  43. * Display blast results for allowed node types
  44. */
  45. function tripal_analysis_blast_nodeapi(&$node, $op, $teaser, $page) {
  46. switch ($op) {
  47. case 'view':
  48. // Find out which node types for showing the blast
  49. $types_to_show = variable_get('tripal_analysis_blast_setting',
  50. array('chado_feature'));
  51. // Abort if this node is not one of the types we should show.
  52. if (!in_array($node->type, $types_to_show, TRUE)) {
  53. break;
  54. }
  55. // Add blast to the content item if it's not a teaser
  56. if (!$teaser && $node->feature->feature_id) {
  57. if($node->build_mode == NODE_BUILD_SEARCH_INDEX){
  58. $node->content['tripal_analysis_blast_index_version'] = array(
  59. '#value' => theme('parse_NCBI_Blast_XML_index_version',$node),
  60. '#weight' => 8,
  61. );
  62. } else {
  63. // Show blast result if not at teaser view
  64. $node->content['tripal_analysis_blast_form'] = array(
  65. '#value' => theme('tripal_analysis_blast_results', $node),
  66. '#weight' => 8
  67. );
  68. }
  69. }
  70. }
  71. }
  72. /************************************************************************
  73. * We need to let drupal know about our theme functions and their arguments.
  74. * We create theme functions to allow users of the module to customize the
  75. * look and feel of the output generated in this module
  76. */
  77. function tripal_analysis_blast_theme () {
  78. return array(
  79. 'parse_NCBI_Blast_XML_index_version' => array (
  80. 'arguments' => array('node'),
  81. ),
  82. 'tripal_analysis_blast_results' => array (
  83. 'arguments' => array('node'),
  84. )
  85. );
  86. }
  87. /*******************************************************************************
  88. * Prepare blast result for the feature shown on the page
  89. */
  90. function theme_tripal_analysis_blast_results ($node) {
  91. $feature = $node->feature;
  92. $content = tripal_get_blast_results($feature->feature_id, 0, 10, 0);
  93. return $content;
  94. }
  95. /*******************************************************************************
  96. * Prepare blast result for the feature shown on the page
  97. */
  98. function theme_parse_NCBI_Blast_XML_index_version ($node) {
  99. $feature = $node->feature;
  100. $content = tripal_get_blast_results_index_version($feature->feature_id);
  101. return $content;
  102. }
  103. /*******************************************************************************
  104. * tripal_get_blast_results()
  105. * Get blast result from featureprop table for the feature
  106. */
  107. function tripal_get_blast_results($feature_id, $db_id, $max,$ajax){
  108. // Get cvterm_id for 'analysis_blast_output_iteration_hits' which is required
  109. // for inserting into the analysisfeatureprop table
  110. $previous_db = db_set_active('chado');
  111. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  112. "INNER JOIN cv ON cv.cv_id = CVT.cv_id ".
  113. "WHERE CVT.name = 'analysis_blast_output_iteration_hits' ".
  114. "AND CV.name = 'tripal'";
  115. $type_id = db_result(db_query($sql));
  116. // Get xml string from analysisfeatureprop value column, get db_id from analysisprop value column
  117. // , and get analysis_id from analysisfeature table
  118. $sql = "SELECT AP.value AS apvalue, AFP.value AS afpvalue, AF.analysis_id AS aid
  119. FROM {analysisfeatureprop} AFP
  120. INNER JOIN analysisfeature AF ON AF.analysisfeature_id = AFP.analysisfeature_id
  121. INNER JOIN analysisprop AP ON AP.analysis_id = AF.analysis_id
  122. WHERE feature_id = %d
  123. AND AFP.type_id = %d ";
  124. $result = db_query($sql, $feature_id, $type_id);
  125. db_set_active($previous_db);
  126. // get the HTML content for viewing each of the XML file
  127. while ($analysisfeatureprop = db_fetch_object($result)) {
  128. // get db_id
  129. $blastsettings = explode("|", $analysisfeatureprop->apvalue);
  130. $att_db_id = $blastsettings [0];
  131. // get analysis name and date
  132. $previous_db = db_set_active('chado');
  133. $sql = "SELECT analysis_id AS aid, name, to_char(timeexecuted, 'MM-DD-YYYY') AS time
  134. FROM {analysis} WHERE analysis_id = %d";
  135. $analysis = db_fetch_object(db_query($sql, $analysisfeatureprop->aid));
  136. db_set_active($previous_db);
  137. // If not called by ajax, go through all blast hits
  138. if ($ajax == 0) {
  139. // Get db object using the db_id
  140. $previous_db = db_set_active('chado');
  141. $sql = "SELECT * FROM {db} WHERE db_id=%d";
  142. $db = db_fetch_object(db_query($sql, $att_db_id));
  143. db_set_active($previous_db);
  144. $content .= parse_NCBI_Blast_XML($analysisfeatureprop->afpvalue,$db,$max,$feature_id,$ajax, $analysis);
  145. // Otherwise, only update expandable box the user has clicked on
  146. } else {
  147. if ($att_db_id == $db_id) {
  148. // Get db object using the db_id
  149. $previous_db = db_set_active('chado');
  150. $sql = "SELECT * FROM {db} WHERE db_id=%d";
  151. $db = db_fetch_object(db_query($sql, $att_db_id));
  152. db_set_active($previous_db);
  153. $content .= parse_NCBI_Blast_XML($analysisfeatureprop->afpvalue,$db,$max,$feature_id,$ajax, $analysis);
  154. }
  155. }
  156. }
  157. // since this function provides output for addition into
  158. // a feature page, as well as an AJAX refresh of content
  159. // within the blast hits we need to setup the return
  160. // different depending on the request type
  161. if($ajax){
  162. drupal_json(array('update' => $content));
  163. } else {
  164. return $content;
  165. }
  166. }
  167. /*******************************************************************************
  168. * Scanning the file folder for blast results and prepare content for indexing
  169. */
  170. function tripal_get_blast_results_index_version ($feature_id){
  171. // Get cvterm_id for 'analysis_blast_output_iteration_hits' which is required
  172. // for inserting into the analysisfeatureprop table
  173. $previous_db = db_set_active('chado');
  174. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  175. "INNER JOIN cv ON cv.cv_id = CVT.cv_id ".
  176. "WHERE CVT.name = 'analysis_blast_output_iteration_hits' ".
  177. "AND CV.name = 'tripal'";
  178. $type_id = db_result(db_query($sql));
  179. // Get xml string from analysisfeatureprop value column, get db_id from analysisprop value column
  180. // , and get analysis_id from analysisfeature table
  181. $sql = "SELECT AP.value AS apvalue, AFP.value AS afpvalue, AF.analysis_id AS aid
  182. FROM {analysisfeatureprop} AFP
  183. INNER JOIN analysisfeature AF ON AF.analysisfeature_id = AFP.analysisfeature_id
  184. INNER JOIN analysisprop AP ON AP.analysis_id = AF.analysis_id
  185. WHERE feature_id = %d
  186. AND AFP.type_id = %d ";
  187. $result = db_query($sql, $feature_id, $type_id);
  188. db_set_active($previous_db);
  189. // get the HTML content for viewing each of the XML file
  190. while ($analysisfeatureprop = db_fetch_object($result)) {
  191. // get analysis name and date
  192. $previous_db = db_set_active('chado');
  193. $sql = "SELECT analysis_id AS aid, name, to_char(timeexecuted, 'MM-DD-YYYY') AS time
  194. FROM {analysis} WHERE analysis_id = %d";
  195. $analysis = db_fetch_object(db_query($sql, $analysisfeatureprop->aid));
  196. db_set_active($previous_db);
  197. $blastsettings = explode("|", $analysisfeatureprop->apvalue);
  198. $att_db_id = $blastsettings [0];
  199. // Get db object using the db_id
  200. $previous_db = db_set_active('chado');
  201. $sql = "SELECT * FROM {db} WHERE db_id=%d";
  202. $db = db_fetch_object(db_query($sql, $att_db_id));
  203. db_set_active($previous_db);
  204. // Only index best 10 hits because the default page only shows 10 blast results
  205. $max = 10;
  206. $content .= parse_NCBI_Blast_XML($analysisfeatureprop->afpvalue,$db,$max,$feature_id,$ajax, $analysis);
  207. }
  208. return $content;
  209. }
  210. /*******************************************************************************
  211. * parse_NCBI_Blast_XML()
  212. * Parse XML BLAST result and generate HTML output
  213. */
  214. function parse_NCBI_Blast_XML($xml_string,$db,$max,$feature_id,$ajax, $analysis) {
  215. // Get the parser using db_id
  216. $sql = "SELECT * FROM {tripal_analysis_blast} WHERE db_id = %d";
  217. $parser = db_fetch_object(db_query($sql, $db->db_id));
  218. $db_name = $parser->displayname;
  219. $is_genbank = $parser->genbank_style;
  220. $regex_hit_id = $parser->regex_hit_id;
  221. $regex_hit_def = $parser->regex_hit_def;
  222. $regex_hit_accession = $parser->regex_hit_accession;
  223. // set default if regular expressions have not been specified
  224. if(!$regex_hit_id){
  225. $regex_hit_id = '/^(.*?)\s.*$/';
  226. } else {
  227. $regex_hit_id = '/'.$regex_hit_id.'/';
  228. }
  229. if(!$regex_hit_def){
  230. $regex_hit_def = '/^.*?\s(.*)$/';
  231. } else {
  232. $regex_hit_def = '/'.$regex_hit_def.'/';
  233. }
  234. if(!$regex_hit_accession){
  235. $regex_hit_accession = '/^(.*?)\s.*$/';
  236. } else {
  237. $regex_hit_accession = '/'.$regex_hit_accession.'/';
  238. }
  239. // add a URL for this database if one exists
  240. if($db->url && $db_name){
  241. $db_name = "<a href=\"$db->url\">$db_name</a>";
  242. }
  243. $url = url("sites/all/themes/theme_tripal/images/ajax-loader.gif");
  244. // generate the HTML header for the table of blast results
  245. if(!$ajax){ // don't regenerate the header divs if this is an ajax request
  246. // add on the ajaxLoading box for use when updating via ajax
  247. $html_out .= "<div id=\"tripal_ajaxLoading\" style=\"display:none\">".
  248. "<div id=\"loadingText\">Loading...</div>".
  249. "<img src=\"$url\"></div>";
  250. if (!$db_name) {
  251. $html_out .= "<div id=\"blast-hits\" class=\"tripal_blast-info-box\">".
  252. "<div class=\"tripal_expandableBox\">".
  253. "<h3>$analysis->name</h3></div>".
  254. "<div class=\"tripal_expandableBoxContent\" ".
  255. "id=\"blast_db_$db->db_id\">";
  256. } else {
  257. $html_out .= "<div id=\"blast-hits\" class=\"tripal_blast-info-box\">".
  258. "<div class=\"tripal_expandableBox\">".
  259. "<h3>$db_name</h3></div>".
  260. "<div class=\"tripal_expandableBoxContent\" ".
  261. "id=\"blast_db_$db->db_id\">";
  262. }
  263. };
  264. // Find node id for the analysis
  265. $ana_nid = db_result(db_query("SELECT nid FROM {chado_analysis} WHERE analysis_id = %d", $analysis->aid));
  266. $ana_url = url("node/".$ana_nid);
  267. // Show analysis date and name
  268. $html_out .= "<strong>Analysis Date: </strong>$analysis->time (<a href=$ana_url>$analysis->name</a>)<br>";
  269. // Load the file. This XML file should be an extract
  270. // of the original XML file with only a single iteration.
  271. // An iteration is essentially all the hits for a single
  272. // query sequence.
  273. $xml_output = simplexml_load_string($xml_string);
  274. $iteration = '';
  275. // new XML file parser has added the feature name within <Iteration_query-def> tags.
  276. if ($xml_output->getName() == 'Iteration') {
  277. foreach ($xml_output->children() as $xml_tag) {
  278. if ($xml_tag->getName() == 'Iteration_query-def') {
  279. // Here we show the feature name again to check if we pull the correct data
  280. $html_out .= "Query: $xml_tag<br>";
  281. } else if ($xml_tag->getName() == 'Iteration_hits') {
  282. $iteration = $xml_tag;
  283. }
  284. }
  285. // This is for the file parsed by the old parser
  286. } else {
  287. $iteration = $xml_output;
  288. }
  289. $number_hits = 0;
  290. foreach($iteration->children() as $hits){
  291. $number_hits ++;
  292. }
  293. // add the links for updating blast info using Ajax
  294. if($max != 10){
  295. $url = url("tripal_top_blast/$feature_id/$db->db_id/10");
  296. $html_out .= "<span><a onclick=\"return tripal_update_blast(".
  297. "this,$db->db_id)\" href=\"$url\">Show Best 10 Hits</a></span>";
  298. } else {
  299. $html_out .= "<span>Best 10 Hits Shown</span>";
  300. }
  301. if($number_hits <= 10){
  302. // Do nothing if number of hits <= 10
  303. } else if ($max != 25) {
  304. $url = url("tripal_top_blast/$feature_id/$db->db_id/25");
  305. $html_out .= "<span> | <a onclick=\"return tripal_update_blast(".
  306. "this,$db->db_id)\" href=\"$url\">Show Best 25 Hits</a></span>";
  307. }else {
  308. $html_out .= "<span> | Best 25 Hits Shown</span>";
  309. }
  310. if($number_hits <= 25){
  311. // Do nothing if number of hits <= 25
  312. } else if ($max != 0) {
  313. $url = url("tripal_top_blast/$feature_id/$db->db_id/0");
  314. $html_out .= "<span> | <a onclick=\"return tripal_update_blast(".
  315. "this,$db->db_id)\" href=\"$url\">Show All Hits</a> </span>";
  316. } else {
  317. $html_out .= "<span> | All Hits Shown</span>";
  318. }
  319. $html_out .= '<br><span><i>Note:</i> Click a description for more details.'.
  320. '</span>';
  321. $html_out .= '<span><table class="tripal_blast_results_table">'.
  322. ' <tr>'.
  323. ' <th nowrap>Match Name</th>'.
  324. ' <th nowrap>E value</th>'.
  325. ' <th nowrap>Identity</th>'.
  326. ' </tr>';
  327. // now run through the blast hits/hsps of this iteration
  328. // and generate the rows of the table
  329. foreach($iteration->children() as $hits){
  330. // if we've hit the maximum number of hits then
  331. // return
  332. if($max > 0 && $hit_count >= $max){
  333. $html_out .= '</table></span>';
  334. if(!$ajax){
  335. $html_out .= '</div></div>';
  336. }
  337. return $html_out;
  338. }
  339. $hit_count++;
  340. foreach($hits->children() as $hit){
  341. $best_evalue = 0;
  342. $best_identity = 0;
  343. $best_len = 0;
  344. $element_name = $hit->getName();
  345. if($element_name == 'Hit_id'){
  346. // if parsing "name, acc, desc" from three tags (1/3)
  347. if ($is_genbank) {
  348. $hit_name = $hit;
  349. }
  350. } else if($element_name == 'Hit_def'){
  351. if($is_genbank){
  352. $description = $hit;
  353. } else {
  354. $accession = preg_replace($regex_hit_accession,"$1",$hit);
  355. $hit_name = preg_replace($regex_hit_id,"$1",$hit);
  356. $description = preg_replace($regex_hit_def,"$1",$hit);
  357. }
  358. } else if($element_name == 'Hit_accession'){
  359. // if parsing "name, acc, desc" from three tags (3/3)
  360. if ($is_genbank){
  361. $accession = $hit;
  362. }
  363. // now run through each HSP for this hit
  364. } else if($element_name == 'Hit_hsps'){
  365. foreach($hit->children() as $hsp){
  366. foreach($hsp->children() as $hsp_info){
  367. $element_name = $hsp_info->getName();
  368. if($element_name == 'Hsp_num'){
  369. $hsp_num = $hsp_info;
  370. }
  371. if($element_name == 'Hsp_bit-score'){
  372. $hsp_bit_score = $hsp_info;
  373. }
  374. if($element_name == 'Hsp_score'){
  375. $hsp_score = $hsp_info;
  376. }
  377. if($element_name == 'Hsp_evalue'){
  378. $hsp_evalue = $hsp_info;
  379. // use the first evalue for this set of HSPs
  380. // as the best evalue. This get's shown as
  381. // info for the overall match.
  382. if(!$best_evalue){
  383. $best_evalue = $hsp_evalue;
  384. }
  385. }
  386. if($element_name == 'Hsp_query-from'){
  387. $hsp_query_from = $hsp_info;
  388. }
  389. if($element_name == 'Hsp_query-to'){
  390. $hsp_query_to = $hsp_info;
  391. }
  392. if($element_name == 'Hsp_hit-from'){
  393. $hsp_hit_from = $hsp_info;
  394. }
  395. if($element_name == 'Hsp_hit-to'){
  396. $hsp_hit_to = $hsp_info;
  397. }
  398. if($element_name == 'Hsp_query-frame'){
  399. $hsp_query_frame = $hsp_info;
  400. }
  401. if($element_name == 'Hsp_identity'){
  402. $hsp_identity = $hsp_info;
  403. // use the first evalue for this set of HSPs
  404. // as the best evalue. This get's shown as
  405. // info for the overall match.
  406. if(!$best_identity){
  407. $best_identity = $hsp_identity;
  408. }
  409. }
  410. if($element_name == 'Hsp_positive'){
  411. $hsp_positive = $hsp_info;
  412. }
  413. if($element_name == 'Hsp_align-len'){
  414. $hsp_align_len = $hsp_info;
  415. // use the first evalue for this set of HSPs
  416. // as the best evalue. This get's shown as
  417. // info for the overall match.
  418. if(!$best_len){
  419. $best_len = $hsp_align_len;
  420. }
  421. }
  422. if($element_name == 'Hsp_qseq'){
  423. $hsp_qseq = $hsp_info;
  424. }
  425. if($element_name == 'Hsp_hseq'){
  426. $hsp_hseq = $hsp_info;
  427. }
  428. if($element_name == 'Hsp_midline'){
  429. $hsp_midline = $hsp_info;
  430. }
  431. }
  432. if($hsp_num > 1){
  433. // $html_out .="<br>";
  434. }
  435. $hsp_html_out .="<b>HSP $hsp_num</b> <pre>Score: ".
  436. "$hsp_bit_score bits ($hsp_score), ".
  437. "Expect = $hsp_evalue<br>";
  438. $hsp_html_out .= sprintf("Identity = %d/%d (%.2f%%), ".
  439. "Postives = %d/%d (%.2f%%), ".
  440. "Query Frame = $hsp_query_frame".
  441. "</pre>",
  442. $hsp_identity, $hsp_align_len,
  443. $hsp_identity/$hsp_align_len*100,
  444. $hsp_positive, $hsp_align_len,
  445. $hsp_positive/$hsp_align_len*100);
  446. $hsp_html_out .= sprintf("<pre>Query: %4d $hsp_qseq %d".
  447. "<br>",
  448. $hsp_query_from,$hsp_query_to);
  449. $hsp_html_out .= sprintf(" $hsp_midline<br>");
  450. $hsp_html_out .= sprintf("Sbjct: %4d $hsp_hseq %d</pre>".
  451. "<br>",
  452. $hsp_hit_from,$hsp_hit_to);
  453. }
  454. }
  455. }
  456. $arrowr_url = url("sites/all/themes/theme_tripal/images/arrow_r.png");
  457. $html_out .= "<tr>";
  458. if($accession && $db->urlprefix){
  459. $html_out .= "<td><img src=$arrowr_url align=\"top\" class=\"blast-hit-arrow-icon\"> <a href=\"$db->urlprefix$accession\" ".
  460. "target=\"_blank\">$hit_name</a></td>";
  461. } else {
  462. // Test if this is another feature in the database
  463. $sql = "SELECT feature_id FROM {feature} WHERE uniquename = '%s'";
  464. $previous_db = db_set_active('chado');
  465. $hit_feature_id = db_result(db_query($sql, $hit_name));
  466. db_set_active($previous_db);
  467. // If it is, add link to that feature
  468. if ($hit_feature_id) {
  469. $hit_url = url("ID$hit_feature_id");
  470. $html_out .= "<td><img src=$arrowr_url align=\"top\" class=\"blast-hit-arrow-icon\"> <a href=\"$hit_url\" ".
  471. "target=\"_blank\">$hit_name</a></td>";
  472. } else {
  473. $html_out .= "<td><img src=$arrowr_url align=\"top\" class=\"blast-hit-arrow-icon\"> $hit_name</td>";
  474. }
  475. }
  476. $html_out .= "<td nowrap>$best_evalue</td>";
  477. $percent_identity = number_format($best_identity/$best_len*100,
  478. 2);
  479. $html_out .= "<td nowrap>$percent_identity%</td>";
  480. $html_out .= "</tr><tr><td colspan=3><div class=\"tripal_expandableSubBox\">".
  481. "$description</div></td></tr><tr><td colspan=4><div class=".
  482. "\"tripal_expandableSubBoxContent\">".
  483. "$hsp_html_out</div><td></tr>";
  484. $hsp_html_out = '';
  485. }
  486. $html_out .= '</table></span>';
  487. if(!$ajax){
  488. // we don't have the header div's when ajax is being used to update
  489. $html_out .= '</div></div>';
  490. }
  491. return $html_out;
  492. }
  493. /*******************************************************************************
  494. * Parse NCBI Blast results for indexing so that user can use blast results to
  495. * find corresponding features
  496. */
  497. function parse_NCBI_Blast_XML_index_version($xml_string,$db,$feature_id) {
  498. // Get the parser using db_id
  499. $sql = "SELECT * FROM {tripal_analysis_blast} WHERE db_id = %d";
  500. $parser = db_fetch_object(db_query($sql, $db->db_id));
  501. $db_name = $parser->displayname;
  502. $is_genbank = $parser->genbank_style;
  503. $regex_hit_id = $parser->regex_hit_id;
  504. $regex_hit_def = $parser->regex_hit_def;
  505. $regex_hit_accession = $parser->regex_hit_accession;
  506. // set default if regular expressions have not been specified
  507. if(!$regex_hit_id){
  508. $regex_hit_id = '/^(.*?)\s.*$/';
  509. } else {
  510. $regex_hit_id = '/'.$regex_hit_id.'/';
  511. }
  512. if(!$regex_hit_def){
  513. $regex_hit_def = '/^.*?\s(.*)$/';
  514. } else {
  515. $regex_hit_def = '/'.$regex_hit_def.'/';
  516. }
  517. if(!$regex_hit_accession){
  518. $regex_hit_accession = '/^(.*?)\s.*$/';
  519. } else {
  520. $regex_hit_accession = '/'.$regex_hit_accession.'/';
  521. }
  522. $html_out .= "<h3>$db_name</h3>";
  523. // Load the file. This XML file should be an extract
  524. // of the original XML file with only a single iteration.
  525. // An iteration is essentially all the hits for a single
  526. // query sequence.
  527. $xml_output = simplexml_load_string($xml_string);
  528. $iteration = '';
  529. // new XML file parser has added the feature name within <Iteration_query-def> tags.
  530. if ($xml_output->getName() == 'Iteration') {
  531. foreach ($xml_output->children() as $xml_tag) {
  532. if ($xml_tag->getName() == 'Iteration_query-def') {
  533. // Here we show the feature name again to check if we pull the correct data
  534. $html_out .= "Query: $xml_tag<br>";
  535. } else if ($xml_tag->getName() == 'Iteration_hits') {
  536. $iteration = $xml_tag;
  537. }
  538. }
  539. // This is for the file parsed by the old parser
  540. } else {
  541. $iteration = $xml_output;
  542. }
  543. // now run through the blast hits/hsps of this iteration
  544. // and generate the rows of the table
  545. foreach($iteration->children() as $hits){
  546. $best_evalue = 0;
  547. foreach($hits->children() as $hit){
  548. $best_evalue = 0;
  549. $element_name = $hit->getName();
  550. if($element_name == 'Hit_id'){
  551. // if parsing "name, acc, desc" from three tags (1/3)
  552. if ($is_genbank) {
  553. $hit_name = $hit;
  554. }
  555. } else if($element_name == 'Hit_def'){
  556. if($is_genbank){
  557. $description = $hit;
  558. } else {
  559. $accession = preg_replace($regex_hit_accession,"$1",$hit);
  560. $hit_name = preg_replace($regex_hit_id,"$1",$hit);
  561. $description = preg_replace($regex_hit_def,"$1",$hit);
  562. }
  563. } else if($element_name == 'Hit_accession'){
  564. // if parsing "name, acc, desc" from three tags (3/3)
  565. if ($is_genbank){
  566. $accession = $hit;
  567. }
  568. // now run through each HSP for this hit
  569. }
  570. }
  571. $html_out .= "<p>$hit_name<br>";
  572. $html_out .= "$accession<br>";
  573. $html_out .= "<b>$description</b></br>";
  574. $hsp_html_out = '';
  575. }
  576. return $html_out;
  577. }
  578. /*******************************************************************************
  579. * Tripal Blast administrative setting form. This function is called by
  580. * tripal_analysis module which asks for an admin form to show on the page
  581. */
  582. function tripal_analysis_blast_get_settings() {
  583. // Get an array of node types with internal names as keys
  584. $options = node_get_types('names');
  585. // Add 'chado_feature' to allowed content types for showing blast results
  586. $allowedoptions ['chado_feature'] = "Show blast results on feature pages";
  587. $form['description'] = array(
  588. '#type' => 'item',
  589. '#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."),
  590. '#weight' => 0,
  591. );
  592. $form['tripal_analysis_blast_setting'] = array(
  593. '#type' => 'checkboxes',
  594. '#options' => $allowedoptions,
  595. '#default_value' => variable_get('tripal_analysis_blast_setting',
  596. array('chado_feature')),
  597. );
  598. $form['blast_parser'] = array(
  599. '#title' => t('Blast Parser Settings'),
  600. '#type' => 'fieldset',
  601. '#description' => t('Configure parsers for showing blast results. Each database is '.
  602. 'allowed to have one xml parser.'),
  603. '#weight' => 10
  604. );
  605. $previous_db = db_set_active('chado'); // use chado database
  606. // get a list of db from chado for user to choose
  607. $sql = 'SELECT db_id, name FROM {db} ORDER BY lower(name)';
  608. $results = db_query ($sql);
  609. $blastdbs = array();
  610. while ($db = db_fetch_object($results)){
  611. $blastdbs[$db->db_id] = $db->name;
  612. }
  613. $form['db_options'] = array(
  614. '#type' => 'value',
  615. '#value' => $blastdbs
  616. );
  617. $form['blast_parser']['blastdb'] = array(
  618. '#title' => t('Database'),
  619. '#type' => 'select',
  620. '#description' => t('The database used for the blast analysis.'),
  621. '#options' => $form['db_options']['#value'],
  622. '#attributes' => array(
  623. 'onChange' => "return tripal_update_regex(this)",
  624. )
  625. );
  626. $form['blast_parser']['displayname'] = array(
  627. '#title' => t('Title for the blast analysis'),
  628. '#type' => 'textfield',
  629. );
  630. $form['blast_parser']['gb_style_parser'] = array(
  631. '#title' => t('Use Genebank style parser. This will clear all regular expression settings for the selected database.'),
  632. '#type' => 'checkbox',
  633. '#attributes' => array(
  634. 'onClick' => "return tripal_set_genbank_style(this)",
  635. )
  636. );
  637. $form['blast_parser']['hit_id'] = array(
  638. '#title' => t('Regular expression for Hit Name'),
  639. '#type' => 'textfield',
  640. );
  641. $form['blast_parser']['hit_def'] = array(
  642. '#title' => t('Regular expression for Hit Description'),
  643. '#type' => 'textfield',
  644. );
  645. $form['blast_parser']['hit_accession'] = array(
  646. '#title' => t('Regular expression for Hit Accession'),
  647. '#type' => 'textfield',
  648. );
  649. $form['blast_parser']['button'] = array(
  650. '#type' => 'submit',
  651. '#value' => t('Save settings')
  652. );
  653. db_set_active($previous_db); // use drupal database
  654. $settings->form = $form;
  655. $settings->title = "Tripal Blast";
  656. return $settings;
  657. }
  658. /*******************************************************************************
  659. * Parse Blast XML Output file into analysisfeatureprop table
  660. */
  661. function tripal_analysis_blast_parseXMLFile ($analysis_id, $blastdb, $blastfile, $job_id) {
  662. // Prepare log
  663. $filename = preg_replace("/.*\/(.*)/", "$1", $blastfile);
  664. $logfile = file_directory_path() . "/tripal/tripal_analysis_blast/load_$filename.log";
  665. $log = fopen($logfile, 'a'); // append parsing results to log file
  666. // Parsing started
  667. print "Parsing File:".$blastfile." ...\n";
  668. fwrite($log, date("D M j G:i:s Y").". Loading $blastfile\n");
  669. // Get cvterm_id for 'analysis_blast_output_iteration_hits' which is required
  670. // for inserting into the analysisfeatureprop table
  671. $previous_db = db_set_active('chado'); // use chado database
  672. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  673. "INNER JOIN cv ON cv.cv_id = CVT.cv_id ".
  674. "WHERE CVT.name = 'analysis_blast_output_iteration_hits' ".
  675. "AND CV.name = 'tripal'";
  676. $type_id = db_result(db_query($sql));
  677. // Load the XML file.
  678. $blastoutput = simplexml_load_file($blastfile);
  679. $no_iterations = 0;
  680. foreach($blastoutput->children() as $tmp) {
  681. if ($tmp->getName() == 'BlastOutput_iterations') {
  682. foreach($tmp->children() as $itr) {
  683. if ($itr->getName() == 'Iteration') {
  684. $no_iterations ++;
  685. }
  686. }
  687. }
  688. }
  689. print "$no_iterations iterations to be processed.\n";
  690. $interval = intval($no_iterations * 0.01);
  691. $idx_iterations = 0;
  692. foreach ($blastoutput->children() as $blastoutput_tags) {
  693. if ($blastoutput_tags->getName() == 'BlastOutput_iterations') {
  694. foreach($blastoutput_tags->children() as $iterations) {
  695. if ($iterations->getName() == 'Iteration') {
  696. // Set job status
  697. $idx_iterations ++;
  698. if ($idx_iterations % $interval == 0) {
  699. $percentage = (int) ($idx_iterations / $no_iterations * 100);
  700. db_set_active($previous_db);
  701. tripal_job_set_progress($job_id, $percentage);
  702. $previous_db = db_set_active('chado');
  703. print $percentage."% ";
  704. }
  705. // now run through the blast hits/hsps of this iteration
  706. // and generate the rows of the table
  707. $feature_id = 0;
  708. foreach($iterations->children() as $iteration_tags) {
  709. // Match chado feature uniquename with <Iteration_query-def>
  710. // and get the feature_id
  711. $featurenaem_xml = '';
  712. if($iteration_tags->getName() == 'Iteration_query-def'){
  713. // If the Iteration_query-def in the format of "feature_id|uniquename"
  714. // get feature_id from it directly
  715. if (preg_match("/(\d+)\|.+/", $iteration_tags, $matches)) {
  716. $feature_id = $matches[1];
  717. // If not matched, treat Iteration_query-def as uniquename
  718. } else {
  719. // Find out how many features match this uniquename
  720. $sql = "SELECT count(feature_id) FROM {feature} ".
  721. "WHERE uniquename = '%s' ";
  722. $no_features = db_result(db_query($sql, $iteration_tags));
  723. // If there is only one match, get the feature_id
  724. if ($no_features == 1) {
  725. $sql = "SELECT feature_id FROM {feature} ".
  726. "WHERE uniquename = '%s' ";
  727. $feature_id = db_result(db_query($sql, $iteration_tags));
  728. // If the uniquename matches more than one features then skip and print 'Ambiguous'
  729. } else if ($no_features > 1) {
  730. fwrite($log, "Ambiguous: ".$iteration_tags." matches more than one feature and is not processed.\n");
  731. continue;
  732. // If the uniquename did not match, skip and print 'Failed'
  733. } else {
  734. fwrite($log, "Failed: ".$iteration_tags."\n");
  735. }
  736. }
  737. // Successfully matched. print 'Succeeded'
  738. if ($feature_id) {
  739. fwrite($log, "Succeeded: ".$iteration_tags." => feature id:".$feature_id);
  740. $featurename_xml = $iteration_tags->asXML();
  741. }
  742. // Insert Iteration_hits into analysisfeatureprop and analysisfeature tables
  743. } else if($iteration_tags->getName() == 'Iteration_hits'){
  744. if ($feature_id) {
  745. // Make sure this iteration doesn't exist in analysisfeatureprop. If it does, update but not insert
  746. $sql = "SELECT analysisfeatureprop_id FROM {analysisfeatureprop} AFP ".
  747. "INNER JOIN analysisfeature AF ON AF.analysisfeature_id = AFP.analysisfeature_id ".
  748. "WHERE feature_id=%d ".
  749. "AND analysis_id=%d ".
  750. "AND type_id=%d ";
  751. $result = db_query($sql, $feature_id, $analysis_id, $type_id);
  752. $analysisfeatureprop = db_fetch_object($result);
  753. $xml_content = "<Iteration>\n".$featurename_xml."\n".$iteration_tags->asXML()."\n</Iteration>";
  754. // If this Iteration_hits already exists, update it
  755. if ($analysisfeatureprop) {
  756. $sql = "UPDATE {analysisfeatureprop} ".
  757. "SET value = '%s' ".
  758. "WHERE analysisfeatureprop_id = %d ";
  759. db_query($sql, $xml_content, $analysisfeatureprop->analysisfeatureprop_id);
  760. fwrite($log, " (Update)\n"); // write to log
  761. // Otherwise, insert the Iteration_hits into analysisfeature and analysisfeatureprop tables
  762. } else {
  763. //------------------------------------------------------
  764. // Insert into analysisfeature table
  765. //------------------------------------------------------
  766. $sql = "INSERT INTO {analysisfeature} (feature_id, analysis_id) ".
  767. "VALUES (%d, %d)";
  768. db_query ($sql, $feature_id, $analysis_id);
  769. // Get the newly inserted analysisfeature_id
  770. $sql = "SELECT analysisfeature_id FROM {analysisfeature} WHERE feature_id = %d AND analysis_id = %d";
  771. $analysisfeature_id = db_result(db_query($sql, $feature_id, $analysis_id));
  772. //------------------------------------------------------
  773. // Insert into analysisfeatureprop table
  774. //------------------------------------------------------
  775. $sql = "INSERT INTO {analysisfeatureprop} (analysisfeature_id, type_id, value, rank)".
  776. "VALUES (%d, %d, '%s', %d)";
  777. db_query($sql, $analysisfeature_id, $type_id, $xml_content, '0');
  778. fwrite($log, " (Insert)\n"); // write to log
  779. }
  780. }
  781. }
  782. }
  783. }
  784. }
  785. }
  786. }
  787. db_set_active ($previous_db); // Use drupal database
  788. print "Done.\nSuccessful and failed entries have been saved in the log file:\n $logfile\n";
  789. fwrite($log, "\n");
  790. fclose($log);
  791. return;
  792. }
  793. /*******************************************************************************
  794. * This function is only called by ajax to get regular expressions for blast
  795. * admin page
  796. */
  797. function tripal_get_blast_regex ($db_id) {
  798. $sql = "SELECT * FROM {tripal_analysis_blast} WHERE db_id = %d";
  799. $blast_regexs = db_fetch_object(db_query($sql, $db_id));
  800. drupal_json(
  801. array(
  802. 'name' => $blast_regexs->displayname,
  803. 'genbank_style' => $blast_regexs->genbank_style,
  804. 'reg1' => $blast_regexs->regex_hit_id,
  805. 'reg2' => $blast_regexs->regex_hit_def,
  806. 'reg3' => $blast_regexs->regex_hit_accession,
  807. )
  808. );
  809. }
  810. /*******************************************************************************
  811. * Provide information to drupal about the node types that we're creating
  812. * in this module
  813. */
  814. function tripal_analysis_blast_node_info() {
  815. $nodes = array();
  816. $nodes['chado_analysis_blast'] = array(
  817. 'name' => t('Analysis: Blast'),
  818. 'module' => 'chado_analysis_blast',
  819. 'description' => t('A blast analysis from the chado database'),
  820. 'has_title' => FALSE,
  821. 'title_label' => t('Analysis: Blast'),
  822. 'has_body' => FALSE,
  823. 'body_label' => t('Blast Analysis Description'),
  824. 'locked' => TRUE
  825. );
  826. return $nodes;
  827. }
  828. /*******************************************************************************
  829. * Provide a Blast Analysis form
  830. */
  831. function chado_analysis_blast_form ($node){
  832. $type = node_get_types('type', $node);
  833. $form = array();
  834. $form['title']= array(
  835. '#type' => 'hidden',
  836. '#default_value' => $node->title,
  837. );
  838. $form['analysisname']= array(
  839. '#type' => 'textfield',
  840. '#title' => t('Analysis Name'),
  841. '#required' => FALSE,
  842. '#default_value' => $node->analysisname,
  843. '#weight' => 1
  844. );
  845. $form['program']= array(
  846. '#type' => 'textfield',
  847. '#title' => t('Program'),
  848. '#required' => TRUE,
  849. '#default_value' => $node->program,
  850. '#weight' => 2
  851. );
  852. $form['programversion']= array(
  853. '#type' => 'textfield',
  854. '#title' => t('Program Version'),
  855. '#required' => TRUE,
  856. '#default_value' => $node->programversion,
  857. '#weight' => 3
  858. );
  859. $form['algorithm']= array(
  860. '#type' => 'textfield',
  861. '#title' => t('Algorithm'),
  862. '#required' => FALSE,
  863. '#default_value' => $node->algorithm,
  864. '#weight' => 4
  865. );
  866. $form['sourcename']= array(
  867. '#type' => 'textfield',
  868. '#title' => t('Source Name'),
  869. '#required' => FALSE,
  870. '#default_value' => $node->sourcename,
  871. '#weight' => 5
  872. );
  873. $form['sourceversion']= array(
  874. '#type' => 'textfield',
  875. '#title' => t('Source Version'),
  876. '#required' => FALSE,
  877. '#default_value' => $node->sourceversion,
  878. '#weight' => 6
  879. );
  880. $form['sourceuri']= array(
  881. '#type' => 'textfield',
  882. '#title' => t('Source URI'),
  883. '#required' => FALSE,
  884. '#default_value' => $node->sourceuri,
  885. '#weight' => 7
  886. );
  887. // Get time saved in chado
  888. $default_time = $node->timeexecuted;
  889. $year = preg_replace("/^(\d+)-\d+-\d+ .*/", "$1", $default_time);
  890. $month = preg_replace("/^\d+-0?(\d+)-\d+ .*/", "$1", $default_time);
  891. $day = preg_replace("/^\d+-\d+-0?(\d+) .*/", "$1", $default_time);
  892. // If the time is not set, use current time
  893. if (!$default_time) {
  894. $default_time = time();
  895. $year = format_date($default_time, 'custom', 'Y');
  896. $month = format_date($default_time, 'custom', 'n');
  897. $day = format_date($default_time, 'custom', 'j');
  898. }
  899. $form['timeexecuted']= array(
  900. '#type' => 'date',
  901. '#title' => t('Time Executed'),
  902. '#required' => TRUE,
  903. '#default_value' => array(
  904. 'year' => $year,
  905. 'month' => $month,
  906. 'day' => $day,
  907. ),
  908. '#weight' => 8
  909. );
  910. $form['description']= array(
  911. '#type' => 'textarea',
  912. '#rows' => 15,
  913. '#title' => t('Description and/or Program Settings'),
  914. '#required' => FALSE,
  915. '#default_value' => check_plain($node->description),
  916. '#weight' => 9
  917. );
  918. // Blast specific settings
  919. if (preg_match("/.*\|.*\|.*/",$node->blastdb)) {
  920. $prop_values = explode("|", $node->blastdb);
  921. $node->blastdb = $prop_values[0];
  922. $node->blastfile = $prop_values[1];
  923. $node->blastparameters = $prop_values[2];
  924. }
  925. $form['blast'] = array(
  926. '#title' => t('Blast Settings'),
  927. '#type' => 'fieldset',
  928. '#description' => t('Specific Settings for Blast Analysis.'),
  929. '#collapsible' => TRUE,
  930. '#attributes' => array('id' => 'blast-extra-settings'),
  931. '#weight' => 11
  932. );
  933. $previous_db = db_set_active('chado'); // use chado database
  934. // get a list of db from chado for user to choose
  935. $sql = 'SELECT db_id, name FROM {db} ORDER BY lower(name)';
  936. $results = db_query ($sql);
  937. db_set_active($previous_db);
  938. $blastdbs = array();
  939. while ($db = db_fetch_object($results)){
  940. $blastdbs[$db->db_id] = $db->name;
  941. }
  942. $form['db_options'] = array(
  943. '#type' => 'value',
  944. '#value' => $blastdbs
  945. );
  946. $form['blast']['blastdb'] = array(
  947. '#title' => t('Database'),
  948. '#type' => 'select',
  949. '#description' => t('The database used for the blast analysis.'),
  950. '#options' => $form['db_options']['#value'],
  951. '#default_value' => $node->blastdb,
  952. );
  953. $form['blast']['blastfile'] = array(
  954. '#title' => t('Blast Output File (in xml format)'),
  955. '#type' => 'textfield',
  956. '#description' => t('The xml output file generated by blast in full path.'),
  957. '#default_value' => $node->blastfile,
  958. );
  959. $form['blast']['blastjob'] = array(
  960. '#type' => 'checkbox',
  961. '#title' => t('Submit a job to parse the xml output into analysisfeatureprop table'),
  962. '#description' => t('Note: features associated with the blast results must '.
  963. 'exist in chado before parsing the file. Otherwise, blast '.
  964. 'results that cannot be linked to a feature will be '.
  965. 'discarded. Also, Triapl Blast module needs to be enabled.'),
  966. '#default_value' => $node->blastjob
  967. );
  968. $form['blast']['blastparameters'] = array(
  969. '#title' => t('Parameters'),
  970. '#type' => 'textfield',
  971. '#description' => t('The parameters for running the blast analysis.'),
  972. '#default_value' => $node->blastparameters,
  973. );
  974. return $form;
  975. }
  976. function chado_analysis_blast_insert($node){
  977. global $user;
  978. // Create a timestamp so we can insert it into the chado database
  979. $time = $node->timeexecuted;
  980. $month = $time['month'];
  981. $day = $time['day'];
  982. $year = $time['year'];
  983. $timestamp = $month.'/'.$day.'/'.$year;
  984. // If this analysis already exists then don't recreate it in chado
  985. $analysis_id = $node->analysis_id;
  986. if ($analysis_id) {
  987. $sql = "SELECT analysis_id ".
  988. "FROM {Analysis} ".
  989. "WHERE analysis_id = %d ";
  990. $previous_db = db_set_active('chado');
  991. $analysis = db_fetch_object(db_query($sql, $node->analysis_id));
  992. db_set_active($previous_db);
  993. }
  994. // If the analysis doesn't exist then let's create it in chado.
  995. if(!$analysis){
  996. // First add the item to the chado analysis table
  997. $sql = "INSERT INTO {analysis} ".
  998. " (name, description, program, programversion, algorithm, ".
  999. " sourcename, sourceversion, sourceuri, timeexecuted) ".
  1000. "VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s')";
  1001. $previous_db = db_set_active('chado'); // use chado database
  1002. db_query($sql,$node->analysisname, $node->description,
  1003. $node->program,$node->programversion,$node->algorithm,
  1004. $node->sourcename, $node->sourceversion, $node->sourceuri,
  1005. $timestamp);
  1006. // find the newly entered analysis_id
  1007. $sql = "SELECT analysis_id ".
  1008. "FROM {Analysis} ".
  1009. "WHERE program='%s'".
  1010. "AND programversion='%s'".
  1011. "AND sourcename='%s'";
  1012. $analysis_id = db_result(db_query($sql, $node->program,
  1013. $node->programversion, $node->sourcename));
  1014. // Get cvterm_id for 'analysis_blast_settings'
  1015. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  1016. "INNER JOIN cv ON cv.cv_id = CVT.cv_id ".
  1017. "WHERE CVT.name = 'analysis_blast_settings' ".
  1018. "AND CV.name = 'tripal'";
  1019. $type_id = db_result(db_query($sql));
  1020. // Insert into chado {analysisprop} table
  1021. $sql = "INSERT INTO {analysisprop} (analysis_id, type_id, value) ".
  1022. "VALUES (%d, %d, '%s')";
  1023. $blastsettings = $node->blastdb."|".$node->blastfile."|".$node->blastparameters;
  1024. db_query($sql, $analysis_id, $type_id, $blastsettings);
  1025. db_set_active($previous_db); // switch back to drupal database
  1026. // Add a job if the user wants to parse the xml output
  1027. if($node->blastjob) {
  1028. $job_args[0] = $analysis_id;
  1029. $job_args[1] = $node->blastdb;
  1030. $job_args[2] = $node->blastfile;
  1031. if (is_readable($node->blastfile)) {
  1032. $fname = preg_replace("/.*\/(.*)/", "$1", $node->blastfile);
  1033. tripal_add_job("Parse blast: $fname",'tripal_analysis_blast',
  1034. 'tripal_analysis_blast_parseXMLFile', $job_args, $user->uid);
  1035. } else {
  1036. drupal_set_message("Can not open blast output file. Job not scheduled.");
  1037. }
  1038. }
  1039. }
  1040. // Make sure the entry for this analysis doesn't already exist in the
  1041. // chado_analysis table if it doesn't exist then we want to add it.
  1042. $node_check_sql = "SELECT * FROM {chado_analysis} ".
  1043. "WHERE analysis_id = %d";
  1044. $node_check = db_fetch_object(db_query($node_check_sql, $analysis_id));
  1045. if(!$node_check){
  1046. // next add the item to the drupal table
  1047. $sql = "INSERT INTO {chado_analysis} (nid, vid, analysis_id) ".
  1048. "VALUES (%d, %d, %d)";
  1049. db_query($sql,$node->nid,$node->vid,$analysis_id);
  1050. // Create a title for the analysis node using the unique keys so when the
  1051. // node is saved, it will have a title
  1052. $record = new stdClass();
  1053. // If the analysis has a name, use it as the node title. If not, construct
  1054. // the title using program, programversion, and sourcename
  1055. if ($node->analysisname) {
  1056. $record->title = $node->analysisname;
  1057. } else {
  1058. //Construct node title as "program (version)
  1059. $record->title = "$node->program ($node->programversion)";
  1060. }
  1061. $record->nid = $node->nid;
  1062. drupal_write_record('node',$record,'nid');
  1063. drupal_write_record('node_revisions',$record,'nid');
  1064. }
  1065. }
  1066. /*******************************************************************************
  1067. * Delete blast anlysis
  1068. */
  1069. function chado_analysis_blast_delete($node){
  1070. // Before removing, get analysis_id so we can remove it from chado database
  1071. // later
  1072. $sql_drupal = "SELECT analysis_id ".
  1073. "FROM {chado_analysis} ".
  1074. "WHERE nid = %d ".
  1075. "AND vid = %d";
  1076. $analysis_id = db_result(db_query($sql_drupal, $node->nid, $node->vid));
  1077. // Remove data from the {chado_analysis}, {node}, and {node_revisions} tables
  1078. $sql_del = "DELETE FROM {chado_analysis} ".
  1079. "WHERE nid = %d ".
  1080. "AND vid = %d";
  1081. db_query($sql_del, $node->nid, $node->vid);
  1082. $sql_del = "DELETE FROM {node} ".
  1083. "WHERE nid = %d ".
  1084. "AND vid = %d";
  1085. db_query($sql_del, $node->nid, $node->vid);
  1086. $sql_del = "DELETE FROM {node_revisions} ".
  1087. "WHERE nid = %d ".
  1088. "AND vid = %d";
  1089. db_query($sql_del, $node->nid, $node->vid);
  1090. //Remove from analysisfeatureprop, analysisfeature, analysis, and analysisprop tables
  1091. $previous_db = db_set_active('chado');
  1092. $sql = "SELECT analysisfeature_id FROM {analysisfeature} WHERE analysis_id=%d";
  1093. $results = db_query($sql, $analysis_id);
  1094. while ($af = db_fetch_object($results)) {
  1095. db_query("DELETE FROM {analysisfeatureprop} WHERE analysisfeature_id = %d", $af->analysisfeature_id);
  1096. }
  1097. db_query("DELETE FROM {analysisfeature} WHERE analysis_id = %d", $analysis_id);
  1098. db_query("DELETE FROM {analysisprop} WHERE analysis_id = %d", $analysis_id);
  1099. db_query("DELETE FROM {analysis} WHERE analysis_id = %d", $analysis_id);
  1100. db_set_active($previous_db);
  1101. }
  1102. /*******************************************************************************
  1103. * Update blast analysis
  1104. */
  1105. function chado_analysis_blast_update($node){
  1106. global $user;
  1107. if($node->revision){
  1108. // TODO -- decide what to do about revisions
  1109. } else {
  1110. // Create a timestamp so we can insert it into the chado database
  1111. $time = $node->timeexecuted;
  1112. $month = $time['month'];
  1113. $day = $time['day'];
  1114. $year = $time['year'];
  1115. $timestamp = $month.'/'.$day.'/'.$year;
  1116. // get the analysis_id for this node:
  1117. $sql = "SELECT analysis_id ".
  1118. "FROM {chado_analysis} ".
  1119. "WHERE vid = %d";
  1120. $analysis_id = db_fetch_object(db_query($sql, $node->vid))->analysis_id;
  1121. $sql = "UPDATE {analysis} ".
  1122. "SET name = '%s', ".
  1123. " description = '%s', ".
  1124. " program = '%s', ".
  1125. " programversion = '%s', ".
  1126. " algorithm = '%s', ".
  1127. " sourcename = '%s', ".
  1128. " sourceversion = '%s', ".
  1129. " sourceuri = '%s', ".
  1130. " timeexecuted = '%s' ".
  1131. "WHERE analysis_id = %d ";
  1132. $previous_db = db_set_active('chado'); // use chado database
  1133. db_query($sql, $node->analysisname, $node->description, $node->program,
  1134. $node->programversion,$node->algorithm,$node->sourcename,
  1135. $node->sourceversion, $node->sourceuri, $timestamp, $analysis_id);
  1136. // Get cvterm_id for 'analysis_blast_settings'
  1137. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  1138. "INNER JOIN cv CV ON CV.cv_id = CVT.cv_id ".
  1139. "WHERE CVT.name = 'analysis_blast_settings' ".
  1140. "AND CV.name = 'tripal'";
  1141. $type_id = db_result(db_query($sql));
  1142. $sql = "UPDATE {analysisprop} ".
  1143. "SET value = '%s' ".
  1144. "WHERE analysis_id = %d AND type_id = %d";
  1145. $blastsettings = $node->blastdb."|".$node->blastfile."|".$node->blastparameters;
  1146. db_query($sql, $blastsettings, $analysis_id, $type_id);
  1147. db_set_active($previous_db); // switch back to drupal database
  1148. // Add a job if the user wants to parse the xml output
  1149. if($node->blastjob) {
  1150. $job_args[0] = $analysis_id;
  1151. $job_args[1] = $node->blastdb;
  1152. $job_args[2] = $node->blastfile;
  1153. if (is_readable($node->blastfile)) {
  1154. $fname = preg_replace("/.*\/(.*)/", "$1", $node->blastfile);
  1155. tripal_add_job("Parse blast: $fname",'tripal_analysis_blast',
  1156. 'tripal_analysis_blast_parseXMLFile', $job_args, $user->uid);
  1157. } else {
  1158. drupal_set_message("Can not open blast output file. Job not scheduled.");
  1159. }
  1160. }
  1161. // Create a title for the analysis node using the unique keys so when the
  1162. // node is saved, it will have a title
  1163. $record = new stdClass();
  1164. // If the analysis has a name, use it as the node title. If not, construct
  1165. // the title using program, programversion, and sourcename
  1166. if ($node->analysisname) {
  1167. $record->title = $node->analysisname;
  1168. } else {
  1169. //Construct node title as "program (version)
  1170. $record->title = "$node->program ($node->programversion)";
  1171. }
  1172. $record->nid = $node->nid;
  1173. drupal_write_record('node',$record,'nid');
  1174. drupal_write_record('node_revisions',$record,'nid');
  1175. }
  1176. }
  1177. /*******************************************************************************
  1178. * When a node is requested by the user this function is called to allow us
  1179. * to add auxiliary data to the node object.
  1180. */
  1181. function chado_analysis_blast_load($node){
  1182. // get the analysis_id for this node:
  1183. $sql = "SELECT analysis_id FROM {chado_analysis} WHERE vid = %d";
  1184. $ana_node = db_fetch_object(db_query($sql, $node->vid));
  1185. $additions = new stdClass();
  1186. if ($ana_node) {
  1187. // get analysis information
  1188. $sql = "SELECT Analysis_id, name AS analysisname, description, program, ".
  1189. " programversion, algorithm, sourcename, sourceversion, ".
  1190. " sourceuri, timeexecuted ".
  1191. "FROM {Analysis} ".
  1192. "WHERE Analysis_id = $ana_node->analysis_id";
  1193. $previous_db = db_set_active('chado'); // use chado database
  1194. $additions = db_fetch_object(db_query($sql));
  1195. // get cvterm_id for 'analysis_blast_settings'
  1196. $sql = "SELECT CVT.cvterm_id FROM {cvterm} CVT ".
  1197. "INNER JOIN cv ON cv.cv_id = CVT.cv_id ".
  1198. "WHERE CVT.name = 'analysis_blast_settings' ".
  1199. "AND CV.name = 'tripal'";
  1200. $type_id = db_result(db_query($sql));
  1201. // get analysisprop information
  1202. $sql = "SELECT value FROM {analysisprop} ".
  1203. "WHERE analysis_id = %d ".
  1204. "AND type_id = %d";
  1205. $analysisprop = db_result(db_query($sql, $ana_node->analysis_id, $type_id));
  1206. $prop_values = explode ("|", $analysisprop, 1);
  1207. $additions->blastdb = $prop_values[0];
  1208. $additions->blastfile = $prop_values[1];
  1209. $additions->blastparameters = $prop_values[2];
  1210. db_set_active($previous_db); // now use drupal database
  1211. }
  1212. // If the analysis has a name, use it as the node title. If not, construct
  1213. // the title using program programversion, and sourcename
  1214. if ($additions->analysisname) {
  1215. $additions->title = $additions->analysisname;
  1216. } else {
  1217. // Construct node title as "program version (source)
  1218. $additions->title = "$additions->program ($additions->programversion)";
  1219. }
  1220. return $additions;
  1221. }
  1222. /*******************************************************************************
  1223. * This function customizes the view of the chado_analysis node. It allows
  1224. * us to generate the markup.
  1225. */
  1226. function chado_analysis_blast_view ($node, $teaser = FALSE, $page = FALSE) {
  1227. // use drupal's default node view:
  1228. if (!$teaser) {
  1229. $node = node_prepare($node, $teaser);
  1230. // When previewing a node submitting form, it shows 'Array' instead of
  1231. // correct date format. We need to format the date here
  1232. $time = $node->timeexecuted;
  1233. if(is_array($time)){
  1234. $month = $time['month'];
  1235. $day = $time['day'];
  1236. $year = $time['year'];
  1237. $timestamp = $year.'-'.$month.'-'.$day;
  1238. $node->timeexecuted = $timestamp;
  1239. }
  1240. // When viewing a node, we need to reformat the analysisprop since we
  1241. // separate each value with a bar |
  1242. if (preg_match("/.*\|.*\|.*/",$node->blastdb)) {
  1243. $prop_values = explode("|", $node->blastdb);
  1244. $node->blastdb = $prop_values[0];
  1245. $node->blastfile = $prop_values[1];
  1246. $node->blastparameters = $prop_values[2];
  1247. }
  1248. }
  1249. return $node;
  1250. }
  1251. /*******************************************************************************
  1252. * Set the permission types that the chado module uses. Essentially we
  1253. * want permissionis that protect creation, editing and deleting of chado
  1254. * data objects
  1255. */
  1256. function tripal_analysis_blast_perm(){
  1257. return array(
  1258. 'access chado_analysis_blast content',
  1259. 'create chado_analysis_blast content',
  1260. 'delete chado_analysis_blast content',
  1261. 'edit chado_analysis_blast content',
  1262. );
  1263. }
  1264. /*******************************************************************************
  1265. * The following function proves access control for users trying to
  1266. * perform actions on data managed by this module
  1267. */
  1268. function chado_analysis_blast_access($op, $node, $account){
  1269. if ($op == 'create') {
  1270. return user_access('create chado_analysis_blast content', $account);
  1271. }
  1272. if ($op == 'update') {
  1273. if (user_access('edit chado_analysis_blast content', $account)) {
  1274. return TRUE;
  1275. }
  1276. }
  1277. if ($op == 'delete') {
  1278. if (user_access('delete chado_analysis_blast content', $account)) {
  1279. return TRUE;
  1280. }
  1281. }
  1282. if ($op == 'view') {
  1283. if (user_access('access chado_analysis_blast content', $account)) {
  1284. return TRUE;
  1285. }
  1286. }
  1287. return FALSE;
  1288. }