Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.1 KB

README.md

File metadata and controls

57 lines (43 loc) · 1.1 KB

build

mutants

Find mutants analyzing human DNA sequences.


Test Coverage

Live API


Install

Preparing enviroment

It's recommended to use Python venv to create an isolated environment.

Creating Python venv

$ python -m venv .venv

Activating Python venv

Unix systems:

$ source .venv/bin/activate

Windows:

$ .venv\Scripts\activate

Installing dependencies:

$ pip install -r requirements.txt

Starting web server for REST API

$ uvicorn main_api:app --reload

It should be runing on your localhost.

See local documentation.