Skip to content
Snippets Groups Projects
README.md 6.03 KiB
Newer Older
David Sehnal's avatar
David Sehnal committed
[![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](./LICENSE)
Alexander Rose's avatar
Alexander Rose committed
[![npm version](https://badge.fury.io/js/molstar.svg)](https://www.npmjs.com/package/molstar)
[![Build Status](https://travis-ci.org/molstar/molstar.svg?branch=master)](https://travis-ci.org/molstar/molstar)
[![Gitter](https://badges.gitter.im/molstar/Lobby.svg)](https://gitter.im/molstar/Lobby)
David Sehnal's avatar
David Sehnal committed
# Mol*
David Sehnal's avatar
David Sehnal committed
The goal of **Mol\*** (*/'mol-star/*) is to provide a technology stack that will serve as basis for the next-generation data delivery and analysis tools for macromolecular structure data. This is a collaboration between PDBe and RCSB PDB teams and the development will be open source and available to anyone who wants to use it for developing visualisation tools for macromolecular structure data available from [PDB](https://www.wwpdb.org/) and other institutions.
Alexander Rose's avatar
Alexander Rose committed
This particular project is the implementation of this technology (still under development).
*If you are looking for the "MOLeculAR structure annoTator", that package is now available on NPM as [MolArt](https://www.npmjs.com/package/molart).*

David Sehnal's avatar
David Sehnal committed
## Project Overview
Alexander Rose's avatar
Alexander Rose committed
The core of Mol* currently consists of these modules (see under `src/`):
- `mol-task` Computation abstraction with progress tracking and cancellation support.
David Sehnal's avatar
David Sehnal committed
- `mol-data` Collections (integer based sets, interface to columns/tables, etc.)
David Sehnal's avatar
David Sehnal committed
- `mol-math` Math related (loosely) algorithms and data structures.
David Sehnal's avatar
David Sehnal committed
- `mol-io` Parsing library. Each format is parsed into an interface that corresponds to the data stored by it. Support for common coordinate, experimental/map, and annotation data formats.
- `mol-model` Data structures and algorithms (such as querying) for representing molecular data (including coordinate, experimental/map, and annotation data).
David Sehnal's avatar
David Sehnal committed
- `mol-model-formats` Data format parsers for `mol-model`.
- `mol-model-props` Common "custom properties".
David Sehnal's avatar
David Sehnal committed
- `mol-script` A scriting language for creating representations/scenes and querying (includes the [MolQL query language](https://molql.github.io)).
- `mol-geo` Creating (molecular) geometries.
Alexander Rose's avatar
Alexander Rose committed
- `mol-theme` Theming for structure, volume and shape representations.
- `mol-repr` Molecular representations for structures, volumes and shapes.
- `mol-gl` A wrapper around WebGL.
- `mol-canvas3d` A low level 3d view component. Uses `mol-geo` to generate geometries.
- `mol-state` State representation tree with state saving and automatic updates.
David Sehnal's avatar
David Sehnal committed
- `mol-app` Components for builduing UIs.
- `mol-plugin` Allow to define modular Mol* plugin instances utilizing `mol-state` and `mol-canvas3d`.
David Sehnal's avatar
David Sehnal committed
- `mol-util` Useful things that do not fit elsewhere.

David Sehnal's avatar
David Sehnal committed
Moreover, the project contains the imlementation of `servers`, including

- `servers/model` A tool for accessing coordinate and annotation data of molecular structures.
- `servers/volume` A tool for accessing volumetric experimental data related to molecular structures.

David Sehnal's avatar
David Sehnal committed
The project also contains performance tests (`perf-tests`), `examples`, and basic proof of concept `apps` (CIF to BinaryCIF converter and JSON domain annotation to CIF converter).

## Previous Work
This project builds on experience from previous solutions:
- [LiteMol Suite](https://www.litemol.org)
- [WebChemistry](https://webchem.ncbr.muni.cz)
- [NGL Viewer](http://nglviewer.org)
- [MMTF](http://mmtf.rcsb.org)
- [MolQL](http://molql.org)
David Sehnal's avatar
David Sehnal committed
- [PDB Component Library](https://www.ebi.ac.uk/pdbe/pdb-component-library/)
- And many others (list will be continuously expanded).

Alexander Rose's avatar
Alexander Rose committed
## Building & Running

### Build:
David Sehnal's avatar
David Sehnal committed
    npm install
    npm run build
Alexander Rose's avatar
Alexander Rose committed

### Build automatically on file save:
David Sehnal's avatar
David Sehnal committed
    npm run watch

### Build with debug mode enabled:
Alexander Rose's avatar
Alexander Rose committed
    DEBUG=molstar npm run watch
### Build for production:
Alexander Rose's avatar
Alexander Rose committed
    NODE_ENV=production npm run build
**Run**

If not installed previously:

    npm install -g http-server

...or a similar solution.

From the root of the project:

    http-server -p PORT-NUMBER

and navigate to `build/viewer`

### Code generation
**CIF schemas**
Alexander Rose's avatar
Alexander Rose committed
Install CIFTools `npm install ciftools -g`
Alexander Rose's avatar
Alexander Rose committed
    cifschema -mip ../../../../mol-data -o src/mol-io/reader/cif/schema/mmcif.ts -p mmCIF
Alexander Rose's avatar
Alexander Rose committed
    cifschema -mip ../../../../mol-data -o src/mol-io/reader/cif/schema/ccd.ts -p CCD
Alexander Rose's avatar
Alexander Rose committed
    cifschema -mip ../../../../mol-data -o src/mol-io/reader/cif/schema/bird.ts -p BIRD

**GraphQL schemas**

    node data/rcsb-graphql/codegen.js

### Other scripts
**Create chem comp bond table**

    export NODE_PATH="lib"; node --max-old-space-size=4096 lib/apps/chem-comp-bond/create-table.js build/data/ccb.bcif -b

**Test model server**

Alexander Rose's avatar
Alexander Rose committed
    export NODE_PATH="lib"; node build/src/servers/model/test.js
**State Transformer Docs**

Alexander Rose's avatar
Alexander Rose committed
    export NODE_PATH="lib"; node build/state-docs
David Sehnal's avatar
David Sehnal committed
**Convert any CIF to BinaryCIF**

    node build/model-server/preprocess -i file.cif -ob file.bcif

To see all available commands, use ``node build/model-server/preprocess -h``.

## Development

### Intallation

If node complains about a missine acorn peer dependency, run the following commands

    npm update acorn --depth 20
    npm dedupe

### Editor
To get syntax highlighting for shader and graphql files add the following to Visual Code's settings files and make sure relevant extanesions are installed in the editor.

    "files.associations": {
        "*.glsl.ts": "glsl",
        "*.frag.ts": "glsl",
        "*.vert.ts": "glsl",
        "*.gql.ts": "graphql"
Alexander Rose's avatar
Alexander Rose committed
## Publish

Alexander Rose's avatar
Alexander Rose committed
### Prerelease
Alexander Rose's avatar
Alexander Rose committed
    npm version prerelease # asumes the current version ends with '-dev.X'
    npm publish --tag next

Alexander Rose's avatar
Alexander Rose committed
### Release
Alexander Rose's avatar
Alexander Rose committed
    npm version 0.X.0 # provide valid semver string
    npm publish

Alexander Rose's avatar
Alexander Rose committed
## Deploy
    npm run test
Alexander Rose's avatar
Alexander Rose committed
    node ./scripts/deploy.js # currently updates the viewer on molstar.org/viewer

David Sehnal's avatar
David Sehnal committed
## Contributing
Just open an issue or make a pull request. All contributions are welcome.
David Sehnal's avatar
David Sehnal committed
## Roadmap
Continually develop this prototype project. As individual modules become stable, make them into standalone libraries.
Alexander Rose's avatar
Alexander Rose committed

## Funding
David Sehnal's avatar
David Sehnal committed
Funding sources include but are not limited to:
* [RCSB PDB](https://www.rcsb.org) funding by a grant [DBI-1338415; PI: SK Burley] from the NSF, the NIH, and the US DoE
* [PDBe, EMBL-EBI](https://pdbe.org)
* [CEITEC](https://www.ceitec.eu/)