Description Usage Arguments Details Value Author(s) References See Also Examples
Retrieve Protein Sequence in various Formats from Databases(BMgetDrug)
Retrieve Protein Sequence (FASTA Format) from the UniProt Database(BMgetProt...UinProt)
Retrieve Protein Sequence (FASTA Format) from the KEGG Database(BMgetProt...KEGG)
Retrieve Protein Sequence (PDB Format) from RCSB PDB(BMgetProt...RCSBPDB)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | BMgetProt(id, from = c("uniprot", "kegg", "pdb"), type = c("fasta",
"pdb", "aaseq"), parallel = 5)
BMgetProtFASTAUinProt(id, parallel = 5)
BMgetProtSeqUniProt(id, parallel = 5)
BMgetProtFASTAKEGG(id, parallel = 5)
BMgetProtSeqKEGG(id, parallel = 5)
BMgetProtPDBRCSBPDB(id, parallel = 5)
BMgetProtSeqRCSBPDB(id, parallel = 5)
|
id |
A character vector, as the protein ID(s). |
from |
The database, one of |
type |
The returned protein format, one of |
parallel |
An integer, the parallel parameter, indicates how many
process the user would like to use for retrieving
the data (using RCurl), default is |
This function retrieves protein sequence in various formats from three databases.
This function retrieves protein sequences (FASTA format) from the UniProt database.
This function retrieves protein sequences (FASTA format) from the KEGG database.
This function retrieves protein sequences (PDB format) from RCSB PDB.
A length of id
character list, each element
containing the corresponding protein sequence(s) or file(s).
Min-feng Zhu <wind2zhu@163.com>, Nan Xiao <http://r2s.name>
UniProt. https://www.uniprot.org/
UniProt REST API Documentation. https://www.uniprot.org/faq/28
UniProt. https://www.uniprot.org/
UniProt REST API Documentation. https://www.uniprot.org/faq/28
See BMgetDrug
for retrieving drug molecules
from five databases.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # BMgetProt
id = c('P00750', 'P00751', 'P00752')
BMgetProt(id, from = 'uniprot', type = 'aaseq')
# BMgetProtFASTAUinProt
id = c('P00750', 'P00751', 'P00752')
BMgetProtFASTAUinProt(id)
# BMgetProtSeqUniProt
id = c('P00750', 'P00751', 'P00752')
BMgetProtSeqUniProt(id)
# BMgetProtFASTAKEGG
id = c('hsa:10161', 'hsa:10162')
BMgetProtFASTAKEGG(id)
# BMgetProtSeqKEG
id = c('hsa:10161', 'hsa:10162')
BMgetProtSeqKEGG(id)
# BMgetProtPDBRCSBPDB
id = c('4HHB', '4FF9')
BMgetProtPDBRCSBPDB(id)
# BMgetProtSeqRCSBPDB
id = c('4HHB', '4FF9')
BMgetProtSeqRCSBPDB(id)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.