Wytamma / Rosalind

My solutions to the problems found on rosalind.info

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rosalind solutions

Build Status codecov image

My solutions to the problems found on rosalind.info

Solution template

SAMPLE_DATASET = """"""
SAMPLE_OUTPUT = """"""

def solution(dataset: list) -> str:
    pass

def test_solution():
    assert solution(SAMPLE_DATASET.splitlines(True)) == SAMPLE_OUTPUT

CLI

The file rosalind.py contains a cli that can be used to run and test solutions.

Testing

$ python rosalind.py NAME_OF_PROBLEM --test

Running

$ python rosalind.py NAME_OF_PROBLEM --dataset PATH_TO_DATASET

About

My solutions to the problems found on rosalind.info

License:MIT License


Languages

Language:Python 100.0%