tripal_feature.fasta_loader.inc 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  1. <?php
  2. /**
  3. * @file
  4. * Provides fasta loading functionality. Creates features based on their specification
  5. * in a fasta file.
  6. */
  7. /**
  8. * @defgroup fasta_loader FASTA Feature Loader
  9. * @ingroup tripal_feature
  10. * @{
  11. * Provides fasta loading functionality. Creates features based on their specification
  12. * in a fasta file.
  13. * @}
  14. *
  15. */
  16. /**
  17. * The form to submit a fasta loading job
  18. *
  19. * @ingroup fasta_loader
  20. */
  21. function tripal_feature_fasta_load_form() {
  22. $form['fasta_file']= array(
  23. '#type' => 'textfield',
  24. '#title' => t('FASTA File'),
  25. '#description' => t('Please enter the full system path for the FASTA file, or a path within the Drupal
  26. installation (e.g. /sites/default/files/xyz.obo). The path must be accessible to the
  27. server on which this Drupal instance is running.'),
  28. '#required' => TRUE,
  29. );
  30. // get the list of organisms
  31. $sql = "SELECT * FROM {organism} ORDER BY genus, species";
  32. $org_rset = chado_query($sql);
  33. $organisms = array();
  34. $organisms[''] = '';
  35. while ($organism = $org_rset->fetchObject()) {
  36. $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
  37. }
  38. $form['organism_id'] = array(
  39. '#title' => t('Organism'),
  40. '#type' => t('select'),
  41. '#description' => t("Choose the organism to which these sequences are associated"),
  42. '#required' => TRUE,
  43. '#options' => $organisms,
  44. );
  45. $form['seqtype']= array(
  46. '#type' => 'textfield',
  47. '#title' => t('Sequence Type'),
  48. '#required' => TRUE,
  49. '#description' => t('Please enter the Sequence Ontology (SO) term name that describes the sequences in the FASTA file (e.g. gene, mRNA, protein, etc...)'),
  50. );
  51. // get the list of organisms
  52. $sql = "SELECT L.library_id, L.name, CVT.name as type
  53. FROM {library} L
  54. INNER JOIN {cvterm} CVT ON L.type_id = CVT.cvterm_id
  55. ORDER BY name";
  56. $lib_rset = chado_query($sql);
  57. $libraries = array();
  58. $libraries[''] = '';
  59. while ($library = $lib_rset->fetchObject()) {
  60. $libraries[$library->library_id] = "$library->name ($library->type)";
  61. }
  62. // $form['library_id'] = array (
  63. // '#title' => t('Library'),
  64. // '#type' => t('select'),
  65. // '#description' => t("Choose the library to which these sequences are associated "),
  66. // '#required' => FALSE,
  67. // '#options' => $libraries,
  68. // '#weight' => 5,
  69. // );
  70. $form['method']= array(
  71. '#type' => 'radios',
  72. '#title' => 'Method',
  73. '#required' => TRUE,
  74. '#options' => array(
  75. t('Insert only'),
  76. t('Update only'),
  77. t('Insert and update'),
  78. ),
  79. '#description' => t('Select how features in the FASTA file are handled.
  80. Select "Insert only" to insert the new features. If a feature already
  81. exists with the same name or unique name and type then it is skipped.
  82. Select "Update only" to only update featues that already exist in the
  83. database. Select "Insert and Update" to insert features that do
  84. not exist and upate those that do.'),
  85. '#default_value' => 2,
  86. );
  87. $form['match_type']= array(
  88. '#type' => 'radios',
  89. '#title' => 'Name Match Type',
  90. '#required' => TRUE,
  91. '#options' => array(
  92. t('Name'),
  93. t('Unique name'),
  94. ),
  95. '#description' => t('Used for "updates only" or "insert and update" methods. Not required if method type is "insert".
  96. Feature data is stored in Chado with both a human-readable
  97. name and a unique name. If the features in your FASTA file are uniquely identified using
  98. a human-readable name then select the "Name" button. If your features are
  99. uniquely identified using the unique name then select the "Unique name" button. If you
  100. loaded your features first using the GFF loader then the unique name of each
  101. features were indicated by the "ID=" attribute and the name by the "Name=" attribute.
  102. By default, the FASTA loader will use the first word (character string
  103. before the first space) as the name for your feature. If
  104. this does not uniquely identify your feature consider specifying a regular expression in the advanced section below.
  105. Additionally, you may import both a name and a unique name for each sequence using the advanced options.'),
  106. '#default_value' => 1,
  107. );
  108. $form['analysis'] = array(
  109. '#type' => 'fieldset',
  110. '#title' => t('Analysis Used to Derive Features'),
  111. '#collapsed' => TRUE
  112. );
  113. $form['analysis']['desc'] = array(
  114. '#type' => 'markup',
  115. '#value' => t("Why specify an analysis for a data load? All data comes
  116. from some place, even if downloaded from Genbank. By specifying
  117. analysis details for all data uploads, it allows an end user to reproduce the
  118. data set, but at least indicates the source of the data."),
  119. );
  120. // get the list of organisms
  121. $sql = "SELECT * FROM {analysis} ORDER BY name";
  122. $org_rset = chado_query($sql);
  123. $analyses = array();
  124. $analyses[''] = '';
  125. while ($analysis = $org_rset->fetchObject()) {
  126. $analyses[$analysis->analysis_id] = "$analysis->name ($analysis->program $analysis->programversion, $analysis->sourcename)";
  127. }
  128. $form['analysis']['analysis_id'] = array(
  129. '#title' => t('Analysis'),
  130. '#type' => t('select'),
  131. '#description' => t("Choose the analysis to which these features are associated"),
  132. '#required' => TRUE,
  133. '#options' => $analyses,
  134. );
  135. // Advanced Options
  136. $form['advanced'] = array(
  137. '#type' => 'fieldset',
  138. '#title' => t('Advanced Options'),
  139. '#collapsible' => TRUE,
  140. '#collapsed' => TRUE
  141. );
  142. $form['advanced']['re_help']= array(
  143. '#type' => 'item',
  144. '#value' => t('A regular expression is an advanced method for extracting information from a string of text.
  145. Your FASTA file may contain both a human-readable name and a unique name for each sequence.
  146. If you want to import
  147. both the name and unique name for all sequences, then you must provide regular expressions
  148. so that the loader knows how to separate them.
  149. Otherwise the name and uniquename will be the same.
  150. By default, this loader will use the first word in the definition
  151. lines of the FASTA file
  152. as the name or unique name of the feature.'),
  153. );
  154. $form['advanced']['re_name']= array(
  155. '#type' => 'textfield',
  156. '#title' => t('Regular expression for the name'),
  157. '#required' => FALSE,
  158. '#description' => t('Enter the regular expression that will extract the
  159. feature name from the FASTA definition line. For example, for a
  160. defintion line with a name and unique name separated by a bar \'|\' (>seqname|uniquename),
  161. the regular expression for the name would be, "^(.*?)\|.*$".'),
  162. );
  163. $form['advanced']['re_uname']= array(
  164. '#type' => 'textfield',
  165. '#title' => t('Regular expression for the unique name'),
  166. '#required' => FALSE,
  167. '#description' => t('Enter the regular expression that will extract the
  168. feature name from the FASTA definition line. For example, for a
  169. defintion line with a name and unique name separated by a bar \'|\' (>seqname|uniquename),
  170. the regular expression for the unique name would be "^.*?\|(.*)$").'),
  171. );
  172. // Advanced database cross-reference optoins
  173. $form['advanced']['db'] = array(
  174. '#type' => 'fieldset',
  175. '#title' => t('External Database Reference'),
  176. '#weight' => 6,
  177. '#collapsed' => TRUE
  178. );
  179. $form['advanced']['db']['re_accession']= array(
  180. '#type' => 'textfield',
  181. '#title' => t('Regular expression for the accession'),
  182. '#required' => FALSE,
  183. '#description' => t('Enter the regular expression that will extract the accession for the external database for each feature from the FASTA definition line.'),
  184. '#weight' => 2
  185. );
  186. // get the list of databases
  187. $sql = "SELECT * FROM {db} ORDER BY name";
  188. $db_rset = chado_query($sql);
  189. $dbs = array();
  190. $dbs[''] = '';
  191. while ($db = $db_rset->fetchObject()) {
  192. $dbs[$db->db_id] = "$db->name";
  193. }
  194. $form['advanced']['db']['db_id'] = array(
  195. '#title' => t('External Database'),
  196. '#type' => t('select'),
  197. '#description' => t("Plese choose an external database for which these sequences have a cross reference."),
  198. '#required' => FALSE,
  199. '#options' => $dbs,
  200. '#weight' => 1,
  201. );
  202. $form['advanced']['relationship'] = array(
  203. '#type' => 'fieldset',
  204. '#title' => t('Relationships'),
  205. '#weight' => 6,
  206. '#collapsed' => TRUE
  207. );
  208. $rels = array();
  209. $rels[''] = '';
  210. $rels['part_of'] = 'part of';
  211. $rels['derives_from'] = 'produced by';
  212. // Advanced references options
  213. $form['advanced']['relationship']['rel_type']= array(
  214. '#title' => t('Relationship Type'),
  215. '#type' => t('select'),
  216. '#description' => t("Use this option to create associations, or relationships between the
  217. features of this FASTA file and existing features in the database. For
  218. example, to associate a FASTA file of peptides to existing genes or transcript sequence,
  219. select the type 'produced by'. For a CDS sequences select the type 'part of'"),
  220. '#required' => FALSE,
  221. '#options' => $rels,
  222. '#weight' => 5,
  223. );
  224. $form['advanced']['relationship']['re_subject']= array(
  225. '#type' => 'textfield',
  226. '#title' => t('Regular expression for the parent'),
  227. '#required' => FALSE,
  228. '#description' => t('Enter the regular expression that will extract the unique
  229. name needed to identify the existing sequence for which the
  230. relationship type selected above will apply.'),
  231. '#weight' => 6
  232. );
  233. $form['advanced']['relationship']['parent_type']= array(
  234. '#type' => 'textfield',
  235. '#title' => t('Parent Type'),
  236. '#required' => FALSE,
  237. '#description' => t('Please enter the Sequence Ontology term for the parent. For example
  238. if the FASTA file being loaded is a set of proteins that are
  239. products of genes, then use the SO term \'gene\' or \'transcript\' or equivalent. However,
  240. this type must match the type for already loaded features.'),
  241. '#weight' => 7
  242. );
  243. $form['button'] = array(
  244. '#type' => 'submit',
  245. '#value' => t('Import FASTA file'),
  246. '#weight' => 10,
  247. );
  248. return $form;
  249. }
  250. /**
  251. * Validate the fasta loader job form
  252. *
  253. * @ingroup fasta_loader
  254. */
  255. function tripal_feature_fasta_load_form_validate($form, &$form_state) {
  256. $fasta_file = trim($form_state['values']['fasta_file']);
  257. $organism_id = $form_state['values']['organism_id'];
  258. $type = trim($form_state['values']['seqtype']);
  259. $method = trim($form_state['values']['method']);
  260. $match_type = trim($form_state['values']['match_type']);
  261. $library_id = $form_state['values']['library_id'];
  262. $re_name = trim($form_state['values']['re_name']);
  263. $re_uname = trim($form_state['values']['re_uname']);
  264. $re_accession = trim($form_state['values']['re_accession']);
  265. $db_id = $form_state['values']['db_id'];
  266. $rel_type = $form_state['values']['rel_type'];
  267. $re_subject = trim($form_state['values']['re_subject']);
  268. $parent_type = trim($form_state['values']['parent_type']);
  269. if ($method == 0) {
  270. $method = 'Insert only';
  271. }
  272. if ($method == 1) {
  273. $method = 'Update only';
  274. }
  275. if ($method == 2) {
  276. $method = 'Insert and update';
  277. }
  278. if ($match_type == 0) {
  279. $match_type = 'Name';
  280. }
  281. if ($match_type == 1) {
  282. $match_type = 'Unique name';
  283. }
  284. if ($re_name and !$re_uname and strcmp($match_type, 'Unique name')==0) {
  285. form_set_error('re_uname', t("You must provide a regular expression to identify the sequence unique name"));
  286. }
  287. if (!$re_name and $re_uname and strcmp($match_type, 'Name')==0) {
  288. form_set_error('re_name', t("You must provide a regular expression to identify the sequence name"));
  289. }
  290. // check to see if the file is located local to Drupal
  291. $fasta_file = trim($fasta_file);
  292. $dfile = $_SERVER['DOCUMENT_ROOT'] . base_path() . $fasta_file;
  293. if (!file_exists($dfile)) {
  294. // if not local to Drupal, the file must be someplace else, just use
  295. // the full path provided
  296. $dfile = $fasta_file;
  297. }
  298. if (!file_exists($dfile)) {
  299. form_set_error('fasta_file', t("Cannot find the file on the system. Check that the file exists or that the web server has permissions to read the file."));
  300. }
  301. // make sure if a relationship is specified that all fields are provided.
  302. if (($rel_type or $parent_type) and !$re_subject) {
  303. form_set_error('re_subject', t("Please provide a regular expression for the parent"));
  304. }
  305. if (($rel_type or $re_subject) and !$parent_type) {
  306. form_set_error('parent_type', t("Please provide a SO term for the parent"));
  307. }
  308. if (($parent_type or $re_subject) and !$rel_type) {
  309. form_set_error('rel_type', t("Please select a relationship type"));
  310. }
  311. // make sure if a database is specified that all fields are provided
  312. if ($db_id and !$re_accession) {
  313. form_set_error('re_accession', t("Please provide a regular expression for the accession"));
  314. }
  315. if ($re_accession and !$db_id) {
  316. form_set_error('db_id', t("Please select a database"));
  317. }
  318. // check to make sure the types exists
  319. $cvtermsql = "SELECT CVT.cvterm_id
  320. FROM {cvterm} CVT
  321. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  322. LEFT JOIN {cvtermsynonym} CVTS on CVTS.cvterm_id = CVT.cvterm_id
  323. WHERE cv.name = :cvname and (CVT.name = :name or CVTS.synonym = :synonym)";
  324. $cvterm = chado_query($cvtermsql, array(':cvname' => 'sequence', ':name' => $type, ':synonym' => $type))->fetchObject();
  325. if (!$cvterm) {
  326. form_set_error('type', t("The Sequence Ontology (SO) term selected for the sequence type is not available in the database. Please check spelling or select another."));
  327. }
  328. if ($rel_type) {
  329. $cvterm = chado_query($cvtermsql, array(':cvname' => 'sequence', ':name' => $parent_type, ':synonym' => $parent_type))->fetchObject();
  330. if (!$cvterm) {
  331. form_set_error('parent_type', t("The Sequence Ontology (SO) term selected for the parent relationship is not available in the database. Please check spelling or select another."));
  332. }
  333. }
  334. // check to make sure the 'relationship' and 'sequence' ontologies are loaded
  335. $form_state['storage']['dfile'] = $dfile;
  336. }
  337. /**
  338. * Submit a fasta loading job
  339. *
  340. * @ingroup fasta_loader
  341. */
  342. function tripal_feature_fasta_load_form_submit($form, &$form_state) {
  343. global $user;
  344. $dfile = $form_state['storage']['dfile'];
  345. $organism_id = $form_state['values']['organism_id'];
  346. $type = trim($form_state['values']['seqtype']);
  347. $method = trim($form_state['values']['method']);
  348. $match_type = trim($form_state['values']['match_type']);
  349. $library_id = $form_state['values']['library_id'];
  350. $re_name = trim($form_state['values']['re_name']);
  351. $re_uname = trim($form_state['values']['re_uname']);
  352. $re_accession = trim($form_state['values']['re_accession']);
  353. $db_id = $form_state['values']['db_id'];
  354. $rel_type = $form_state['values']['rel_type'];
  355. $re_subject = trim($form_state['values']['re_subject']);
  356. $parent_type = trim($form_state['values']['parent_type']);
  357. $analysis_id = $form_state['values']['analysis_id'];
  358. if ($method == 0) {
  359. $method = 'Insert only';
  360. }
  361. if ($method == 1) {
  362. $method = 'Update only';
  363. }
  364. if ($method == 2) {
  365. $method = 'Insert and update';
  366. }
  367. if ($match_type == 0) {
  368. $match_type = 'Name';
  369. }
  370. if ($match_type == 1) {
  371. $match_type = 'Unique name';
  372. }
  373. $args = array($dfile, $organism_id, $type, $library_id, $re_name, $re_uname,
  374. $re_accession, $db_id, $rel_type, $re_subject, $parent_type, $method,
  375. $user->uid, $analysis_id, $match_type);
  376. $fname = preg_replace("/.*\/(.*)/", "$1", $dfile);
  377. tripal_add_job("Import FASTA file: $fname", 'tripal_feature',
  378. 'tripal_feature_load_fasta', $args, $user->uid);
  379. }
  380. /**
  381. * Actually load a fasta file. This is the function called by tripal jobs
  382. *
  383. * @param $dfile
  384. * The full path to the fasta file to load
  385. * @param $organism_id
  386. * The organism_id of the organism these features are from
  387. * @param $type
  388. * The type of features contained in the fasta file
  389. * @param $library_id
  390. * (Optional) The library_id to associate the features with
  391. * @param $re_name
  392. * A regular expression to extract the feature.name from the fasta header
  393. * @param $re_uname
  394. * A regular expression to extract the feature.uniquename from the fasta header
  395. * @param $re_accession
  396. * A regular expression to extract the accession of the feature.dbxref_id
  397. * @param $db_id
  398. * The db_id of the above dbxref
  399. * @param $rel_type
  400. * The type of relationship when creating a feature_relationship between this
  401. * feature (object) and an extracted subject
  402. * @param $re_subject
  403. * The regular expression to extract the uniquename of the feature to be the subject
  404. * of the above specified relationship
  405. * @param $parent_type
  406. * The type of the parent feature
  407. * @param $method
  408. * The method of feature adding. (ie: 'Insert only', 'Update only', 'Insert and update')
  409. * @param $uid
  410. * The user id of the user who submitted the job
  411. * @param $analysis_id
  412. * The analysis_id to associate the features in this fasta file with
  413. * @param $match_type
  414. * Whether to match existing features based on the 'Name' or 'Unique name'
  415. * @param $job = NULL
  416. * The tripal job
  417. *
  418. * @ingroup fasta_loader
  419. */
  420. function tripal_feature_load_fasta($dfile, $organism_id, $type,
  421. $library_id, $re_name, $re_uname, $re_accession, $db_id, $rel_type,
  422. $re_subject, $parent_type, $method, $uid, $analysis_id,
  423. $match_type, $job = NULL) {
  424. // begin the transaction
  425. $connection = tripal_db_start_transaction();
  426. // if we cannot get a connection then let the user know the loading will be slow
  427. if (!$connection) {
  428. print "A persistant connection was not obtained. Loading will be slow\n";
  429. }
  430. else {
  431. print "\nNOTE: Loading of this FASTA file is performed using a database transaction. \n" .
  432. "If the load fails or is terminated prematurely then the entire set of \n" .
  433. "insertions/updates is rolled back and will not be found in the database\n\n";
  434. }
  435. // first get the type for this sequence
  436. $cvtermsql = "SELECT CVT.cvterm_id
  437. FROM {cvterm} CVT
  438. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  439. LEFT JOIN {cvtermsynonym} CVTS on CVTS.cvterm_id = CVT.cvterm_id
  440. WHERE cv.name = :cvname and (CVT.name = :name or CVTS.synonym = :synonym)";
  441. $cvterm = chado_query($cvtermsql, array(':cvname' => 'sequence', ':name' => $type, ':synonym' => $type))->fetchObject();
  442. if (!$cvterm) {
  443. tripal_report_error("T_fasta_loader", TRIPAL_ERROR, "Cannot find the term type: '%type'", array('%type' => $type));
  444. return 0;
  445. }
  446. if ($parent_type) {
  447. $parentcvterm = chado_query($cvtermsql, array(':cvname' => 'sequence', ':name' => $parent_type, ':synonym' => $parent_type))->fetchObject();
  448. if (!$parentcvterm) {
  449. tripal_report_error("T_fasta_loader", TRIPAL_ERROR, "Cannot find the paretne term type: '%type'", array('%type' => $parentcvterm));
  450. return 0;
  451. }
  452. }
  453. if ($rel_type) {
  454. $relcvterm = chado_query($cvtermsql, array(':cvname' => 'relationship', ':name' => $rel_type, ':synonym' => $rel_type))->fetchObject();
  455. if (!$relcvterm) {
  456. tripal_report_error("T_fasta_loader", TRIPAL_ERROR, "Cannot find the relationship term type: '%type'", array('%type' => $relcvterm));
  457. return 0;
  458. }
  459. }
  460. print "Opening FASTA file $dfile\n";
  461. //$lines = file($dfile, FILE_SKIP_EMPTY_LINES);
  462. $fh = fopen($dfile, 'r');
  463. if (!$fh) {
  464. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "cannot open file: %dfile", array('%dfile' => $dfile));
  465. return 0;
  466. }
  467. $filesize = filesize($dfile);
  468. $i = 0;
  469. $name = '';
  470. $uname = '';
  471. $residues = '';
  472. $interval = intval($filesize * 0.01);
  473. if ($interval < 1) {
  474. $interval = 1;
  475. }
  476. $inv_read = 0;
  477. // we need to get the table schema to make sure we don't overrun the
  478. // size of fields with what our regular expressions retrieve
  479. $feature_tbl = chado_get_schema('feature');
  480. $dbxref_tbl = chado_get_schema('dbxref');
  481. //foreach ($lines as $line_num => $line) {
  482. while ($line = fgets($fh)) {
  483. $i++; // update the line count
  484. $num_read += drupal_strlen($line);
  485. $intv_read += drupal_strlen($line);
  486. // if we encounter a definition line then get the name, uniquename,
  487. // accession and relationship subject from the definition line
  488. if (preg_match('/^>/', $line)) {
  489. // if we have a feature name then we are starting a new sequence
  490. // so lets handle the previous one before moving on
  491. if ($name or $uname) {
  492. tripal_feature_fasta_loader_handle_feature($name, $uname, $db_id,
  493. $accession, $subject, $rel_type, $parent_type, $analysis_id, $organism_id, $cvterm,
  494. $source, $residues, $method, $re_name, $match_type, $parentcvterm, $relcvterm);
  495. $residues = '';
  496. $name = '';
  497. $uname = '';
  498. }
  499. $line = preg_replace("/^>/", '', $line); // remove the > symbol from the defline
  500. // get the feature name
  501. if ($re_name) {
  502. if (!preg_match("/$re_name/", $line, $matches)) {
  503. tripal_report_error('trp-fasta', "ERROR: Regular expression for the feature name finds nothing. Line %line.", array('%line' => $i), 'error');
  504. }
  505. elseif (strlen($matches[1]) > $feature_tbl['fields']['name']['length']) {
  506. tripal_report_error('trp-fasta', "WARNING: Regular expression retrieves a value too long for the feature name. Line %line.", array('%line' => $i), 'error');
  507. }
  508. else {
  509. $name = trim($matches[1]);
  510. }
  511. }
  512. else {
  513. // if the match_type is name and no regular expression was provided
  514. // then use the first word as the name, otherwise we don't set the name
  515. if (strcmp($match_type, 'Name')==0) {
  516. if (preg_match("/^\s*(.*?)[\s\|].*$/", $line, $matches)) {
  517. if (strlen($matches[1]) > $feature_tbl['fields']['name']['length']) {
  518. tripal_report_error('trp-fasta', "WARNING: Regular expression retrieves a feature name too long for the feature name. Line %line.", array('%line' => $i), 'error');
  519. }
  520. else {
  521. $name = trim($matches[1]);
  522. }
  523. }
  524. else {
  525. tripal_report_error('trp-fasta', "ERROR: Cannot find a feature name. Line %line.", array('%line' => $i), 'error');
  526. }
  527. }
  528. }
  529. // get the feature unique name
  530. if ($re_uname) {
  531. if (!preg_match("/$re_uname/", $line, $matches)) {
  532. tripal_report_error('trp-fasta', "ERROR: Regular expression for the feature unique name finds nothing. Line %line.", array('%line' => $i), 'error');
  533. }
  534. $uname = trim($matches[1]);
  535. }
  536. else {
  537. // if the match_type is name and no regular expression was provided
  538. // then use the first word as the name, otherwise, we don't set the unqiuename
  539. if (strcmp($match_type, 'Unique name')==0) {
  540. if (preg_match("/^\s*(.*?)[\s\|].*$/", $line, $matches)) {
  541. $uname = trim($matches[1]);
  542. }
  543. else {
  544. tripal_report_error('trp-fasta', "ERROR: Cannot find a feature unique name. Line %line.", array('%line' => $i), 'error');
  545. }
  546. }
  547. }
  548. // get the accession
  549. preg_match("/$re_accession/", $line, $matches);
  550. if (strlen($matches[1]) > $dbxref_tbl['fields']['accession']['length']) {
  551. tripal_report_error('trp-fasta', "WARNING: Regular expression retrieves an accession too long for the feature name. Cannot add cross reference. Line %line.", array('%line' => $i), 'warning');
  552. }
  553. else {
  554. $accession = trim($matches[1]);
  555. }
  556. // get the relationship subject
  557. preg_match("/$re_subject/", $line, $matches);
  558. $subject = trim($matches[1]);
  559. }
  560. else {
  561. $residues .= trim($line);
  562. // update the job status every % features
  563. if ($job and $intv_read >= $interval) {
  564. $intv_read = 0;
  565. $percent = sprintf("%.2f", ($num_read / $filesize) * 100);
  566. if ($name) {
  567. print "Parsing Line $i (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes. Current feature: $name\r";
  568. }
  569. else {
  570. print "Parsing Line $i (" . $percent . "%). Memory: " . number_format(memory_get_usage()) . " bytes. Current feature: $uname\r";
  571. }
  572. tripal_set_job_progress($job, intval(($num_read / $filesize) * 100));
  573. }
  574. }
  575. }
  576. // now load the last sequence in the file
  577. tripal_feature_fasta_loader_handle_feature($name, $uname, $db_id,
  578. $accession, $subject, $rel_type, $parent_type, $analysis_id, $organism_id, $cvterm,
  579. $source, $residues, $method, $re_name, $match_type, $parentcvterm, $relcvterm);
  580. // commit the transaction
  581. tripal_db_commit_transaction();
  582. print "\nDone\n";
  583. }
  584. /**
  585. * A helper function for tripal_feature_load_fasta() to load a single feature
  586. *
  587. * @param $name
  588. * @param $uname
  589. * @param $db_id
  590. * @param $accession
  591. * @param $parent
  592. * @param $rel_type
  593. * @param $parent_type
  594. * @param $analysis_id
  595. * @param $organism_id
  596. * @param $cvterm
  597. * @param $source
  598. * @param $residues
  599. * @param $method
  600. * @param $re_name
  601. * @param $match_type
  602. * @param $parentcvterm
  603. * @param $relcvterm
  604. *
  605. * @ingroup fasta_loader
  606. */
  607. function tripal_feature_fasta_loader_handle_feature($name, $uname, $db_id, $accession,
  608. $parent, $rel_type, $parent_type, $analysis_id, $organism_id, $cvterm,
  609. $source, $residues, $method, $re_name, $match_type, $parentcvterm, $relcvterm) {
  610. // check to see if this feature already exists if the match_type is 'Name'
  611. if (strcmp($match_type, 'Name')==0) {
  612. $values = array(
  613. 'organism_id' => $organism_id,
  614. 'name' => $name,
  615. 'type_id' => $cvterm->cvterm_id,
  616. );
  617. $options = array('statement_name' => 'sel_feature_ornaty');
  618. $results = chado_select_record('feature', array('feature_id'), $values, $options);
  619. if (count($results) > 1) {
  620. tripal_report_error('T_fasta_loader', "Multiple features exist with the name '%name' of type
  621. '%type' for the organism. skipping", array('%name' => $name, '%type' => $type));
  622. return 0;
  623. }
  624. if (count($results) == 1) {
  625. $feature = $results[0];
  626. }
  627. }
  628. // check to see if this feature already exists if the match_type is 'Unique Name'
  629. if (strcmp($match_type, 'Unique name')==0) {
  630. $values = array(
  631. 'organism_id' => $organism_id,
  632. 'uniquename' => $uname,
  633. 'type_id' => $cvterm->cvterm_id,
  634. );
  635. $options = array('statement_name' => 'sel_feature_oruqty');
  636. $results = chado_select_record('feature', array('feature_id'), $values, $options);
  637. if (count($results) > 1) {
  638. tripal_report_error('T_fasta_loader', "Multiple features exist with the name '%name' of type
  639. '%type' for the organism. skipping", array('%name' => $name, '%type' => $type));
  640. return 0;
  641. }
  642. if (count($results) == 1) {
  643. $feature = $results[0];
  644. }
  645. // if the feature exists but this is an "insert only" method then skip this feature
  646. if ($feature and (strcmp($method, 'Insert only')==0)) {
  647. tripal_report_error('T_fasta_loader', TRIPAL_WARNING, "Feature already exists '%name' ('%uname') while matching on %type. Skipping insert.",
  648. array('%name' => $name, '%uname' => $uname, '%type' => drupal_strtolower($match_type)));
  649. return 0;
  650. }
  651. }
  652. // if we don't have a feature and we're doing an insert then do the insert
  653. $inserted = 0;
  654. if (!$feature and (strcmp($method, 'Insert only')==0 or strcmp($method, 'Insert and update')==0)) {
  655. // if we have a unique name but not a name then set them to be the same and vice versa
  656. if (!$uname) {
  657. $uname = $name;
  658. }
  659. elseif (!$name) {
  660. $name = $uname;
  661. }
  662. // insert the feature
  663. $values = array(
  664. 'organism_id' => $organism_id,
  665. 'name' => $name,
  666. 'uniquename' => $uname,
  667. 'residues' => $residues,
  668. 'seqlen' => drupal_strlen($residues),
  669. 'md5checksum' => md5($residues),
  670. 'type_id' => $cvterm->cvterm_id,
  671. 'is_analysis' => 'FALSE',
  672. 'is_obsolete' => 'FALSE',
  673. );
  674. $options = array('statement_name' => 'ins_feature_all');
  675. $success = chado_insert_record('feature', $values, $options);
  676. if (!$success) {
  677. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to insert feature '%name (%uname)'",
  678. array('%name' => $name, '%uname' => $numane));
  679. return 0;
  680. }
  681. // now get the feature we just inserted
  682. $values = array(
  683. 'organism_id' => $organism_id,
  684. 'uniquename' => $uname,
  685. 'type_id' => $cvterm->cvterm_id,
  686. );
  687. $options = array('statement_name' => 'sel_feature_oruqty');
  688. $results = chado_select_record('feature', array('feature_id'), $values, $options);
  689. if (count($results) == 1) {
  690. $inserted = 1;
  691. $feature = $results[0];
  692. }
  693. else {
  694. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to retreive newly inserted feature '%name (%uname)'",
  695. array('%name' => $name, '%uname' => $numane));
  696. return 0;
  697. }
  698. }
  699. // if we don't have a feature and the user wants to do an update then fail
  700. if (!$feature and (strcmp($method, 'Update only')==0 or drupal_strcmp($method, 'Insert and update')==0)) {
  701. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to find feature '%name' ('%uname') while matching on " .
  702. drupal_strtolower($match_type), array('%name' => $name, '%uname' => $uname));
  703. return 0;
  704. }
  705. // if we do have a feature and this is an update then proceed with the update
  706. if ($feature and !$inserted and (strcmp($method, 'Update only')==0 or strcmp($method, 'Insert and update')==0)) {
  707. // if the user wants to match on the Name field
  708. if (strcmp($match_type, 'Name')==0) {
  709. // if we're matching on the name but do not have a unique name then we don't want to update the uniquename.
  710. $values = array();
  711. if ($uname) {
  712. // first check to make sure that by changing the unique name of this feature that we won't conflict with
  713. // another existing feature of the same name
  714. $values = array(
  715. 'organism_id' => $organism_id,
  716. 'uniquename' => $uname,
  717. 'type_id' => $cvterm->cvterm_id,
  718. );
  719. $options = array('statement_name' => 'sel_feature_oruqty');
  720. $results = chado_select_record('feature', array('feature_id'), $values, $options);
  721. if (count($results) > 0) {
  722. tripal_report_error('T_fasta_loader', "Cannot update the feature '%name' with a uniquename of '%uname' and type of '%type' as it
  723. conflicts with an existing feature with the same uniquename and type.",
  724. array('%name' => $name, '%uname' => $uname, '%type' => $type));
  725. return 0;
  726. }
  727. // the changes to the uniquename don't conflict so proceed with the update
  728. $values = array(
  729. 'uniquename' => $uname,
  730. 'residues' => $residues,
  731. 'seqlen' => drupal_strlen($residues),
  732. 'md5checksum' => md5($residues),
  733. 'is_analysis' => 'false',
  734. 'is_obsolete' => 'false',
  735. );
  736. $match = array(
  737. 'name' => $name,
  738. 'organism_id' => $organism_id,
  739. 'type_id' => $cvterm->cvterm_id,
  740. );
  741. $options = array('statement_name' => 'upd_feature_resemdisis_naorty_un');
  742. }
  743. // if we do not have a new unique name then don't change the existing uniquename field
  744. else {
  745. $values = array(
  746. 'residues' => $residues,
  747. 'seqlen' => drupal_strlen($residues),
  748. 'md5checksum' => md5($residues),
  749. 'is_analysis' => 'false',
  750. 'is_obsolete' => 'false',
  751. );
  752. $match = array(
  753. 'name' => $name,
  754. 'organism_id' => $organism_id,
  755. 'type_id' => $cvterm->cvterm_id,
  756. );
  757. $options = array('statement_name' => 'upd_feature_unresemdisis_naorty');
  758. }
  759. // perform the update
  760. $success = chado_update_record('feature', $match, $values, $options);
  761. if (!$success) {
  762. tripal_report_error('T_fasta_loader', TRIPAL_ERROR,
  763. "Failed to update feature '%name' ('%name')",
  764. array('%name' => $name, '%uiname' => $uname));
  765. return 0;
  766. }
  767. }
  768. if (strcmp($match_type, 'Unique name')==0) {
  769. // if we're matching on the uniquename but do not have a new name then we don't want to update the name.
  770. $values = array();
  771. if ($name) {
  772. $values = array(
  773. 'name' => $name,
  774. 'residues' => $residues,
  775. 'seqlen' => drupal_strlen($residues),
  776. 'md5checksum' => md5($residues),
  777. 'is_analysis' => 'false',
  778. 'is_obsolete' => 'false',
  779. );
  780. $match = array(
  781. 'uniquename' => $uname,
  782. 'organism_id' => $organism_id,
  783. 'type_id' => $cvterm->cvterm_id,
  784. );
  785. $options = array('statement_name' => 'upd_feature_resemdisis_unorty_na');
  786. }
  787. // if we have a unique name then update it after matching by the name
  788. else {
  789. $values = array(
  790. 'residues' => $residues,
  791. 'seqlen' => drupal_strlen($residues),
  792. 'md5checksum' => md5($residues),
  793. 'is_analysis' => 'false',
  794. 'is_obsolete' => 'false',
  795. );
  796. $match = array(
  797. 'uniquename' => $uname,
  798. 'organism_id' => $organism_id,
  799. 'type_id' => $cvterm->cvterm_id,
  800. );
  801. $options = array('statement_name' => 'upd_feature_naresemdisis_unorty');
  802. }
  803. $success = chado_update_record('feature', $match, $values, $options);
  804. if (!$success) {
  805. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to update feature '%name' ('%name')",
  806. array('%name' => $name, '%uiname' => $uname));
  807. return 0;
  808. }
  809. }
  810. }
  811. // add in the analysis link
  812. if ($analysis_id) {
  813. // if the association doens't alredy exist then add one
  814. $values = array(
  815. 'analysis_id' => $analysis_id,
  816. 'feature_id' => $feature->feature_id,
  817. );
  818. $sel_options = array('statement_name' => 'sel_analysisfeature_anfe');
  819. $results = chado_select_record('analysisfeature', array('analysisfeature_id'), $values, $sel_options);
  820. if (count($results) == 0) {
  821. $ins_options = array('statement_name' => 'ins_analysisfeature_anfe');
  822. $success = chado_insert_record('analysisfeature', $values, $ins_options);
  823. if (!$success) {
  824. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to associate analysis and feature '%name' ('%name')",
  825. array('%name' => $name, '%uname' => $uname));
  826. return 0;
  827. }
  828. }
  829. }
  830. // now add the database cross reference
  831. if ($db_id) {
  832. // check to see if this accession reference exists, if not add it
  833. $values = array(
  834. 'db_id' => $db_id,
  835. 'accession' => $accession
  836. );
  837. $sel_options = array('statement_name' => 'sel_dbxref_dbac');
  838. $results = chado_select_record('dbxref', array('dbxref_id'), $values, $sel_options);
  839. // if the accession doesn't exist then add it
  840. if (count($results) == 0) {
  841. $ins_options = array('statement_name' => 'ins_dbxref_dbac');
  842. $results = chado_insert_record('dbxref', $values, $ins_options);
  843. if (!$results) {
  844. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to add database accession '%accession'",
  845. array('%accession' => $accession));
  846. return 0;
  847. }
  848. $results = chado_select_record('dbxref', array('dbxref_id'), $values, $sel_options);
  849. if (count($results) == 1) {
  850. $dbxref = $results[0];
  851. }
  852. else {
  853. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to retreive newly inserted dbxref '%name (%uname)'",
  854. array('%name' => $name, '%uname' => $numane));
  855. return 0;
  856. }
  857. }
  858. else {
  859. $dbxref = $results[0];
  860. }
  861. // check to see if the feature dbxref record exists if not, then add it
  862. $values = array(
  863. 'feature_id' => $feature->feature_id,
  864. 'dbxref_id' => $dbxref->dbxref_id
  865. );
  866. $sel_options = array('statement_name' => 'sel_featuredbxref_fedb');
  867. $results = chado_select_record('feature_dbxref', array('feature_dbxref_id'), $values, $sel_options);
  868. if (count($results) == 0) {
  869. $ins_options = array('statement_name' => 'ins_featuredbxref_fedb');
  870. $success = chado_insert_record('feature_dbxref', $values, $ins_options);
  871. if (!$success) {
  872. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to add associate database accession '%accession' with feature",
  873. array('%accession' => $accession));
  874. return 0;
  875. }
  876. }
  877. }
  878. // now add in the relationship if one exists. If not, then add it
  879. if ($rel_type) {
  880. $values = array(
  881. 'organism_id' => $organism_id,
  882. 'uniquename' => $parent,
  883. 'type_id' => $parentcvterm->cvterm_id,
  884. );
  885. $options = array('statement_name' => 'sel_feature_oruqty');
  886. $results = chado_select_record('feature', array('feature_id'), $values, $options);
  887. if (count($results) != 1) {
  888. tripal_report_error('T_fasta_loader', "Cannot find a unique fature for the parent '%parent' of type
  889. '%type' for the feature.", array('%parent' => $parent, '%type' => $parent_type));
  890. return 0;
  891. }
  892. $parent_feature = $results[0];
  893. // check to see if the relationship already exists if not then add it
  894. $values = array(
  895. 'subject_id' => $feature->feature_id,
  896. 'object_id' => $parent_feature->feature_id,
  897. 'type_id' => $relcvterm->cvterm_id,
  898. );
  899. $sel_options = array('statement_name' => 'sel_featurerelationship_suojty');
  900. $results = chado_select_record('feature_relationship', array('feature_relationship_id'), $values, $sel_options);
  901. if (count($results) == 0) {
  902. $ins_options = array('statement_name' => 'ins_featurerelationship_suojty');
  903. $success = chado_insert_record('feature_relationship', $values, $ins_options);
  904. if (!$success) {
  905. tripal_report_error('T_fasta_loader', TRIPAL_ERROR, "Failed to add associate database accession '%accession' with feature",
  906. array('%accession' => $accession));
  907. return 0;
  908. }
  909. }
  910. }
  911. }