UNIT 1 Flashcards
What’s a gene?
1) A biological unit of heredity
2) A segment of DNA which codes for protien
What’s a genome? and its types?
A) 1)Complete set of Genetic material in an organism 2)Blueprint of life 3)Encoded in DNA or RNA 4)Consists Both Coding and Non-coding Sequences of DNA and RNA B) 1)Prokaryotic genomes, 2)Eukaryotic Genomes, 3)Nuclear Genomes, 4)Mitochondrial genomes, 5)Chloroplast genomes
What is a histone?
1) Histones are highly basic proteins found in Eukaryotic cell nuclei
2) Combines ionically with DNA to form Nucleoprotien
What is a Nucleosome?
1)A structural unit of a eukaryotic chromosome, where each Nucleosome Consist of 8 histone proteins where DNA coils around 1.65 times
What are the 3 components of Bioinformatics?
1) Creating Databases
2) Development of algorithms and statistics
3) Data analysis and interpretation
What is Genome replication?
1) Most important task carried out in a cell
2) Replication begins with a pair of complimentary strand and ends with 2 pairs of complimentary strands
3) Parent strand during replication acts a template for the synthesis for the new strand
What are Strings, Graphs and Mapping Algorithms?
• Strings: Rabin Karp, finite automata, KMP algorithm,
Boyer Moore algorithm & suffix tree.
• Graphs: Interval graphs.
• Mapping: Restriction site Mapping Algorithms, Partial
digest,Double Digest Problem (DDP) – Simulated annealing, circular maps, Fitting data to maps.
• Radiation hybrid mapping and Optical mapping. Longest common substring and longest common subsequence
String?
Is an ordered succession of characters or symbols drawn from the finite set called Alphabets
1) Examples are mostly of 2 types
i)DNA-A,C,G,T
ii)20 Amino acids
2)String S is an ordered list of characters which is written left to right S = AACCGT
S(i)- i denotes to the character at position i
Substring?
Substring of S is formed from the consecutive Characters of S in the order as of S
Eg; TAC is a Substring of AGTAC not of ATGAC
Subsequence?
Subsequence of S is a sequence which is formed by removal of some characters
Eg: S = AATGCA ; Subsequence : ATG , TCA
|S|
Length of a string,Number of characters in it.
Eg: |S|=6
S[i]
The character occupying position i in a string s
s[1] = A, s[2] = A, s [3] = T
Empty String?
String of Length Zero is denoted by ε.
Supersequence?
Ex: W = TTA and U = CTTTAGCATTAA
When Sequence W is a subsequence of sequence U,Then U is said to be the Supersequence of W.
Concatenation?
Ex: s = GGCTA and t = CAAC, then st = GGCTACAAC
The concatenation of two strings s and t is denoted by st and is formed
by appending all characters of t after s
The length of st is |s|+ |t |.