Metadata-Version: 2.1
Name: translate6frames
Version: 0.1.3
Summary: translate genes RNA/DNA to proteins (all 6 frames)
Home-page: https://github.com/khaledianehdieh/translate6frames
Author: Ehdieh Khaledian
Author-email: khaledianehdieh@gmail.com
License: MIT
Download-URL: https://pypi.org/project/translate6frames/
Keywords: Translate genes,6 frame,gene to protein,python DNA to protein,python,RNA to protein
Platform: UNKNOWN
Description-Content-Type: text/markdown

Useful tool to translate gene sequences to protein sequences

# Description
    
This tool consists one module:

- `translate6frames`: tool to translate gene sequences to protein sequences (all 6 frames)

# Installation
 
## Normal installation

```bash
pip install translate6frames
```

## Development installation

```bash
git clone https://github.com/khaledianehdieh/translate6frames.git
```

## Usage

```bash
python3
>>> from translate6frames import translate6frames as TF
>>> p= TF.translate6frames(FASTA_FILE, TYPE) # FASTA_FILE is the input gene file, the TYPE is "DNA", or "RNA"
>>> p.Output() # returns 6 fasta files, one for each frame (direct/reverse), and a csv file that contains all 6 frames in 6 columns

```


# Change log

## [0.1] - 2021-08-01
- Created



