MMJSON (.json)
背景
-
- 3D molecular model file.
- Used in cheminformatics applications and on the web for storing and exchanging molecule models.
- Used by the Protein Data Bank Japan as an alternative to the PDB format.
- Derived from the JSON file format.
- Plain text format.
- Stores structure information for large biological molecules such as proteins and nucleic acids.
Import & Export
- Import["file.json","MMJSON"] reads an mmJSON file and returns a symbolic representation of a biomolecule.
- The Wolfram Language provides a variety of 3D rendering styles for macromolecules.
- Export["file.json",{biomol,"MMJSON"}] creates an mmJSON file from a biomolecule.
- Import["file.json","MMJSON"] returns a BioMolecule object.
- Import["file.json",{"MMJSON",elem}] imports the specified element from an mmJSON file.
- Import["file.json",{"MMJSON",elem,suba,subb,…}] imports a subelement.
- Import["file.json",{"MMJSON"{elem1,elem2,…}}] imports multiple elements.
- Export["file.json",biomol] exports the BioMolecule biomol.
- See the following reference pages for full general information:
-
Import, Export import from or export to a file CloudImport, CloudExport import from or export to a cloud object ImportString, ExportString import from or export to a string ImportByteArray, ExportByteArray import from or export to a byte array
Import Elements
- General Import elements:
-
"Elements" list of elements and options available in this file "Summary" summary of the file "Rules" list of rules for all available elements - Data elements:
-
"BioMolecule" a symbolic representation of the macromolecular model "Molecule" a symbolic representation of the molecular model - Import and Export use the "BioMolecule" element by default for the mmJSON format.
- A BioMolecule object contains information about the chains and residues, as well as atom types and coordinates. A Molecule object will assign bonds between atoms and discards metainformation such as residue and chain labels.
- Graphics element:
-
"Graphics3D" mmJSON file rendered as a Graphics3D object - Data representation elements:
-
"Residues" residue sequences as an array of three-letter abbreviations "Sequence" residue sequences given as a list of strings "ResidueAtoms" list of residue atoms "ResidueChainLabels" list of chain labels "ResidueRoles" functional roles of residue atoms "ResidueCoordinates" 3D coordinates of residue atoms in angstroms "Resolution" spatial resolution of the model coordinates in angstroms "AdditionalAtoms" atoms that are not constituents of a chain "AdditionalCoordinates" 3D coordinates of additional atoms "AdditionalResidues" additional residue sequences as an array of three-letter abbreviations "SecondaryStructure" rules describing the large-scale structure of a chain "VertexCoordinates" atomic coordinates given in angstroms "VertexTypes" all atoms or groups constituting the molecule, typically given as a list of chemical element abbreviations - The Wolfram Language uses the standard IUB/IUPAC abbreviations for amino acid residues.
- When importing an mmJSON file that describes multiple 3D models of the same molecule, the following Import elements can be used to read the geometries of all models:
-
"ResidueCoordinatesList" residue coordinates for each model "AdditionalCoordinatesList" 3D coordinates of additional atoms for each model "VertexCoordinatesList" atomic coordinates for each model in angstroms - Metainformation elements:
-
"Authors" author information as referenced in the file "DepositionDate" when the file was added to the database "PDBClassification" PDB classification from the file header "PDBID PDB structure identification string "References" bibliographic reference given as a list of rules "Title" document title
Options
- The "BioMolecule" import element takes the following options:
-
"DetectSecondaryStructure" Automatic whether to scan the list of residues to detect helices and sheets - The "Graphics3D" import element takes the same options as BioMoleculePlot3D.
- Selecting a rendering style:
-
PlotTheme "Ribbons" specifies the visualization method - Supported plot themes include:
-
"Ribbons" display polymer chains as ribbons "Backbone" display polymer chains as ribbons "SolventAccessibleSurface" solvent accessible surface "GaussianSurface" Gaussian surface "VanDerWaalsSurface" Van der Waals surface "BallAndStick" display atoms and bonds using Sphere and Cylinder primitives "Tubes" display bonds as tubes with no atoms "Spacefilling" atoms are depicted with spheres with radius matching the van der Waals radius
范例
基本范例 (3)
Export a BioMolecule to an mmJSON file:
Show the names of all available Import elements:
Import the amino acid sequences as strings:
Import a graphical representation of the biomolecule:
Export a Molecule object to mmJSON:
Import the file as a Graphics3D: