Generate Mol* views using this simple Python library, which allows you to compose complex scenes in a step-wise manner.
Project description
MolViewSpec
MolViewSpec (*.msvj) is a JSON-based file format that is used to describe visual scenes or views used in molecular visualization. It adopts declarative data-driven approach to describe, load, render, and visually deliver molecular structures, along with 3D representations, coloring schemes, and associated structural, biological, or functional annotations. This Python toolkit allows for describing the information required for representing a molecular view state as data in a nested tree format that can be consumed by visualization software tools such as Mol*.
When using MolViewSpec, please cite:
- Adam Midlik, Sebastian Bittrich, Jennifer R Fleming, Sreenath Nair, Sameer Velankar, Stephen K Burley, Jasmine Y Young, Brinda Vallat, David Sehnal: MolViewSpec: a Mol* extension for describing and sharing molecular visualizations, Nucleic Acids Research, 2025; https://doi.org/10.1093/nar/gkaf370.
- Sebastian Bittrich, Adam Midlik, Mihaly Varadi, Sameer Velankar, Stephen K. Burley, Jasmine Y. Young, David Sehnal, Brinda Vallat: Describing and Sharing Molecular Visualizations Using the MolViewSpec Toolkit, Current Protocols, 2024; https://doi.org/10.1002/cpz1.1099.
The Idea behind MolViewSpec
In the long run, MolViewSpec aims to re-imagine how users define molecular scenes by detaching this process from any concrete 3D viewer.
MolViewSpec's workflow is:
define scene using MolViewSpecgeneric state description as .msvj or .mvsx fileopen in any MolViewSpec-compatible 3D viewer
Opposed to the traditional workflow that locks users into using a specific 3D viewer, such as:
define scene in Mol*Mol*-specific state formatopen only in Mol*
See the MolViewSpec in Action
Colab Notebook: https://colab.research.google.com/drive/1O2TldXlS01s-YgkD9gy87vWsfCBTYuz9
Jupyter Notebook on Binder: https://mybinder.org/v2/gh/molstar/mol-view-spec/master?labpath=test-data%2Fnotebooks%2F01_kras_structure_visualization.ipynb
Streamlit web app component example: /test-data/streamlit
Access Type Definitions
All type definitions can be found here:
- using a dedicated Server endpoint: http://localhost:9000/api/v1/utils/models/openapi.json
- same content as static file: https://molstar.org/mol-view-spec-docs/files/molviewspec-v1-openapi-schema.json
- in Markdown: https://molstar.org/mol-view-spec-docs/tree-schema/
Description of the MolViewSpec State Tree
MolViewSpec provides a generic description of typical visual scenes that may occur as part of molecular visualizations. A tree format allows the composition of complex scene descriptors by combining reoccurring nodes that serve as building blocks.
Nodes can be nested to allow chaining of operations as child nodes will be applied to the result of the operation described by its parent node.
The corresponding MolViewSpec tree is provided in JSON and may look like this:
{
"root": {
"kind": "root",
"children": [
{
"kind": "download",
"params": {
"url": "https://files.wwpdb.org/download/1cbs.cif"
},
"children": [
{
"kind": "parse",
"params": {
"format": "mmcif"
},
"children": [
{
"kind": "structure",
"params": {
"type": "model"
},
"children": [
{
"kind": "component",
"params": {
"selector": "all"
},
"children": [
{
"kind": "representation",
"params": {
"type": "cartoon"
}
}
]
}
]
}
]
}
]
}
]
},
"metadata": {
"version": "0.1",
"timestamp": "2023-11-16T11:41:07.421220"
}
}
Mol* is the reference implementation for reading MolViewSpec files.
The Tree Root
Every tree starts with a single root node, which contains all nodes in a structure fashion, and a metadata node,
which can hold additional information such as a version tag as well as the timestamp when a view was created.
{
"root": {},
"metadata": {
"version": "0.1",
"timestamp": "2023-11-16T11:41:07.421220"
}
}
The root Node
All nodes of the tree must define their kind and may have 0 or more child nodes (children).
The root is a special node with a kind of root that contains a collection of children.
{
"kind": "root",
"children": []
}
The download Node
Node types other than the root may contain an optional params property. A common action is loading of 3D structure
data. This is done using a node of kind download. In this context, params can for example provide the url from
which data will be loaded from.
{
"kind": "download",
"children": [],
"params": {
"url": "https://files.wwpdb.org/download/1cbs.cif"
}
}
The parse Node
The previous download operation merely obtains the resources from the specified URL. To make it available to the
viewer, the data must be parsed. This operation expects that the format is defined (in this case mmCIF is parsed).
{
"kind": "parse",
"children": [],
"params": {
"format": "mmcif"
}
}
The structure Node
There are different ways to load the content of a mmCIF file. Common actions are loading the 1st biological assembly or
loading the deposited coordinates (also called "asymmetric unit" or "model coordinates").
The action is defined as kind. In this example, the model coordinates are loaded.
{
"kind": "structure",
"children": [],
"params": {
"kind": "model"
}
}
The component Node
At this point, the loaded file is available in the viewer but nothing is visualized yet. Several selection (called
"components") can be created. The example creates a component that includes everything using a selector set to all.
Other options could be a selection for protein chains, nucleic acids, ligands etc.
Components are reusable groups of atoms, residues, or chains, which can be interacted with programmatically.
{
"kind": "component",
"children": [],
"params": {
"selector": "all"
}
}
The representation Node
The representation nodes applies to previously created components, which is provided by the parent node of a
representation node. Representations are dedicated visuals that constitute a component. In this example, the selection
from above -- which selects the entire structure -- and depicts it as cartoon by specifying cartoon as type.
{
"kind": "representation",
"params": {
"type": "cartoon"
}
}
Expanding the Tree
Nodes can have 0 or more nodes as children. It is, for example, possible to create multiple component nodes based on a
particular structure node to create different representations for different types of molecules.
Development
Install from PyPI
pip install molviewspec
Find the package at: https://pypi.org/project/molviewspec/
Setting up the environment
micromamba env create -f ./environment.yaml
micromamba activate mol-view-spec-dev
Running the server
cd molviewspec
python serve.py # or make serve
will run the server on localhost:9000 with reload mode on.
- API Docs:
http://localhost:9000/docs - Example:
http://localhost:9000/api/v1/examples/load?id=1tqn
Testing API examples
Start the server and run
cd molviewspec
python test_server.py
Will call all API endpoint that can be called without arguments.
Running unit tests
cd molviewspec
python test_mvsj_to_mvsx.py
python test_serialization.py
Testing everything
cd molviewspec
make test
will run both server as well as registered unit tests.
Formatting the Project
cd molviewspec
make format
make mypy
Publishing the Python Library
- Set version (in https://github.com/molstar/mol-view-spec/blob/master/molviewspec/molviewspec/__init__.py)
- Create a GitHub release
- Tag will automatically publish to PyPI
Mol* Extension
MolViewSpec is supported in Mol* via an official extension.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file molviewspec-1.8.1.tar.gz.
File metadata
- Download URL: molviewspec-1.8.1.tar.gz
- Upload date:
- Size: 47.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d86c82c42e0a9e3cb9ec560f7fc9a59f48e98d8ed7a024cecccbabfab76e2cf
|
|
| MD5 |
a43405f969281895f8087cd87020bdb0
|
|
| BLAKE2b-256 |
c888d7e48d89f1a7c8674d683c0e7c1e9cbf5231cccc8d12125676661d8eb619
|
File details
Details for the file molviewspec-1.8.1-py3-none-any.whl.
File metadata
- Download URL: molviewspec-1.8.1-py3-none-any.whl
- Upload date:
- Size: 40.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
614586dfc654981a1d00bdd183abe1973d9adb645c88d24b5beee67602181658
|
|
| MD5 |
2f8739c233e7be8a86299806d4d82c3a
|
|
| BLAKE2b-256 |
9719853485997b87f52d828365cb940c77a83eec8a9b059afd04a3f8bcddd5ac
|