https://github.com/brianruizy/dna-sequencing
CS 3306 - Small C++ program that extracts matching patterns of an inputted DNA sequence, using Deterministic Finite Automata.
https://github.com/brianruizy/dna-sequencing
Last synced: 6 months ago
JSON representation
CS 3306 - Small C++ program that extracts matching patterns of an inputted DNA sequence, using Deterministic Finite Automata.
- Host: GitHub
- URL: https://github.com/brianruizy/dna-sequencing
- Owner: BrianRuizy
- Created: 2019-04-09T00:39:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T17:28:16.000Z (over 6 years ago)
- Last Synced: 2025-02-13T23:20:06.807Z (8 months ago)
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dna-sequencing
CS 3306 - C++ program that extracts matching patterns from a given input DNA sequence string, using Deterministic Finite Automata.## About
The scope of this program is to practice and showcase understanding of deterministic finite automata. In essence the program implements a deterministic finite automata (DFA) using C++ programming language to extract matching patterns from a given input DNA sequence string.