Metadata-Version: 2.1
Name: variation_number
Version: 0.1.5
Summary: A package for computing variation numbers
Author: Jiaying Lai
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# variation_number

A package for calculating the variation number of nucleotide/protein sequence using sequence orthologs.

This package can be found on [GitHub](https://github.com/jiaying2508/variation_number).

### Features

- Download orthologs
- Build phylogenetic trees
- Generate variation numbers

### Usage

```
import variation_number as vn
import os
gene = 'BRCA1'
seqtype =' protein'
outputDir = '{}/output'.format(os.getcwd())

# Download orthologs from NCBI orthologs database
acc = vn.getFasta(gene, outputDir,seqtype,refseqID=None)

# Calculate variation numbers
vn.processVN(gene, outputDir, acc, seqtype)
```


