Guest User

Untitled

a guest
Jun 19th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. mysql> select f.feature_id, f.uniquename, a.uniquename, fl.fmin, fl.fmax, fp.value from featureprop fp, cvterm cfp, cvterm ca, cvterm cf, featureloc fl, feature f, feature a where a.feature_id = fl.srcfeature_id and fl.feature_id = f.feature_id and ca.name = 'assembly' and ca.cvterm_id = a.type_id and cf.name = 'tRNA' and cf.cvterm_id = f.type_id and fp.type_id = cfp.cvterm_id and cfp.name = 'gene_product_name' and fp.feature_id = f.feature_id limit 2;
  2. +------------+-----------------------+-----------------+---------+---------+----------+
  3. | feature_id | uniquename | uniquename | fmin | fmax | value |
  4. +------------+-----------------------+-----------------+---------+---------+----------+
  5. | 15010 | cgsp.tRNA.141873552.1 | cgsp.assembly.1 | 1245540 | 1245627 | tRNA-Leu |
  6. | 29056 | cgsp.tRNA.141873840.1 | cgsp.assembly.1 | 2687481 | 2687558 | tRNA-Asp |
  7. +------------+-----------------------+-----------------+---------+---------+----------+
  8. 2 rows in set (0.03 sec)
Add Comment
Please, Sign In to add comment