- One Of The Important Tasks In Computational Biology Is To Find Short Repeating Patterns From Dna Sequences These Patter 1 (71.53 KiB) Viewed 31 times
One of the important tasks in computational biology is to find short repeating patterns from DNA sequences. These patter
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
One of the important tasks in computational biology is to find short repeating patterns from DNA sequences. These patter
One of the important tasks in computational biology is to find short repeating patterns from DNA sequences. These patterns help the biologists to analyze the functionality of different parts in a living being. As a computer science student, you are asked to write a program that will find all the patterns of a given length from a DNA sequence and their number of presence in that sequence. This information will help to find the dominant pattern of a given length in the sequence. You will also find the dominant pattern. Dominant pattern is the sequence which has maximum occurrence. If there are multiple dominant pattern the program will print “No Dominant Pattern found.” Sample Input: ATTCGATCG 3 Sample Output: ATT 1 TTC 1 TCG 2 CGA 1 GAT 1 ATC 1 Dominant Pattern: TCG