Metadata-Version: 2.4
Name: pandamap
Version: 4.1.0
Summary: A Python package for visualizing protein-ligand interactions with 2D ligand structure representation
Author-email: "Dr. Pritam Kumar Panda" <pritam@stanford.edu>
License-Expression: MIT
Project-URL: Homepage, https://github.com/pritampanda15/PandaMap
Project-URL: Bug Tracker, https://github.com/pritampanda15/PandaMap/issues
Keywords: bioinformatics,protein-ligand,interactions,visualization,drug-design,3Dmol,rich,docking
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Requires-Dist: matplotlib>=3.4.0
Requires-Dist: biopython>=1.79
Requires-Dist: requests>=2.25.0
Provides-Extra: fancy
Requires-Dist: rich>=13.0; extra == "fancy"
Provides-Extra: viz
Requires-Dist: py3Dmol; extra == "viz"
Provides-Extra: full
Requires-Dist: rich>=13.0; extra == "full"
Requires-Dist: py3Dmol; extra == "full"
Dynamic: license-file

# PandaMap: A Python package for visualizing protein-ligand interactions with 2D ligand structure representation. 

**P**rotein **AND** lig**A**nd interaction **MAP**per: A Python package for visualizing protein-ligand interactions with 2D ligand structure representation

<p align="center">
  <img src="https://raw.githubusercontent.com/pritampanda15/PandaMap/main/logo/pandamap-logo.svg" alt="PandaMap Logo" width="400">
</p>
<p align="center">
  <a href="https://pypi.org/project/pandamap/">
    <img src="https://img.shields.io/pypi/v/pandamap.svg" alt="PyPI Version">
  </a>
  <a href="https://github.com/pritampanda15/PandaMap/blob/main/LICENSE">
    <img src="https://img.shields.io/github/license/pritampanda15/PandaMap" alt="License">
  </a>
  <a href="https://github.com/pritampanda15/PandaMap/stargazers">
    <img src="https://img.shields.io/github/stars/pritampanda15/PandaMap?style=social" alt="GitHub Stars">
  </a>
  <a href="https://github.com/pritampanda15/PandaMap/issues">
    <img src="https://img.shields.io/github/issues/pritampanda15/PandaMap" alt="GitHub Issues">
  </a>
  <a href="https://github.com/pritampanda15/PandaMap/network/members">
    <img src="https://img.shields.io/github/forks/pritampanda15/PandaMap?style=social" alt="GitHub Forks">
  </a>
  <a href="https://pepy.tech/project/PandaMap">
    <img src="https://static.pepy.tech/badge/PandaMap" alt="Downloads">
  </a>
</p>


**Version 4.1.0: With 3D HTML rendering**

PandaMap is a Python package for visualizing protein-ligand interactions with enhanced detection methods.

## Features

- Visualization of protein-ligand complexes with 3D-enhanced 2D representations
- Comprehensive interaction detection:
  - Hydrogen bonds
  - Pi-Pi stacking
  - Hydrophobic interactions
  - Salt bridges and ionic interactions
  - Halogen bonds
  - Metal coordination
  - And many more!
