Metadata-Version: 2.1
Name: msastats
Version: 26.4.2
Summary: Simple utility to compute MSA summary statistics
Author: Elya Wygoda
Author-email: elya.wygoda@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: pytest >=6.0 ; extra == 'test'

# MSAStats

A simple utility to compute multiple sequence alignment statistics.

# Example usage:

```python
import msastats

# To calculate based on a list of string sequences:
msastats.calculate_msa_stats(["AA-A","AA-A","A--A"])

# To calculate based on a fasta msa file:
msastats.calculate_fasta_stats("/path/to/file.fasta")

# Get a list of the summary statistics names:
msastats.stats_names()
```
