tripal_feature.fasta_loader.inc 39 KB

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