I just tried the Prokaryotic Demos, but I can't seem to find a simple search function to search for a particular gene name. Is there such function availabe?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Not really. I'll try and get something together for a future release. In the meantime, you can do a "CUSTOM QUERY" from the Annotation Tools page that will allow you to get a gene name you're interested in.
Try this query:
select i.feat_name, i.com_name from ident i, asm_feature a, stan s where i.com_name like "%ATP%" and i.feat_name = a.feat_name and a.asmbl_id = s.asmbl_id and s.iscurrent = 1
You can replace "ATP" with your gene name and the query will return the gene id and gene name of all the genes with that keyword.
thanks,
todd
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi admin
I just tried the Prokaryotic Demos, but I can't seem to find a simple search function to search for a particular gene name. Is there such function availabe?
Not really. I'll try and get something together for a future release. In the meantime, you can do a "CUSTOM QUERY" from the Annotation Tools page that will allow you to get a gene name you're interested in.
Try this query:
select i.feat_name, i.com_name from ident i, asm_feature a, stan s where i.com_name like "%ATP%" and i.feat_name = a.feat_name and a.asmbl_id = s.asmbl_id and s.iscurrent = 1
You can replace "ATP" with your gene name and the query will return the gene id and gene name of all the genes with that keyword.
thanks,
todd