File: titv212.mat

package info (click to toggle)
last-align 963-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,380 kB
  • sloc: cpp: 41,136; python: 2,744; ansic: 1,240; makefile: 383; sh: 255
file content (18 lines) | stat: -rw-r--r-- 712 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This matrix assigns a score of 2 to matches, -1 to transitions, and
# -2 to transversions.  When used with a gap existence cost of 16 and
# a gap extension cost of 1, it gives very sensitive and accurate
# alignments of distantly-related protein-coding sequences (MC Frith
# et al. 2010, BMC Bioinformatics).  The next line tells LAST to use
# these gap costs:
#last -a 16 -b 1
# Let's also use a minimum alignment score of 90:
#last -e 90
# lastex suggests that 90 is not unreasonable for comparing mammalian
# genomes.  In any case, you can override these parameters by setting
# options when running LAST.  Finally, here is the matrix:

   A  C  G  T
A  2 -2 -1 -2
C -2  2 -2 -1
G -1 -2  2 -2
T -2 -1 -2  2