tripal_analysis_blast.module 64 KB

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