Coder Social home page Coder Social logo

fcc's Introduction

CI

Contact-based clustering for protein structures

Open-source package that implements a fast clustering algorithms for protein structures based on a contact-based similarity metrics.

Advantages over traditional RMSD-based clustering methods include:

  • Does not require alignments.
  • As a result, it is usually much faster.
  • Multi-resolution clustering: atom-atom contacts, residue-residue, chain-chain, ...
  • Works for any molecule you can encode in a PDB/mmCIF format.

Citation

Rodrigues JPGLM, Trellet M, Schmitz C, Kastritis P, Karaca E, Melquiond ASJ, Bonvin AMJJ. [Clustering biomolecular complexes by residue contacts similarity.] [1] Proteins: Structure, Function, and Bioinformatics 2012;80(7):1810โ€“1817.

Installation

TBD (pip install fccpy)

Usage & Examples

You can use fccpy as a library or as a set of command-line utilities.

As a script

fccpy mkcontacts ppi_complexes.txt
fccpy mtx -m mm ppi_complexes.txt -o similarity.h5
fccpy cluster similarity.h5 dbscan -o clusters.out

As a library

import pathlib
from fccpy import read_pdb, get_intermolecular_contacts

p = pathlib.Path("tests", "inputs", "1brs.pdb.gz")
structure = read_pdb(p)

for atom_a, atom_b in get_intermolecular_contacts(structure):
    print(f"{atom_a}\t{atom_b}")

License

Apache License 2.0 (see LICENSE file for details)

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.