Description Usage Arguments Value Author(s) Examples
we acquire information of PDB_ID in virtue of the api of EMBL protein(https://www.ebi.ac.uk/proteins/api/proteins/),you just need to input a vector of genelist in your hand.
1 2 3 4 5 6 |
genelist |
a vector of gene(s) |
show.length |
determines whether the length is displayed,default FALSE |
id.fromType |
input id type(must be same as type of input genelist), we set 4 frequently-used types here, which are "hgnc_symbol","entrezgene_id","ensembl_gene_id","uniprot_gn_id" |
id.biomart |
biomart types when id needs to be translated,
see also |
id.dataset |
biomart dataset choose,
see also |
id.toType |
output id type |
properties of PDB_ID,such as method of Protein crystal analysis, resolution,chains,structure length
Ji Yang
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #input type is "hgnc_symbol":
PDBinfGet(genelist = vertex_sample[1:5,1],
show.length = FALSE,
id.fromType = "hgnc_symbol",
id.biomart = ENSEMBL_MART_ENSEMBL,
id.dataset = "hsapiens_gene_ensembl",
id.toType = "uniprot_gn_id")
#input type is "uniprot_gn_id":
PDBinfGet(genelist = "P21580",
show.length = FALSE,
id.fromType = "uniprot_gn_id",
id.biomart = ENSEMBL_MART_ENSEMBL,
id.dataset = "hsapiens_gene_ensembl",
id.toType = "uniprot_gn_id")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.