Thank you for your reply!
multi species_gene name to description
Dear colleagues,
I have a large set of gene names that belong to the "multiple species". I am wondering if you are aware of any pipeline that can print the description of the genes based on their names? To the best of my knowledge, the majority of the pipeline mentioned on the community require the explicit selection of the "reference species" and mainly perform enrichment analysis. The question in my case is only the description.
Example toy data look like:
EF1A_CHICK, PPN_DROME, RL8_DANRE
Thanks in advance
• 1,585 views
•
link
2 answers
Using EntrezDirect:
$ more test
EF1A_CHICK
PPN_DROME
RL8_DANRE
$ for i in `cat test`; do printf ${i}"\t"; esearch -db protein -query ${i} | esummary | xtract -pattern DocumentSummary -element Title; done
EF1A_CHICK RecName: Full=Elongation factor 1-alpha 1; Short=EF-1-alpha-1; AltName: Full=Elongation factor Tu; Short=EF-Tu
PPN_DROME RecName: Full=Papilin; Flags: Precursor
RL8_DANRE RecName: Full=60S ribosomal protein L8
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.