Giter VIP home page Giter VIP logo

interfacea's Introduction

Travis Continuous Integration Appveyor Continuous Integration DOI

interfacea

interfacea is a Python library written to facilitate the analysis of interfaces of a wide range of biomolecular complexes. The feature list includes:

  • Fast and flexible graph-based search of functional groups.
  • Identification of several types of atomic interactions (e.g. ionic, hydrogen bonds).
  • Rebuilding missing (heavy) atoms and in silico mutagenesis.
  • Calculation and decomposition of energetics using OpenMM.
  • ...

Installation

git clone https://github.com/joaorodrigues/interfacea.git interfacea
cd interfacea
conda env create -f requirements.yml  # create environment with dependencies
python setup.py build && python setup.py install  # install interfacea
conda activate interfacea-install
# Ta-Daa!

Quick Example(s)

  1. Loading a molecule and performing energy minimization.

    import interfacea as ia
    
    mol = ia.read('tests/data/mini.pdb')
    mol.prepare(minimize=True)
    
    print(mol.potential_energy)
  2. Find ionic interactions in the structure

    import interfacea as ia
    
    mol = ia.read('tests/data/mini.pdb')
    
    analyzer = ia.InteractionAnalyzer(mol)
    analyzer.get_ionic()
    
    print(analyzer.itable._table)  # will obviously change in the future.
  3. Find specific functional groups in the structure

    import interfacea as ia
    import interfacea.functional_groups as fgs
    
    mol = ia.read('tests/data/mini.pdb')
    
    # Find phosphate groups in molecule
    
    phosphate = fgs.Phosphate()
    matches = phosphate.search(mol)
    for res, groups in matches.items:
        n_groups = len(groups)
        if n_groups:
            print('Residue {}{} contains {} phosphate(s)'.format(res.name, res.id, n_groups))

Software Dependencies

interfacea runs on Python 3.6+ only and requires the following packages:

Dependencies should be installed via conda using conda env create -f requirements.yml or by following instructions on their websites.

interfacea's People

Contributors

clintval avatar joaorodrigues avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.