All Projects → cusbg → MolArt

cusbg / MolArt

Licence: other
MOLeculAR structure annoTator

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to MolArt

hotspot3d
3D hotspot mutation proximity analysis tool
Stars: ✭ 43 (+72%)
Mutual labels:  protein-structure, uniprot
DMPfold
De novo protein structure prediction using iteratively predicted structural constraints
Stars: ✭ 52 (+108%)
Mutual labels:  protein-structure, protein-sequence
hPDB
PDB parser in Haskell
Stars: ✭ 20 (-20%)
Mutual labels:  pdb, protein-structure
gcWGAN
Guided Conditional Wasserstein GAN for De Novo Protein Design
Stars: ✭ 38 (+52%)
Mutual labels:  protein-structure, protein-sequence
RamaNet
Preforms De novo protein design using machine learning and PyRosetta to generate a novel protein structure
Stars: ✭ 41 (+64%)
Mutual labels:  pdb, protein-structure
ProteinSecondaryStructure-CNN
Protein Secondary Structure predictor using Convolutional Neural Networks
Stars: ✭ 82 (+228%)
Mutual labels:  pdb, protein-structure
VSCoding-Sequence
VSCode Extension for interactively visualising protein structure data in the editor
Stars: ✭ 41 (+64%)
Mutual labels:  pdb, protein-structure
Biosyntax
Syntax highlighting for computational biology
Stars: ✭ 164 (+556%)
Mutual labels:  pdb
Ducible
A tool to make Windows builds reproducible.
Stars: ✭ 211 (+744%)
Mutual labels:  pdb
Pypdb
A Python API for the RCSB Protein Data Bank (PDB)
Stars: ✭ 139 (+456%)
Mutual labels:  pdb
Mcmd
Monte Carlo and Molecular Dynamics Simulation Package
Stars: ✭ 52 (+108%)
Mutual labels:  pdb
Pudb
Full-screen console debugger for Python
Stars: ✭ 2,267 (+8968%)
Mutual labels:  pdb
Rmsd
Calculate Root-mean-square deviation (RMSD) of two molecules, using rotation, in xyz or pdb format
Stars: ✭ 215 (+760%)
Mutual labels:  pdb
Pdb
A parser for Microsoft PDB (Program Database) debugging information
Stars: ✭ 156 (+524%)
Mutual labels:  pdb
parapred
Paratope Prediction using Deep Learning
Stars: ✭ 49 (+96%)
Mutual labels:  protein-structure
Pdbr
pdb + Rich library
Stars: ✭ 96 (+284%)
Mutual labels:  pdb
SQLCallStackResolver
Utility to resolve SQL Server callstacks to their correct symbolic form using just PDBs and without a dump file
Stars: ✭ 55 (+120%)
Mutual labels:  pdb
bioSyntax-archive
Syntax highlighting for computational biology
Stars: ✭ 16 (-36%)
Mutual labels:  pdb
Python Remote Pdb
Remote vanilla PDB (over TCP sockets).
Stars: ✭ 186 (+644%)
Mutual labels:  pdb
Fakepdb
Tool for PDB generation from IDA Pro database
Stars: ✭ 186 (+644%)
Mutual labels:  pdb

MolArt (MOLeculAR structure annoTator)

MolArt is a responsive, easy-to-use JavaScript plugin which enables users to view annotated protein sequence (including variation data from large scale studies) and overlay the annotations over a corresponding experimental or predicted protein structure. It couples protein sequence annotation capabilities provided by ProtVista (or more precisely its modified responsive version implemented when developing MolArt) with structure visualization capabilities provided by LiteMol. Since it does not have any software dependencies and all the data are obtained on the fly, it is easy to integrate it to any web page.

Examples of MolArt's use can be found at https://cusbg.github.io/MolArt/.

Documentation shows usage of the plugin.

The plugin is being developed at the Luxembourg Center for Systems Biomedicine, University of Luxembourg.

To cite MolArt use: MolArt: A molecular structure annotation and visualization tool (doi: 10.1093/bioinformatics/bty489)

