Collections:
$3Dmol.download('cid:...', ...) - Download CID Molecule
How to download molecule by CID with the $3Dmol.download() method?
✍: FYIcenter.com
The syntax to download molecule by CID with the $3Dmol.download() method
is shown below:
$3Dmol.download("cid:{CID}", viewer, options, callback) -> {$3Dmol.GLModel}
viewer - The $3Dmol.GLViewer instance where the downloaded protein is added
options - Options applied to the downloaded data
callback - Function to call after data is loaded with model as argument
Here is an HTML code example, Download-PDB.html, that uses the download() method to download a protein with a given CID number.
<html><head>
<script src="/3Dmol-min.js"></script>
</head>
<body>
<div id="viewer" style="width: 400px; height: 400px; position: relative;"></div>
<script>
let config = { backgroundColor: 'grey' };
let viewer = $3Dmol.createViewer( $('#viewer'), config );
$3Dmol.download('cid:2719', viewer, {}, function(m) {
m.setStyle({'stick':{}});
viewer.render();
});
</script>
</body></html>
This example HTML code will display the 3-D molecule structure of Chloroquine in stick style:
Note that the molecule structure data is downloaded with the following PubMed API:
https://pubchem.ncbi.nlm.nih.gov/rest/pug/compound/cid/{CID}/SDF?record_type=3d
⇒ GLViewer Class and Instance Methods
⇐ $3Dmol.download('pdb:...', ...) - Download PDB Protein
⇑⇑ 3Dmol.js FAQ
2023-01-11, 1377🔥, 0💬
Popular Posts:
Molecule Summary: ID: FYI-1004720 Names: InChIKey: CWUPWQLKYNCKBJ-UHFFFAOYS A-MSMILES: CCC[Sn](F)(CC...
Molecule Summary: ID: FYI-1000341 SMILES: CC1=C(C=C(C=C1)N)C(=O)N[ C@H](C)C2=CC=CC3=CC=CC=C 32Receive...
Molecule Summary: ID: FYI-1004371 Names: InChIKey: NNBZCPXTIHJBJL-UHFFFAOYS A-NSMILES: C2CCC1CCCCC1C...
Molecule Summary: ID: FYI-1001811 SMILES: CC(C)(C1=CC=CC=C1)C2=CC( =C(C(=C2)N3N=C4C=CC=CC4= N3)O)C(C)(...
Molecule Summary: ID: FYI-1003458 Names: InChIKey: XRPUJSGGRFQZPJ-UHFFFAOYS A-NSMILES: CCCC(C(=O)O)c...