BLAT-Strands-And-Frames: Difference between revisions

From genomewiki
Jump to navigationJump to search
(Some initial notes about blat search types and strands and frames)
 
No edit summary
Line 8: Line 8:
BLAT
BLAT


---------------------------------------------------------
{| class="wikitable" style="text-align: center; width: 200px; height: 200px;"
|         Query          |      Target      |  Total  |
|+ Strands and Frames and Searches
|type  | Strands | Frames | Strands | Frames | Searches |
|-
---------------------------------------------------------
! Type
| dna |   2   |   1   |   1   |   1   |     2   |
! QStrands
| prot |   1   |   1   |   2   |   3   |     6   |
! QFrames
| rnax |   1   |   3   |   2   |   3   |   18   |
! TStrands
| dnax |   2   |   3   |   2   |   3   |   36   |
! TFrames
---------------------------------------------------------
! Searches
|-
 
! dna
| 2 || 1 || 1 || 1 || 2
|-
! prot
| 1 || 1 || 2 || 3 || 6
|-
! rnax
| 1 || 3 || 2 || 3 || 18
|-
! dnax
| 2 || 3 || 2 || 3 || 36
|}


For blat untranslated target index, it has only + strand indexed (in 1 frame).
For blat untranslated target index, it has only + strand indexed (in 1 frame).
Line 30: Line 44:
For dnax, it does rnax, then reverse-complements the query, then does rnax again.
For dnax, it does rnax, then reverse-complements the query, then does rnax again.


type Query Type
{| class="wikitable" style="text-align: center; width: 200px; height: 200px;"
dna = DNA
|+ Query Types
prot = Protein
|-
rnax = Translated RNA
! Type
dnax = Translated DNA
! Query Type
  ? = BLAT's Guess
|-
 
! dna
| DNA
|-
! prot
| Protein
|-
! rnax
| Translated RNA
|-
! dnax
| Translated DNA
|-
! ?
| BLAT's Guess
|}


For BLAT's Guess, it will only guess dna or protein.
For BLAT's Guess, it will only guess dna or protein.

Revision as of 05:48, 19 September 2018

hgBlat

Most people first meet BLAT though hgBlat on the UCSC Genome Browser. It talks to the gfServer, picking either the dna server or the translated server which are defined in the blatServers table.

BLAT

Strands and Frames and Searches
Type QStrands QFrames TStrands TFrames Searches
dna 2 1 1 1 2
prot 1 1 2 3 6
rnax 1 3 2 3 18
dnax 2 3 2 3 36

For blat untranslated target index, it has only + strand indexed (in 1 frame).

For blat translated target index, it has both + and - strands indexed in 3 frames.

For dna and dnax, it repeats the search after reverse-complementing the query.

For prot, it only has to deal with the frames and strands of the target. The query side is simple.

For rnax, it converts the query to rna in 3 frames, searching target 6 frames each time.

For dnax, it does rnax, then reverse-complements the query, then does rnax again.

Query Types
Type Query Type
dna DNA
prot Protein
rnax Translated RNA
dnax Translated DNA
? BLAT's Guess

For BLAT's Guess, it will only guess dna or protein. It will never guess rnax or dnax. Also it will only look at the first sequence submitted, and treat all the rest of the sequences submitted like that first one.