Metadata-Version: 2.1
Name: SangerTraces
Version: 0.1.0
Summary: Plot Sanger sequencing trace data from AB1 files
License: MIT
Project-URL: Documentation, https://github.com/anasgri/SangerTraces/wiki
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.24.4
Requires-Dist: matplotlib>=3.7.5
Requires-Dist: biopython>=1.83
Requires-Dist: pillow>=10.4.0

# SangerTraces

Plot Sanger sequencing trace data from AB1 files.

## Installation

```bash
pip install SangerTraces
```

## Usage

```python
from sangertraces import SangerTrace

trace = SangerTrace("example.ab1", 
                    color_scheme="ColorBlind", start = 10, end = 130, wrap_length = 80)
image = trace.plot_ab1_trace()
image.show()
```
#### Go to wiki: <a href = "https://github.com/anasgri/SangerTraces/wiki">SangerTraces Documentation</a> for more examples</p>
## Available color schemes

Nazgul, Simple, ColorBlind, Geneious-like, Hydrophobicity, HelixPropensity,
StrandPropensity, TurnPropensity, BuriedIndex

Call `SangerTrace.show_all_color_schemes()` to list them at runtime.

## License

MIT
