Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nishi1612/sequence-alignment-problem
CSCI570 Analysis of Algorithms Project: Sequence Alignment Problem
https://github.com/nishi1612/sequence-alignment-problem
analysis divide-and-conquer dynamic-programming memory-analysis python3 sequence-alignment time-complexity-analysis
Last synced: 10 days ago
JSON representation
CSCI570 Analysis of Algorithms Project: Sequence Alignment Problem
- Host: GitHub
- URL: https://github.com/nishi1612/sequence-alignment-problem
- Owner: nishi1612
- Created: 2022-10-18T06:36:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T19:31:23.000Z (about 2 years ago)
- Last Synced: 2024-11-06T01:50:51.258Z (about 2 months ago)
- Topics: analysis, divide-and-conquer, dynamic-programming, memory-analysis, python3, sequence-alignment, time-complexity-analysis
- Language: Python
- Homepage:
- Size: 1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sequence-Alignment-Problem
This repository contains files for Sequence Alignment Project for CSCI570 - Analysis of Algorithms.
Steps to run:
1. Run basic.sh to get results from dynamic programming version of Sequence Alignment problem.
2. Run efficient.sh to get results from divide-and-conquer version combined with dynamic programming version.Analysis/ folder consists of files needed to run memory and time analysis of the algorithms.