GFF3ImporterTest.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849
  1. <?php
  2. namespace Tests;
  3. use StatonLab\TripalTestSuite\DBTransaction;
  4. use StatonLab\TripalTestSuite\TripalTestCase;
  5. class GFF3ImporterTest extends TripalTestCase {
  6. use DBTransaction;
  7. /**
  8. * Confirm basic GFF importer functionality.
  9. *
  10. * @group gff
  11. */
  12. public function testGFFImporter() {
  13. $gff_file = ['file_local' => __DIR__ . '/../data/small_gene.gff'];
  14. $fasta = ['file_local' => __DIR__ . '/../data/short_scaffold.fasta'];
  15. $analysis = factory('chado.analysis')->create();
  16. $organism = factory('chado.organism')->create();
  17. $run_args = [
  18. 'analysis_id' => $analysis->analysis_id,
  19. 'organism_id' => $organism->organism_id,
  20. 'use_transaction' => 1,
  21. 'add_only' => 0,
  22. 'update' => 1,
  23. 'create_organism' => 0,
  24. 'create_target' => 0,
  25. // regexps for mRNA and protein.
  26. 're_mrna' => NULL,
  27. 're_protein' => NULL,
  28. // optional
  29. 'target_organism_id' => NULL,
  30. 'target_type' => NULL,
  31. 'start_line' => NULL,
  32. 'landmark_type' => NULL,
  33. 'alt_id_attr' => NULL,
  34. ];
  35. $this->loadLandmarks($analysis, $organism, $fasta);
  36. $this->runGFFLoader($run_args, $gff_file);
  37. // This protein is an explicit protein / polypeptide imported from the GFF
  38. // file.
  39. $name = 'test_protein_001.1';
  40. $query = db_select('chado.feature', 'f')
  41. ->fields('f', ['uniquename'])
  42. ->condition('f.uniquename', $name)
  43. ->execute()
  44. ->fetchField();
  45. $this->assertEquals($name, $query);
  46. }
  47. /**
  48. * Run the GFF loader on gff_unescaped_ids.gff for testing.
  49. *
  50. * This tests whether the GFF loader detects invalid ID that contains
  51. * unescaped whitespaces. The GFF loader should throw an exception which this
  52. * unit test detects.
  53. */
  54. public function testGFFImporterUnescapedWhitespaceID() {
  55. $gff_file = ['file_local' => __DIR__ . '/../data/gff_unescaped_ids.gff'];
  56. $analysis = factory('chado.analysis')->create();
  57. $organism = factory('chado.organism')->create();
  58. $run_args = [
  59. 'analysis_id' => $analysis->analysis_id,
  60. 'organism_id' => $organism->organism_id,
  61. 'use_transaction' => 1,
  62. 'add_only' => 0,
  63. 'update' => 1,
  64. 'create_organism' => 0,
  65. 'create_target' => 0,
  66. // regexps for mRNA and protein.
  67. 're_mrna' => NULL,
  68. 're_protein' => NULL,
  69. // optional
  70. 'target_organism_id' => NULL,
  71. 'target_type' => NULL,
  72. 'start_line' => NULL,
  73. 'landmark_type' => NULL,
  74. 'alt_id_attr' => NULL,
  75. ];
  76. $hasException = false;
  77. try {
  78. $this->loadLandmarks($analysis, $organism);
  79. // This will produce an exception due to unescaped whitespace in ID
  80. $this->runGFFLoader($run_args, $gff_file);
  81. }
  82. catch(\Exception $ex) {
  83. $hasException = true;
  84. }
  85. // We expect an exception to happen so we are looking for a return of true
  86. $this->assertEquals($hasException, true);
  87. }
  88. /**
  89. * Run the GFF loader on gff_rightarrow_ids.gff for testing.
  90. *
  91. * This tests whether the GFF loader detects invalid ID that contains
  92. * beginning arrow >. The GFF loader should throw an exception which this
  93. * unit detects.
  94. */
  95. public function testGFFImporterRightArrowID() {
  96. $gff_file = ['file_local' => __DIR__ . '/../data/gff_rightarrow_id.gff'];
  97. $analysis = factory('chado.analysis')->create();
  98. $organism = factory('chado.organism')->create();
  99. $run_args = [
  100. 'analysis_id' => $analysis->analysis_id,
  101. 'organism_id' => $organism->organism_id,
  102. 'use_transaction' => 1,
  103. 'add_only' => 0,
  104. 'update' => 1,
  105. 'create_organism' => 0,
  106. 'create_target' => 0,
  107. // regexps for mRNA and protein.
  108. 're_mrna' => NULL,
  109. 're_protein' => NULL,
  110. // optional
  111. 'target_organism_id' => NULL,
  112. 'target_type' => NULL,
  113. 'start_line' => NULL,
  114. 'landmark_type' => NULL,
  115. 'alt_id_attr' => NULL,
  116. ];
  117. $hasException = false;
  118. try {
  119. $this->loadLandmarks($analysis, $organism);
  120. // This will produce an exception due to right arrow in ID
  121. $this->runGFFLoader($run_args, $gff_file);
  122. }
  123. catch(\Exception $ex) {
  124. $hasException = true;
  125. }
  126. // We expect an exception to happen so we are looking for a return of true
  127. $this->assertEquals($hasException, true);
  128. }
  129. /**
  130. * Run the GFF loader on gff_duplicate_ids.gff for testing.
  131. *
  132. * This tests whether the GFF loader detects duplicate IDs which makes a
  133. * GFF file invalid since IDs should be unique. The GFF loader should throw
  134. * and exception which this test checks for
  135. */
  136. public function testGFFImporterDuplicateIDsExceptionCheck() {
  137. $gff_file = ['file_local' => __DIR__ . '/../data/gff_duplicate_ids.gff'];
  138. $analysis = factory('chado.analysis')->create();
  139. $organism = factory('chado.organism')->create();
  140. $run_args = [
  141. 'analysis_id' => $analysis->analysis_id,
  142. 'organism_id' => $organism->organism_id,
  143. 'use_transaction' => 1,
  144. 'add_only' => 0,
  145. 'update' => 1,
  146. 'create_organism' => 0,
  147. 'create_target' => 0,
  148. // regexps for mRNA and protein.
  149. 're_mrna' => NULL,
  150. 're_protein' => NULL,
  151. // optional
  152. 'target_organism_id' => NULL,
  153. 'target_type' => NULL,
  154. 'start_line' => NULL,
  155. 'landmark_type' => NULL,
  156. 'alt_id_attr' => NULL,
  157. ];
  158. $hasException = false;
  159. try {
  160. $this->loadLandmarks($analysis, $organism);
  161. // This will produce an exception of duplicate feature ID
  162. $this->runGFFLoader($run_args, $gff_file);
  163. }
  164. catch(\Exception $ex) {
  165. $hasException = true;
  166. }
  167. // We expect an exception to happen so we are looking for a return of true
  168. $this->assertEquals($hasException, true);
  169. }
  170. /**
  171. * Run the GFF loader on gff_invalidstartend.gff for testing.
  172. *
  173. * This tests whether the GFF loader fixes start end values
  174. */
  175. public function testGFFImporterInvalidStartEnd() {
  176. $gff_file = ['file_local' => __DIR__ . '/../data/gff_invalidstartend.gff'];
  177. $analysis = factory('chado.analysis')->create();
  178. $organism = factory('chado.organism')->create();
  179. $run_args = [
  180. 'analysis_id' => $analysis->analysis_id,
  181. 'organism_id' => $organism->organism_id,
  182. 'use_transaction' => 1,
  183. 'add_only' => 0,
  184. 'update' => 1,
  185. 'create_organism' => 0,
  186. 'create_target' => 0,
  187. // regexps for mRNA and protein.
  188. 're_mrna' => NULL,
  189. 're_protein' => NULL,
  190. // optional
  191. 'target_organism_id' => NULL,
  192. 'target_type' => NULL,
  193. 'start_line' => NULL,
  194. 'landmark_type' => NULL,
  195. 'alt_id_attr' => NULL,
  196. ];
  197. $this->loadLandmarks($analysis, $organism);
  198. // This will produce an exception of duplicate feature ID
  199. $this->runGFFLoader($run_args, $gff_file);
  200. $results = db_select('chado.feature', 'f')
  201. ->fields('f', ['uniquename'])
  202. ->condition('f.uniquename', 'FRAEX38873_v2_000000010')
  203. ->execute()
  204. ->fetchAll();
  205. // We expect the feature to still be added to the database
  206. // since the GFF Loader caters for reversing backward numbers
  207. $this->assertEquals(count($results), 1);
  208. }
  209. /**
  210. * Run the GFF loader on gff_score.gff for testing.
  211. *
  212. * This tests whether the GFF loader interprets the score values
  213. */
  214. public function testGFFImporterScoreTest() {
  215. $gff_file = ['file_local' => __DIR__ . '/../data/gff_score.gff'];
  216. $analysis = factory('chado.analysis')->create();
  217. $organism = factory('chado.organism')->create();
  218. $run_args = [
  219. 'analysis_id' => $analysis->analysis_id,
  220. 'organism_id' => $organism->organism_id,
  221. 'use_transaction' => 1,
  222. 'add_only' => 0,
  223. 'update' => 1,
  224. 'create_organism' => 0,
  225. 'create_target' => 0,
  226. // regexps for mRNA and protein.
  227. 're_mrna' => NULL,
  228. 're_protein' => NULL,
  229. // optional
  230. 'target_organism_id' => NULL,
  231. 'target_type' => NULL,
  232. 'start_line' => NULL,
  233. 'landmark_type' => NULL,
  234. 'alt_id_attr' => NULL,
  235. ];
  236. $this->loadLandmarks($analysis, $organism);
  237. $this->runGFFLoader($run_args, $gff_file);
  238. // Test that integer values get placed in the db
  239. $results = db_query('SELECT * FROM chado.analysisfeature WHERE significance = 2 LIMIT 1', array(
  240. ));
  241. foreach ($results as $row){
  242. $this->assertEquals($row->significance,2);
  243. }
  244. // Test that decimal/float values get placed in the db
  245. $results = db_query('SELECT * FROM chado.analysisfeature WHERE significance = 2.5 LIMIT 1', array(
  246. ));
  247. foreach ($results as $row){
  248. $this->assertEquals($row->significance,2.5);
  249. }
  250. // Test that negative score values get placed in the db
  251. $results = db_query('SELECT * FROM chado.analysisfeature WHERE significance = -2.5 LIMIT 1', array(
  252. ));
  253. foreach ($results as $row){
  254. $this->assertEquals($row->significance,-2.5);
  255. }
  256. }
  257. /**
  258. * Run the GFF loader on small_gene.gff for testing.
  259. *
  260. * This gff has many attributes that we would like to test in the
  261. * testGFFImporterAttribute*() methods.
  262. */
  263. private function initGFFImporterAttributes() {
  264. $gff = ['file_local' => __DIR__ . '/../data/small_gene.gff'];
  265. $fasta = ['file_local' => __DIR__ . '/../data/short_scaffold.fasta'];
  266. $analysis = factory('chado.analysis')->create();
  267. $organism = factory('chado.organism')->create();
  268. $run_args = [
  269. 'analysis_id' => $analysis->analysis_id,
  270. 'organism_id' => $organism->organism_id,
  271. 'use_transaction' => 1,
  272. 'add_only' => 0,
  273. 'update' => 1,
  274. 'create_organism' => 0,
  275. 'create_target' => 0,
  276. ///regexps for mRNA and protein.
  277. 're_mrna' => NULL,
  278. 're_protein' => NULL,
  279. //optional
  280. 'target_organism_id' => $organism->organism_id,
  281. 'target_type' => NULL,
  282. 'start_line' => NULL,
  283. 'landmark_type' => NULL,
  284. 'alt_id_attr' => NULL,
  285. ];
  286. $this->loadLandmarks($analysis, $organism, $fasta);
  287. $this->runGFFLoader($run_args, $gff);
  288. $this->organism = $organism;
  289. $this->analysis = $analysis;
  290. $this->gene_cvt = chado_get_cvterm(array(
  291. 'name' => 'gene',
  292. 'cv_id' => array(
  293. 'name' => 'sequence',
  294. ),
  295. ))->cvterm_id;
  296. $this->mrna_cvt = chado_get_cvterm(array(
  297. 'name' => 'mRNA',
  298. 'cv_id' => array(
  299. 'name' => 'sequence',
  300. ),
  301. ))->cvterm_id;
  302. $this->supercontig_cvt = chado_get_cvterm(array(
  303. 'name' => 'supercontig',
  304. 'cv_id' => array(
  305. 'name' => 'sequence',
  306. ),
  307. ))->cvterm_id;
  308. $this->gene_1_uname = 'test_gene_001';
  309. $this->gene_2_uname = 'test_gene_002';
  310. $this->scaffold_1_uname = 'scaffold1';
  311. }
  312. /**
  313. * Ensures that the feature record is loaded correctly into chado.
  314. *
  315. * @group gff
  316. */
  317. public function testGFFImporterAttributeFeature() {
  318. $this->initGFFImporterAttributes();
  319. $organism = $this->organism;
  320. $query = db_select('chado.feature', 'f')
  321. ->fields('f')
  322. ->condition('uniquename', $this->gene_1_uname)
  323. ->condition('type_id', $this->gene_cvt)
  324. ->execute();
  325. $gene_1 = $query->fetchObject();
  326. $this->assertEquals('test_gene_001', $gene_1->uniquename);
  327. $this->assertEquals('test_gene_001', $gene_1->name);
  328. $this->assertEquals($organism->organism_id, $gene_1->organism_id);
  329. $this->assertEquals($this->gene_cvt, $gene_1->type_id);
  330. }
  331. /**
  332. * Ensures the feature alias is loaded correctly into chado.
  333. *
  334. * @group gff
  335. */
  336. public function testGFFImporterAttributeAlias() {
  337. $this->initGFFImporterAttributes();
  338. $alias = 'first_test_gene';
  339. $gene_1 = db_select('chado.feature', 'f')
  340. ->fields('f')
  341. ->condition('uniquename', $this->gene_1_uname)
  342. ->condition('type_id', $this->gene_cvt)
  343. ->execute()->fetchObject();
  344. $query = db_select('chado.feature_synonym', 'fs');
  345. $query->join('chado.synonym', 's', 's.synonym_id = fs.synonym_id');
  346. $query->fields('s');
  347. $query->condition('fs.feature_id', $gene_1->feature_id);
  348. $query = $query->execute();
  349. $result = $query->fetchObject();
  350. $this->assertEquals($alias, $result->name);
  351. }
  352. /**
  353. * Ensures that the dbxref records are loaded correctly into chado.
  354. *
  355. * @group gff
  356. */
  357. public function testGFFImporterAttributeDbxref() {
  358. $this->initGFFImporterAttributes();
  359. $test_db_name = 'TEST_DB';
  360. $dbx_accession = 'test_gene_dbx_001';
  361. $test_db = chado_get_db(array('name' => $test_db_name));
  362. $gff_db = chado_get_db(array('name' => 'GFF_source'));
  363. $gene_1 = db_select('chado.feature', 'f')
  364. ->fields('f')
  365. ->condition('uniquename', $this->gene_1_uname)
  366. ->condition('type_id', $this->gene_cvt)
  367. ->execute()->fetchObject();
  368. $dbx_query = db_select('chado.feature_dbxref', 'fdbx');
  369. $dbx_query->join('chado.dbxref', 'dbx', 'dbx.dbxref_id = fdbx.dbxref_id');
  370. $dbx_query->fields('dbx');
  371. $dbx_query->condition('fdbx.feature_id', $gene_1->feature_id);
  372. $gff_query = clone $dbx_query;
  373. $dbx_query->condition('dbx.db_id', $test_db->db_id);
  374. $dbx_query = $dbx_query->execute();
  375. $gff_query->condition('dbx.db_id', $gff_db->db_id);
  376. $gff_query = $gff_query->execute();
  377. $dbxref = $dbx_query->fetchObject();
  378. $gff_dbxref = $gff_query->fetchObject();
  379. $this->assertEquals($dbx_accession, $dbxref->accession);
  380. $this->assertEquals($this->gene_1_uname, $gff_dbxref->accession);
  381. }
  382. /**
  383. * Ensures ontology term records loaded correctly into chado.
  384. *
  385. * @group gff
  386. */
  387. public function testGFFImporterAttributeOntology() {
  388. $this->initGFFImporterAttributes();
  389. $ontology_db = 'SO';
  390. $ontology_accession = '0000704';
  391. $gene_1 = db_select('chado.feature', 'f')
  392. ->fields('f')
  393. ->condition('uniquename', $this->gene_1_uname)
  394. ->condition('type_id', $this->gene_cvt)
  395. ->execute()->fetchObject();
  396. $term = chado_get_cvterm(array(
  397. 'dbxref_id' => array(
  398. 'accession' => $ontology_accession,
  399. 'db_id' => array(
  400. 'name' => $ontology_db,
  401. ),
  402. ),
  403. ));
  404. $feature_cvt = db_select('chado.feature_cvterm', 'fcvt')
  405. ->fields('fcvt')
  406. ->condition('cvterm_id', $term->cvterm_id)
  407. ->condition('feature_id', $gene_1->feature_id)
  408. ->execute();
  409. $this->assertEquals(1, $feature_cvt->rowCount());
  410. }
  411. /**
  412. * Ensures feature parent record loaded correctly into chado.
  413. *
  414. * @group gff
  415. */
  416. public function testGFFImporterAttributeParent() {
  417. $this->initGFFImporterAttributes();
  418. $mrna_uname = 'test_mrna_001.1';
  419. $rel_cvt = chado_get_cvterm(array(
  420. 'name' => 'part_of',
  421. 'cv_id' => array(
  422. 'name' => 'sequence',
  423. ),
  424. ))->cvterm_id;
  425. $mrna = db_select('chado.feature', 'f')
  426. ->fields('f')
  427. ->condition('uniquename', $mrna_uname)
  428. ->condition('type_id', $this->mrna_cvt)
  429. ->execute()->fetchObject();
  430. $query = db_select('chado.feature_relationship', 'fr');
  431. $query->join('chado.feature', 'f', 'f.feature_id = fr.object_id');
  432. $query->fields('f');
  433. $query->condition('fr.subject_id', $mrna->feature_id);
  434. $query->condition('fr.type_id', $rel_cvt);
  435. $query = $query->execute();
  436. $parent = $query->fetchObject();
  437. $this->assertEquals('test_gene_001', $parent->uniquename);
  438. $this->assertEquals('test_gene_001', $parent->name);
  439. $this->assertEquals($this->gene_cvt, $parent->type_id);
  440. $this->assertEquals($this->organism->organism_id, $parent->organism_id);
  441. }
  442. /**
  443. * Ensure target record loaded correctly into chado.
  444. *
  445. * @group gff
  446. */
  447. public function testGFFImporterAttributeTarget() {
  448. $this->initGFFImporterAttributes();
  449. $target_feature = 'scaffold1';
  450. $start = 99;
  451. $end = 200;
  452. $target_type = 'supercontig';
  453. $target_cvt = chado_get_cvterm(array(
  454. 'name' => $target_type,
  455. 'cv_id' => array(
  456. 'name' => 'sequence',
  457. ),
  458. ))->cvterm_id;
  459. $source_feature = db_select('chado.feature', 'f')
  460. ->fields('f')
  461. ->condition('uniquename', $target_feature)
  462. ->condition('type_id', $target_cvt)
  463. ->execute()->fetchObject();
  464. $gene_1 = db_select('chado.feature', 'f')
  465. ->fields('f')
  466. ->condition('uniquename', $this->gene_1_uname)
  467. ->condition('type_id', $this->gene_cvt)
  468. ->execute()->fetchObject();
  469. $featureloc = db_select('chado.featureloc', 'fl')
  470. ->fields('fl')
  471. ->condition('fl.feature_id', $gene_1->feature_id)
  472. ->condition('fl.srcfeature_id', $source_feature->feature_id)
  473. ->execute()->fetchObject();
  474. $this->assertEquals($start, $featureloc->fmin);
  475. $this->assertEquals($end, $featureloc->fmax);
  476. }
  477. /**
  478. * Ensure properties loaded correctly into chado.
  479. *
  480. * @group gff
  481. */
  482. public function testGFFImporterAttributeProperty() {
  483. $this->initGFFImporterAttributes();
  484. $gap_1 = 'test_gap_1';
  485. $gap_2 = 'test_gap_2';
  486. $note_val = 'test_gene_001_note';
  487. $gene_1 = db_select('chado.feature', 'f')
  488. ->fields('f')
  489. ->condition('uniquename', $this->gene_1_uname)
  490. ->condition('type_id', $this->gene_cvt)
  491. ->execute()->fetchObject();
  492. $gap_cvt = chado_get_cvterm(array(
  493. 'name' => 'Gap',
  494. 'cv_id' => array(
  495. 'name' => 'feature_property',
  496. ),
  497. ))->cvterm_id;
  498. $note_cvt = chado_get_cvterm(array(
  499. 'name' => 'Note',
  500. 'cv_id' => array(
  501. 'name' => 'feature_property',
  502. ),
  503. ))->cvterm_id;
  504. // Assert gaps loaded correctly
  505. $gaps_query = db_select('chado.featureprop', 'fp')
  506. ->fields('fp')
  507. ->condition('feature_id', $gene_1->feature_id)
  508. ->condition('type_id', $gap_cvt)
  509. ->execute();
  510. while (($gap = $gaps_query->fetchObject())) {
  511. $gaps[$gap->value] = $gap;
  512. }
  513. $this->assertEquals($gap_1, $gaps[$gap_1]->value);
  514. $this->assertEquals(0, $gaps[$gap_1]->rank);
  515. // Assert note loaded correctly
  516. $note = db_select('chado.featureprop', 'fp')
  517. ->fields('fp')
  518. ->condition('feature_id', $gene_1->feature_id)
  519. ->condition('type_id', $note_cvt)
  520. ->execute()->fetchObject();
  521. $this->assertEquals($note_val, $note->value);
  522. $this->assertEquals(0, $note->rank);
  523. }
  524. /**
  525. * Ensure derives from information loaded correctly into chado.
  526. *
  527. * @group gff
  528. */
  529. public function testGFFImporterAttributeDerivesFrom() {
  530. $this->initGFFImporterAttributes();
  531. $gene_2 = db_select('chado.feature', 'f')
  532. ->fields('f')
  533. ->condition('uniquename', $this->gene_2_uname)
  534. ->condition('type_id', $this->gene_cvt)
  535. ->execute()->fetchObject();
  536. $derivesfrom_cvt = chado_get_cvterm(array(
  537. 'name' => 'derives_from',
  538. 'cv_id' => array(
  539. 'name' => 'sequence',
  540. ),
  541. ))->cvterm_id;
  542. $query = db_select('chado.feature', 'f');
  543. $query->join('chado.feature_relationship', 'fr', 'f.feature_id = fr.object_id');
  544. $query->fields('f');
  545. $query->condition('fr.subject_id', $gene_2->feature_id);
  546. $query->condition('fr.type_id', $derivesfrom_cvt);
  547. $query = $query->execute();
  548. $derivesfrom_feature = $query->fetchObject();
  549. $this->assertEquals($this->gene_1_uname, $derivesfrom_feature->uniquename);
  550. $this->assertEquals($this->gene_1_uname, $derivesfrom_feature->name);
  551. $this->assertEquals($this->gene_cvt, $derivesfrom_feature->type_id);
  552. }
  553. /**
  554. * Ensure FASTA information loaded correctly into chado.
  555. *
  556. * @group gff
  557. */
  558. public function testGFFImporterAttributeFastas() {
  559. $this->initGFFImporterAttributes();
  560. $scaffold = db_select('chado.feature', 'f')
  561. ->fields('f')
  562. ->condition('uniquename', $this->scaffold_1_uname)
  563. ->condition('type_id', $this->supercontig_cvt)
  564. ->execute()->fetchObject();
  565. $this->assertEquals(720, $scaffold->seqlen);
  566. $this->assertEquals(720, strlen($scaffold->residues));
  567. $this->assertEquals('83578d8afdaec399c682aa6c0ddd29c9', $scaffold->md5checksum);
  568. }
  569. /**
  570. * Test that when checked, explicit proteins are created when specified within
  571. * the GFF file. Explicit proteins will not respect the skip_protein argument
  572. * and will therefore be added to the database.
  573. *
  574. * @group gff
  575. * @ticket 77
  576. *
  577. */
  578. public function testGFFPolypeptide() {
  579. $gff_file = ['file_local' => __DIR__ . '/../data/simpleGFF.gff'];
  580. $analysis = factory('chado.analysis')->create();
  581. $organism = factory('chado.organism')->create();
  582. $run_args = [
  583. // The new argument
  584. 'skip_protein' => 1,
  585. 'analysis_id' => $analysis->analysis_id,
  586. 'organism_id' => $organism->organism_id,
  587. 'use_transaction' => 1,
  588. 'add_only' => 0,
  589. 'update' => 1,
  590. 'create_organism' => 0,
  591. 'create_target' => 0,
  592. // regexps for mRNA and protein.
  593. 're_mrna' => NULL,
  594. 're_protein' => NULL,
  595. // optional
  596. 'target_organism_id' => NULL,
  597. 'target_type' => NULL,
  598. 'start_line' => NULL,
  599. 'landmark_type' => NULL,
  600. 'alt_id_attr' => NULL,
  601. ];
  602. $this->loadLandmarks($analysis, $organism);
  603. $this->runGFFLoader($run_args, $gff_file);
  604. $identifier = [
  605. 'cv_id' => ['name' => 'sequence'],
  606. 'name' => 'polypeptide',
  607. ];
  608. $protein_type_id = tripal_get_cvterm($identifier);
  609. $name = 'FRAEX38873_v2_000000010.1.3_test_protein';
  610. $query = db_select('chado.feature', 'f')
  611. ->fields('f', ['uniquename'])
  612. ->condition('f.uniquename', $name)
  613. ->condition('f.type_id', $protein_type_id->cvterm_id)
  614. ->execute()
  615. ->fetchAll();
  616. $this->assertEquals(1, count($query));
  617. }
  618. /**
  619. * Add a skip protein option. Test that when checked, implicit proteins are
  620. * not created, but that they are created when unchecked.
  621. *
  622. * @group gff
  623. * @ticket 77
  624. *
  625. */
  626. public function testGFFNoProteinOption() {
  627. $gff_file = ['file_local' => __DIR__ . '/../data/gff_protein_generation.gff'];
  628. $analysis = factory('chado.analysis')->create();
  629. $organism = factory('chado.organism')->create();
  630. $run_args = [
  631. //Skip protein feature generation
  632. 'skip_protein' => 1,
  633. 'analysis_id' => $analysis->analysis_id,
  634. 'organism_id' => $organism->organism_id,
  635. 'use_transaction' => 1,
  636. 'add_only' => 0,
  637. 'update' => 1,
  638. 'create_organism' => 0,
  639. 'create_target' => 0,
  640. ///regexps for mRNA and protein.
  641. 're_mrna' => NULL,
  642. 're_protein' => NULL,
  643. //optional
  644. 'target_organism_id' => NULL,
  645. 'target_type' => NULL,
  646. 'start_line' => NULL,
  647. 'landmark_type' => NULL,
  648. 'alt_id_attr' => NULL,
  649. ];
  650. $this->loadLandmarks($analysis, $organism);
  651. $this->runGFFLoader($run_args, $gff_file);
  652. $identifier = [
  653. 'cv_id' => ['name' => 'sequence'],
  654. 'name' => 'polypeptide',
  655. ];
  656. $protein_type_id = tripal_get_cvterm($identifier);
  657. $name = "FRAEX38873_v2_000000190.1-protein";
  658. $results = db_select('chado.feature', 'f')
  659. ->fields('f', ['uniquename'])
  660. ->condition('f.uniquename', $name)
  661. ->condition('f.type_id', $protein_type_id->cvterm_id)
  662. ->execute()
  663. ->fetchAll();
  664. // There should be no proteins since we used the skip_proteins flag and no
  665. // explicit proteins were specified in the test file
  666. $this->assertEquals(0, count($results));
  667. // Now perform a unit test where we do not skip proteins generation
  668. $run_args['skip_protein'] = 0;
  669. $this->runGFFLoader($run_args, $gff_file);
  670. $query = db_select('chado.feature', 'f')
  671. ->fields('f', ['uniquename'])
  672. ->condition('f.uniquename', $name)
  673. ->condition('f.type_id', $protein_type_id->cvterm_id)
  674. ->execute()
  675. ->fetchObject();
  676. $this->assertEquals($name, $query->uniquename);
  677. }
  678. /**
  679. * The GFF importer should still create explicitly defined proteins if
  680. * skip_protein is true.
  681. *
  682. * @group gff
  683. * @ticket 77
  684. */
  685. public function testGFFImporterLoadsExplicitProteins() {
  686. $gff_file = ['file_local' => __DIR__ . '/../data/simpleGFF.gff'];
  687. $analysis = factory('chado.analysis')->create();
  688. $organism = factory('chado.organism')->create();
  689. $run_args = [
  690. //The new argument
  691. 'skip_protein' => 1,
  692. ///
  693. 'analysis_id' => $analysis->analysis_id,
  694. 'organism_id' => $organism->organism_id,
  695. 'use_transaction' => 1,
  696. 'add_only' => 0,
  697. 'update' => 1,
  698. 'create_organism' => 0,
  699. 'create_target' => 0,
  700. ///regexps for mRNA and protein.
  701. 're_mrna' => NULL,
  702. 're_protein' => NULL,
  703. //optional
  704. 'target_organism_id' => NULL,
  705. 'target_type' => NULL,
  706. 'start_line' => NULL,
  707. 'landmark_type' => NULL,
  708. 'alt_id_attr' => NULL,
  709. ];
  710. $this->loadLandmarks($analysis, $organism);
  711. $this->runGFFLoader($run_args, $gff_file);
  712. $name = 'FRAEX38873_v2_000000010.1.3_test_protein';
  713. $query = db_select('chado.feature', 'f')
  714. ->fields('f', ['uniquename'])
  715. ->condition('f.uniquename', $name)
  716. ->execute()
  717. ->fetchField();
  718. $this->assertEquals($name, $query);
  719. }
  720. private function runGFFLoader($run_args, $file) {
  721. // silent(function ($run_args, $file) {
  722. module_load_include('inc', 'tripal_chado', 'includes/TripalImporter/GFF3Importer');
  723. $importer = new \GFF3Importer();
  724. $importer->create($run_args, $file);
  725. $importer->prepareFiles();
  726. $importer->run();
  727. // });
  728. }
  729. private function loadLandmarks($analysis, $organism, $landmark_file = array()) {
  730. if (empty($landmark_file)) {
  731. $landmark_file = ['file_local' => __DIR__ . '/../data/empty_landmarks.fasta'];
  732. }
  733. $run_args = [
  734. 'organism_id' => $organism->organism_id,
  735. 'analysis_id' => $analysis->analysis_id,
  736. 'seqtype' => 'supercontig',
  737. 'method' => 2, //default insert and update
  738. 'match_type' => 1, //unique name default
  739. //optional
  740. 're_name' => NULL,
  741. 're_uname' => NULL,
  742. 're_accession' => NULL,
  743. 'db_id' => NULL,
  744. 'rel_type' => NULL,
  745. 're_subject' => NULL,
  746. 'parent_type' => NULL,
  747. ];
  748. module_load_include('inc', 'tripal_chado', 'includes/TripalImporter/FASTAImporter');
  749. //silent(function ($run_args, $landmark_file) {
  750. $importer = new \FASTAImporter();
  751. $importer->create($run_args, $landmark_file);
  752. $importer->prepareFiles();
  753. $importer->run();
  754. // });
  755. }
  756. }