- Realistic solvent accessibility calculation
- Support for multiple input formats (PDB, CIF, PDBQT)
- Detailed interaction reports
- 3D Maps with rendering
👉 [Click here for a live interactive 3D example](https://github.com/pritampanda15/PandaMap/blob/main/test/complex_3d_visualization.html)
![PandaMap](https://raw.githubusercontent.com/pritampanda15/PandaMap/main/test/pandamap_3d_visualization.png)


## Installation

```bash
pip install pandamap
```

## Optional Features

- **Rich CLI Output** (colored update messages):  
  `pip install pandamap[fancy]`

- **3D HTML Visualization Support** (via py3Dmol):  
  `pip install pandamap[viz]`

- **All Features**:  
  `pip install pandamap[full]`

## Dependencies
- dssp #It can be installed externally
```bash
brew install dssp #mac users
sudo apt-get install dssp #linux users
Windows: Download from https://swift.cmbi.umcn.nl/gv/dssp/ 
```
- NumPy
- Matplotlib
- BioPython

## Basic Usage
```bash
pandamap -h

usage: pandamap [-h] [--output OUTPUT] [--ligand LIGAND] [--dpi DPI] [--title TITLE] [--version] [--report] [--report-file REPORT_FILE] [--3d] [--3d-output OUTPUT_3D] [--no-surface] [--width WIDTH] [--height HEIGHT] [--no-3d-cues] structure_file

PandaMap: Visualize protein-ligand interactions from structure files

positional arguments:
  structure_file        Path to structure file (PDB, mmCIF/CIF, or PDBQT format)

options:
  -h, --help            show this help message and exit
  --output, -o OUTPUT   Output image file path
  --ligand, -l LIGAND   Specific ligand residue name to analyze
  --dpi DPI             Image resolution (default: 300 dpi)
  --title, -t TITLE     Custom title for the visualization
  --version, -v         Show version information
  --report, -r          Generate text report
  --report-file REPORT_FILE
                        Output file for the text report (default: based on structure filename)
  --3d                  Generate an interactive 3D visualization of protein-ligand interactions
  --3d-output OUTPUT_3D
                        Output file path for 3D visualization (default: based on input filename)
  --no-surface          Do not show protein surface in 3D visualization
  --width WIDTH         Width of 3D visualization in pixels (default: 800)
  --height HEIGHT       Height of 3D visualization in pixels (default: 600)
  --no-3d-cues          Disable 3D cues in 2D visualization

```

### Command Line Interface

```bash
## 🐼 PandaMap — Protein AND ligAnd interaction MAPper

Visualize protein-ligand interactions in both **2D image format** and **interactive 3D HTML** with optional reports.

---

### 🚀 Command-Line Usage

```bash
# Basic 2D interaction map
pandamap protein_ligand.pdb --output interactions.png

# With specific ligand
pandamap complex.cif --ligand LIG --output cif_interaction.png

# Generate text report
pandamap 4jmz.pdb --ligand HEM --report --report-file HEM.txt
pandamap 1m17.pdb --ligand AQ4 --report --report-file 1m17.txt

# Full analysis: image + report
pandamap complex.pdb --ligand PFL --output complex.png --report --report-file complex.txt
```

---

### 🌐 3D Visualization (Interactive HTML)

```bash
# Basic 3D HTML map
pandamap protein_ligand.pdb --3d

# Save HTML to custom file
pandamap complex.pdb --ligand LIG --3d --3d-output interaction.html

# Full combo: 2D image + 3D HTML + report
pandamap structure.pdb --ligand LIG --output map.png --3d --3d-output map.html --report --report-file map.txt

# Customize 3D size
pandamap structure.pdb --3d --width 1024 --height 768 --no-surface
```

---

### 🧪 Python API

```python
from pandamap import HybridProtLigMapper

# Basic initialization
mapper = HybridProtLigMapper("protein_ligand.pdb", ligand_resname="LIG")

# Run full workflow and generate 2D image
mapper.run_analysis()
mapper.visualize(output_file="interactions.png")

# Generate interactive 3D HTML
from visualization_3d import create_pandamap_3d_viz
create_pandamap_3d_viz(mapper, output_file="interactions.html")
```

---

### 🧬 DSSP Integration (solvent-accessibility)

```python
# Use DSSP for accurate surface exposure detection
mapper.run_analysis(use_dssp=True)
mapper.visualize(output_file="with_dssp.png")
```

Or fallback to Python-only:
```python
mapper.run_analysis(use_dssp=False)
mapper.visualize(output_file="pure_python.png")
```

---

### 📄 Report Generation (Improved Filtered Interactions)

```python
from improved_interaction_detection import ImprovedInteractionDetection

mapper = HybridProtLigMapper("protein.pdb", ligand_resname="LIG")
mapper.run_analysis()

# Optional: refine results
detector = ImprovedInteractionDetection()
filtered = detector.refine_interactions(mapper.interactions)

# Write to report
detector.generate_report(
    ligand_metadata={
        'hetid': mapper.ligand_residue.resname,
        'chain': mapper.ligand_residue.parent.id,
        'position': mapper.ligand_residue.id[1],
        'longname': mapper.ligand_residue.resname,
        'type': 'LIGAND',
    },
    interaction_data=filtered,
    output_file="filtered_report.txt"
)
```

---

### 🆘 Help & Version

```bash
pandamap -h
pandamap --version
```
---

![PandaMap](https://raw.githubusercontent.com/pritampanda15/PandaMap/main/test/1els_interactions.png)
![PandaMap](https://raw.githubusercontent.com/pritampanda15/PandaMap/main/test/complex_interactions.png)
![PandaMap](https://raw.githubusercontent.com/pritampanda15/PandaMap/main/test/1m17_interactions.png)
![PandaMap](https://raw.githubusercontent.com/pritampanda15/PandaMap/main/test/4jmz_interactions.png)

# Text Report
```
=============================================================================
PandaMap Interaction Report
=============================================================================

Ligand: PAH:A:439
Name: PAH
Type: LIGAND

------------------------------

Interacting Chains: A
Interacting Residues: 13

------------------------------

Interaction Summary:
  Hydrogen Bonds: 10
  Carbon-π Interactions: 1
  Metal Coordination: 4
  Ionic Interactions: 2
  Salt Bridges: 2
  Alkyl-π Interactions: 1
  Attractive Charge: 2
  Repulsion: 5

------------------------------

Hydrogen Bonds:
  1. GLU168A  -- 2.66Å -- PAH
  2. ASP246A  -- 2.60Å -- PAH
  3. GLN167A  -- 3.10Å -- PAH
  4. ASP320A  -- 3.46Å -- PAH
  5. LYS396A  -- 3.05Å -- PAH
  6. SER375A  -- 2.82Å -- PAH
  7. SER39A  -- 3.06Å -- PAH
  8. ARG374A  -- 2.98Å -- PAH
  9. GLY37A  -- 3.36Å -- PAH
  10. LYS345A  -- 3.21Å -- PAH

------------------------------

Carbon-π Interactions:
  1. HIS373A  -- 4.29Å -- PAH

------------------------------

Metal Coordination:
  1. ASP246A  -- 2.24Å -- PAH
  2. GLU295A  -- 2.24Å -- PAH
  3. ASP320A  -- 2.19Å -- PAH
  4. GLY37A  -- 2.12Å -- PAH

------------------------------

Ionic Interactions:
  1. ARG374A  -- 2.98Å -- PAH
  2. LYS345A  -- 3.21Å -- PAH

------------------------------

Salt Bridges:
  1. ARG374A  -- 2.98Å -- PAH
  2. LYS345A  -- 3.21Å -- PAH

------------------------------

Alkyl-π Interactions:
  1. HIS373A  -- 5.27Å -- PAH

------------------------------

Attractive Charge:
  1. ARG374A  -- 2.98Å -- PAH
  2. LYS345A  -- 3.21Å -- PAH

------------------------------

Repulsion:
  1. ASP320A  -- 3.46Å -- PAH
  2. GLU168A  -- 3.10Å -- PAH
  3. ASP246A  -- 2.60Å -- PAH
  4. GLU295A  -- 3.95Å -- PAH
  5. GLU211A  -- 4.34Å -- PAH

=============================================================================
```

## Citation

If you use PandaMap in your research, please cite:

```
Pritam Kumar Panda. (2025). Protein AND ligAnd interaction MAPper: A Python package for visualizing protein-ligand interactions with 2D ligand structure representation. GitHub repository. https://github.com/pritampanda15/PandaMap
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
