3 - FASTA, BLAST, sequence similarity statistics and homology detection Flashcards

1
Q

How are FASTA and BLAST different from NW and SW methods?

A

NW and SW are good for doing pairwise alignments between two sequences of interest.

But it’s way too slow to compare millions of pairwise alignments.

FASTA and BLAST are heuristic methods that can do this, though they are not guaranteed to find the globally optimal alignments (definition of heurisitic)

Though, both FASTA and BLAST are loosely based on the Smith-Waterman algoritithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the nr database?

A

Non-redundant database (non-currated / largest)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give the steps of the FASTA algorithm

A
  1. Makes words of length ktup
  2. For each database sequence entry, search for identities of words
  3. Rescan top 10 regions with BLOSUM or PAM
  4. Trim ends to include only residues contributing to the highest score. Attempt to join together compatible ungapped alignments with gap penalty (initn score).
  5. If score is > threshold, perform SW alignment to get optimized score
  6. Normalize optimum scores for sequence length (need to correct for longer sequences having increased opt scores). You get a Z score
  7. Evaluate statistical significance using the extreme value distribution (E score)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

List five types of BLAST

A
  • BLASTN
  • BLASTP
  • BLASTX (nucleotides - AA, tries the 6 different reading frames)
  • TBLASTN (protein query against nucleotides translated into protein, for identifying transcripts)
  • TBLASTX (Cross species gene prediction at the genome or transcript level, searching for genes missed by traditional methods or not yet in protein database.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does E mean in BLAST/FASTA?

A

THe expected number of scores equal or greater in identity to the alignment you’ve found.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Give the steps of BLAST

A
  1. Seeding
    - FInding matches of ungapped strings
    - Breaking sequences into triplet words
    - Find subs of each word that have similarity scores values >= T (threshold)
    - Stores the set of similar words
    - Searches database sequence for matching words
  2. Extension
    - Tries to extend forward and backwards word matches to make longer matches using BLOSUM62 (or another matrix)
    - Alignment is trimmed back to max score
  3. Evaluation
    - Is score >S (another threshold), then this High-scoring segment pair (HSP) is saved
    - Attempt to combine consistent HSPs and calculate probability (P(N)) for consistent matches
    - Reports significant HSPs
    - Calculates significance (E-values) for HSPs using Karlin-Altschul statistics (extreme value distribution etc.)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you tell if an alignment is significant?

A

Searching a database

  • Use the distribution of similarity scores amongst non-hit alignments
  • Theory for distribution of ungapped alignment score (Karlin and Altschul statistics)

Single pairwise alignments
- Monte-carlo test to calculate p-value for the real S

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the extreme value distribution?

A
  • Allows calculation of probability of a normalize similarity score for ungapped alignments
  • Gives a P-value and E-value (expect value) for a given database

The extreme value distribution is obtained by choosing the largest values from N independent and identically distributed samples from a population.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In FASTA and SW, what type of score distributions to you get in the output?

A
  • Expected (E-value)

- Observed (p-value)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

give the formula for an expect value (E)

A

E = kmne^-λs

k: constant
m: query sequence length
n: database sequence length
λ: scaling constant
s: SCORE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly