Metadata-Version: 2.1
Name: eseq
Version: 0.0.2
Summary: Process genomic sequences.
Author-email: Tiezheng Yuan <tiezhengyuan@hotmail.com>
Project-URL: Homepage, https://github.com/Tiezhengyuan/bio_sequence.git
Project-URL: Issues, https://github.com/Tiezhengyuan/bio_sequence/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

#eSeq: process sequence

## introduction
The tool known as eSeq can offer methods for process various sequences. Those sequence could be DNA, RNA, amino acid sequence, etc.
- Detect specific sequence, namely palindromic, similarity etc.
- Iterator of sequence
- Trim adapter from sequence.
- Detect motif

quick installation
```
pip install eseq
```

## devlopment

Launch virtual environment.
```
git clone git@github.com:Tiezhengyuan/bio_sequence.git
cd bio_sequence
source venv/bin/activate
```

Run unit tests
```
pytest tests/unittests
```


## Quick tour

```
import eseq
```

