download KEGG genes sequence in fasta format
0
1
Entering edit mode
6.6 years ago

Is there any tool or script or package to download the KEGG gene sequence in fasta format by KO ids? I have list of KO's.

kegg genome gene sequence • 2.8k views
ADD COMMENT
0
Entering edit mode

It would help if you post some example KOs here. Use keggrest and user manual here. Sequence object is biostrings. You can write them to hdd in fasta format using biostrings package (writeXStringSet function). Try below example code and example kegg IDs are taken from manual::

library(KEGGREST)
test.seq=keggGet(c("hsa:10458", "ece:Z5100"), "ntseq")
library(Biostrings)
writeXStringSet(test.seq,"temp.fa", format = "fasta")
ADD REPLY

Login before adding your answer.

Traffic: 1960 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6