Features overview

  • Visualization of protein structure as provided by LiteMol
  • Annotation of protein sequence as provided by ProtVista
  • Annotations of protein sequence from PredictProtein
  • Mapping of structure on corresponding substring in the sequence
  • Automatic retrieval of sequence data based on UniProt ID and corresponding experimental structures from PDB
  • Retrieval of predicted models from AlphaFold Protein Structure DB (ADB) and SWISS-MODEL Repository (SMR) if no PDB structure is available
  • Controlling transparency of the structure to see both cartoon and surface view of the structure
  • Hovering over position in sequence to highlight it in structure and vice versa
  • Color overlay any sequence feature over the structure
  • Color overlay all sequence features of given type over the structure
  • Color overlay individual variation over the structure
  • Color overlay all mutations to given amino acid over the structure
  • Color overlay mutation frequency of residues over the structure
  • Exports of the structure and annotations to PyMol for advanced inspection (the export does not include variants)
  • Upload of custom annotations
  • Ability to control which structures will be shown
  • Ability to select and highlight specific residues (not necessarily corresponding to annotations) and specific atoms . The selection can be visualized either as a surface, a balls and stick representation or simply van der Waals-based spheres with given color and transparency.
  • Ability to provide custom sequence and mapping

Data sources

  • Sequence and annotation data

    • Sequence information comes from UniProt website REST API or can be provided by the user
    • Sequence annotations are provided by
      • ProtVista plugin which utilizes the EBI's Proteins REST API. Proteins API includes access to variation, proteomics and antigen services containing "annotations imported and mapped from large scale data sources, such as 1000 Genomes, ExAC (Exome Aggregation Consortium), COSMIC (Catalogue Of Somatic Mutations In Cancer), PeptideAtlas, MaxQB (MaxQuant DataBase), EPD (Encyclopedia of Proteome Dynamics) and HPA, along with UniProtKB annotations for these feature types".
      • PredictProtein API which gives access to a range of integrated sequence-based prediction methods such as conservation or prediction of functional changes. If the user prefers only experimental data, the PredictProtein annotations can be easily turned off with the exclusion parameter as described in the documentation
  • Structure mapping

    • Automatic
      • To obtain the mapping between UniProt and PDB, MolArt is using the SIFTS API, part of the PDBe REST API.
      • In case the SIFTS mapping yields no PDB structures, ADB and SMR are queried using their respective APIs for available models.
    • Custom
      • When working with sequence which is not in UniProt or when the mapping is not known, sequence-structure mapping can be provided. This includes
        • Molecule-level mapping, i.e. which PDB structures correspond to the sequence
        • Residue-level mapping, i.e. which regions in sequence correspond to which regions in the structure
  • Structure data

    • In case an experimental structure is available in PDB for given UniProt ID, this structure is downloaded by LiteMol. In this case, MolArt instructs LiteMol to use the mmCIF format.
    • In case there is no experimental structure in PDB, but a model exists in ADB or SMR, MolArt instructs LiteMol to use the mmCIF-format in case of ADB and PDB-format in case of SMR.

How to use MolArt

  • Obtain the JavaScript file with MolArt and link it from your web page
  • Create a container DIV (or SPAN) element which will hold the viewer
  • Create a JavaScript object and pass it reference to the DIV

The detail description of how to incorporate MolArt into your project can be found in the developer documentation.

Examples of use

Exmpales of how to use MolArt are located in the examples folder.

  • See the bare.html file for a bare bones example of how to use the plugin.
  • The plugin-page.html is slightly styled plugin usage.
  • For an advanced example, see the web directory. It contains a simple web application which enables querying Uniprot (only top 10 matches are retrieved) and for every found record one can click the UniProt ID which creates a new tab with new instance of MolArt for that UniProt ID.

Contributing

We would be happy to hear about your use cases, experiences and ideas/feature requests. Either raise an issue here or get in touch by mail (david.hoksza at gmail).

Support

Please submit your issues through the MolArt's repository issue tracker available here.

License

This project is licensed under the Apache 2.0 license, quoted below.

Copyright (c) 2018 David Hoksza

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Support

MolArt is a part of services provided by ELIXIR – European research infrastructure for biological information. See services provided ELIXIR's Czech Republic Node.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].