This is a test version of Biostars. For the public version, visit https://www.biostars.org.
download KEGG genes sequence in fasta format

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

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")

0 answers

No answers yet.

Log in to answer this question.