Metadata-Version: 2.4
Name: prolint2
Version: 0.0.19
Summary: ProLint2: Lipid-Protein Interaction Analysis.
Home-page: https://github.com/ProLint/prolint2
Author: Daniel P. Ramirez & Besian I. Sejdiu
Author-email: daniel.ramirezecheme@ucalgary.ca
License: MIT
Platform: Linux
Platform: Mac OS-X
Platform: Windows
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: mdanalysis
Requires-Dist: bottle
Requires-Dist: jsonargparse[signatures]
Requires-Dist: requests
Requires-Dist: networkx
Requires-Dist: logomaker
Requires-Dist: seaborn
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# ProLint v2: an optimized tool for the analysis of lipid protein interactions.

[//]: # "Badges"

[![PyPI](https://img.shields.io/pypi/v/prolint2?color=blue)](https://pypi.org/project/prolint2/)
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/)
[![GitHub Actions Build Status](https://github.com/ProLint/prolint2/workflows/CI/badge.svg)](https://github.com/ProLint/prolint2/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/ProLint/prolint2/graph/badge.svg)](https://app.codecov.io/gh/ProLint/prolint2)
[![docs](https://readthedocs.org/projects/prolint2/badge/?version=latest)](https://prolint2.readthedocs.io/en/latest/?badge=latest)

# Overview

ProLint2 calculates distance-based lipid-protein interactions from molecular dynamics trajectories of membrane protein systems.

![](docs/_static/fvg.png)

# Table of contents

- [Installation](#installation)
- [Basic examples](#basic-examples)
- [How to contribute?](#how-to-contribute)
- [License](#license)
- [Copyright](#copyright)
- [Acknowledgements](#acknowledgements)

# Installation

To install **prolint2** we recommend creating a new conda environment as follows:

```bash
   conda create -n prolint2 python=3.8
   conda activate prolint2
```

Then you can install **prolint2** via pip:

```bash
   pip install prolint2
```

# Basic examples:

Using the Prolint2's API:

```python
   from prolint2 import Universe
   from prolint2.sampledata import GIRKDataSample
   GIRK = GIRKDataSample()

   u = Universe(GIRK.coordinates, GIRK.trajectory)

   contacts = u.compute_contacts(cutoff=7) # cutoff in Angstroms
```

Using the Prolint2's command-line interface:

```bash
   prolint2 coordinates.gro trajectory.xtc -c 7
```

You can find more details on how to use **prolint2** in the [documentation](https://prolint2.readthedocs.io/en/latest/index.html).

# How to contribute?

If you find a bug in the source code, you can help us by submitting an issue [here](https://github.com/ProLint/prolint2/issues). Even better, you can submit a Pull Request with a fix.

We really appreciate your feedback!

# License

Source code included in this project is available under the [MIT License](https://opensource.org/licenses/MIT).

# Copyright

Copyright (c) 2022, Daniel P. Ramirez & Besian I. Sejdiu

Acknowledgements
================
The respository structure of **ProLint2** is based on the [Computational Molecular Science Python Cookiecutter](https://github.com/molssi/cookiecutter-cms) version 1.6.
