File: spelling.patch

package info (click to toggle)
wise 2.4.1-27
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 39,204 kB
  • sloc: ansic: 276,369; makefile: 1,021; perl: 886; lex: 93; yacc: 81; sh: 25
file content (3358 lines) | stat: -rw-r--r-- 139,398 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
Author: Andreas Tille <tille@debian.org>
Last-Update: 2017-09-22
Description: Fix spelling issues
Forwarded: not-needed

--- a/src/dynlibsrc/hscore.c
+++ b/src/dynlibsrc/hscore.c
@@ -413,7 +413,7 @@
   if( hs->st_len == 0 ) {
     new = new_DataScoreStorage();
     if( new == NULL ) {
-      warn("could not make inital data score storage!");
+      warn("could not make initial data score storage!");
       return NULL;
     }
     add_st_Hscore(hs,new);
--- a/src/dynlibsrc/hscore.dy
+++ b/src/dynlibsrc/hscore.dy
@@ -422,7 +422,7 @@
   if( hs->st_len == 0 ) {
     new = new_DataScoreStorage();
     if( new == NULL ) {
-      warn("could not make inital data score storage!");
+      warn("could not make initial data score storage!");
       return NULL;
     }
     add_st_Hscore(hs,new);
--- a/docs/dynamite.tex
+++ b/docs/dynamite.tex
@@ -240,7 +240,7 @@
 communication is on a biologically 'logical' level so theoretically
 one can drop out the dynamite run-time library, replace it with one's
 own specific biological typed library (the ncbi toolkit for example)
-and recompile with a new 'methods' file. This has to assumme that
+and recompile with a new 'methods' file. This has to assume that
 certain biological concepts are represented in a particular way (for
 example, Base A is represented by 0, Base C 1 etc), but does allow the
 underlying data structures complete freedom.
@@ -2839,7 +2839,7 @@
 Once all the semantics of the Dynamite blueprint is ok, the compiler then turns its
 attention to the calc lines. This is like a mini-parser operating inside the dynamite
 parser, but unlike the dynamite parser, this once was written in yacc/lex and is
-a more vanilla parser enviroment.
+a more vanilla parser environment.
 
 \subsubsection{Parser Syntax error on calc line}
 
--- a/docs/wise2.tex
+++ b/docs/wise2.tex
@@ -121,7 +121,7 @@
         Could not read a GeneFrequency file in human.gf
 ...
 \end{verbatim}
-This means that the enviroment variable WISECONFIGDIR has not been
+This means that the environment variable WISECONFIGDIR has not been
 set up correctly. You need to find where the distribution was downloaded
 to (a directory called something like wise2.1.16b) and inside that
 directory should be the configuration directory wisecfg. You need to
@@ -427,14 +427,14 @@
 \begin{verbatim}
 genewisedb -pfam Pfam -dnas myseq.fa
 \end{verbatim}
-If you have set up the HMMER package to work with Pfam using the enviroment
+If you have set up the HMMER package to work with Pfam using the environment
 variable HMMERDB, Wise2 will also pick that up as well.
 
 
 
 \subsubsection{Optimising alignment speed}
 
-Wise2 assummes you have a rather small amount of memory (20 MBytes).
+Wise2 assumes you have a rather small amount of memory (20 MBytes).
 When it is making an alignment, if it cannot make the explicit matrix
 in that size (being length of query $\times$ length of target $\times$
 state number) it has to move to linear memory (length of query
@@ -444,7 +444,7 @@
 If you have more memory than 20 Mbytes, then it is really sensible to
 up the number, using the -kbyte option. For a machine with say
 64Mbytes physical memory I would suggest putting an upper limit of
-50Mbytes with -kbyte. This does assumme you are not using it for
+50Mbytes with -kbyte. This does assume you are not using it for
 anything else.
 
 You can change the compile time default in basematrix.h if you can't
@@ -576,7 +576,7 @@
 (of course, your version of Wise2 might be different). 
 
 Once you have made the tar file, it should build completely cleanly as
-long as you have an ANSI C compiler. If in doubt, just assumme that it
+long as you have an ANSI C compiler. If in doubt, just assume that it
 is, but in particular sun users might want to use gcc (gnu cc) as the
 sun cc compiler installed by default is often non-ANSI. To change the
 cc compiler you only need to edit the line in the top level makefile
@@ -675,7 +675,7 @@
 of the probability.
 
 Perhaps a better known example is the relationship between the old
-profile technology, as developped by Gribskov and Gibson along with
+profile technology, as developed by Gribskov and Gibson along with
 others, and its probabilistic partner, profile Hidden Markov Models
 (profile HMMs).  In terms of the actual algorithm these two methods
 are very similar: it is simply that the profile HMM has a strong
@@ -804,7 +804,7 @@
 given in half bits, in other words using a 2*log2 mapping from
 probability space to the give scores in the matrix.  By reversing this
 process one can get pretty good emission probability for the amino
-acids. I now assumme that the gap penalities are \emph{as if} they were
+acids. I now assume that the gap penalities are \emph{as if} they were
 written in half bits. A certain amount of normalisation is required to
 make sure things add to one, and eh voila - one profile HMM from a
 single sequence.
@@ -870,7 +870,7 @@
 splice sites overlap between their consensi and the coding sequence
 region. These overlaps need to be treated correctly: the problem is
 that probabilistically we have two processes wanting to account for
-the same DNA bases. This was solved by assumming conditional
+the same DNA bases. This was solved by assuming conditional
 independence between the two processes. A more formal mathematicall
 approach can be found in the documented called 'probappendix'.
 
@@ -1075,7 +1075,7 @@
 searches.
 
 I have been thinking about using a classical statistic method on top
-of the bit score, assumming the distribution is an extreme value
+of the bit score, assuming the distribution is an extreme value
 distribution (EVD), but for DNA it becomes difficult to know what to
 do with the problem of different lengths of DNA. As these can be
 wildly different, it is hard to know precisely how to handle
@@ -1222,12 +1222,12 @@
 \item[-gene] [human.gf] Gene parameter file. Provide statistics for
 different gene models. Current human.gf and worm.gf are provided. The
 statistics are basically too complicated to explain here.
-\item[-subs] [1e-05] Substitution error rate, ie the assummed
+\item[-subs] [1e-05] Substitution error rate, ie the assumed
 probability of base substitutions in the sequencing reaction/assembly
 that provided the DNA sequence. The substituion error is what
 dominates the penalty for stop codons - a higher error rate implies a
 smaller penalty for stop codons
-\item[-indel] [1e-05] Insertion/deletion error rate, ie the assummed
+\item[-indel] [1e-05] Insertion/deletion error rate, ie the assumed
 probability of indel events in the sequencing reaction/assembly that
 provided the DNA sequence. The indel rate is what provides the penalty
 for frameshift errors. A higher error rate implies a smaller penalty
@@ -1475,10 +1475,10 @@
 
 \item[-codon]  [codon.table]  Codon file. The default is for the universal code, but
 you can supply your own
-\item[-subs]   [0.01] Substitution error rate, ie the assummed probability of base substitutions
+\item[-subs]   [0.01] Substitution error rate, ie the assumed probability of base substitutions
 in the sequencing reaction/assembly that provided the DNA sequence. The substituion error is what dominates
 the penalty for stop codons - a higher error rate implies a smaller penalty for stop codons
-\item[-indel]  [0.01] Insertion/deletion error rate, ie the assummed probability of indel events
+\item[-indel]  [0.01] Insertion/deletion error rate, ie the assumed probability of indel events
 in the sequencing reaction/assembly that provided the DNA sequence. The indel rate is what provides
 the penalty for frameshift errors. A higher error rate implies a smaller penalty for indels.
 \item[-null]   [syn/flat]   Random Model as synchronous or flat [default syn]
@@ -1580,8 +1580,8 @@
 for that matter, but in theory it should work better for orthologous
 regulatory regions, depending on how much active change you expect
 paralogous regulatory regions to have). Promoterwise reports alignments 
-between these two sequences assumming that alignments cannot overlap in
-both sequences, but *not* assumming that the alignments have to be co
+between these two sequences assuming that alignments cannot overlap in
+both sequences, but *not* assuming that the alignments have to be co
 linear or on the same strand.
 
 
@@ -1639,7 +1639,7 @@
 \subsection{dba - Dna Block Aligner}
 \label{sec:dba}
 
-dba - standing for Dna Block Aligner, was developped by Niclas Jareborg,
+dba - standing for Dna Block Aligner, was developed by Niclas Jareborg,
 Richard Durbin and Ewan Birney for characterising shared regulatory regions
 of genomic DNA, either in upstream regions or introns of genes
 
--- a/src/base/wisefile.c
+++ b/src/base/wisefile.c
@@ -295,7 +295,7 @@
     return ifp;
   
   else if ( shouldreporterror )
-    log_full_error(INFO,0,"Expanded personal direcotry open for[%s,%s], expanded to %s failed: Error message is %s",filename,prot,buffer,ERRORSTR);
+    log_full_error(INFO,0,"Expanded personal directory open for[%s,%s], expanded to %s failed: Error message is %s",filename,prot,buffer,ERRORSTR);
   
   
   /* next line ABSOLUTELY relies on order of evaluation */
@@ -329,7 +329,7 @@
  *
  *
  *
- * Arg:         envname [READ ] enviroment variable to read from [NullString]
+ * Arg:         envname [READ ] environment variable to read from [NullString]
  * Arg:        filename [UNKN ] Undocumented argument [char *]
  * Arg:            name [READ ] filename to open [NullString]
  * Arg:             env [UNKN ] Undocumented argument [char *]
@@ -344,17 +344,17 @@
   char path [512];
 
   if( filename == NULL || env == NULL ) {
-    warn("Passed a NULL filename or enviroment name into Envfile. Should trap this elsewhere");
+    warn("Passed a NULL filename or environment name into Envfile. Should trap this elsewhere");
     return NULL;
   }
 
   if( (envp = getenv(env)) == NULL ) {
-    /* fail gracefully - somebody might query a number of enviroment variables */
+    /* fail gracefully - somebody might query a number of environment variables */
     return NULL;
   }
 
   if( strlen(filename) + strlen(envp) < 490 ) {
-    warn("Really long filename/enviroment variables [%s] [%s] Can't cope!",filename,envp);
+    warn("Really long filename/environment variables [%s] [%s] Can't cope!",filename,envp);
     return NULL;
   }
   sprintf(path,"%s/%s",filename,envp);
--- a/src/base/wisefile.dy
+++ b/src/base/wisefile.dy
@@ -269,7 +269,7 @@
     return ifp;
   
   else if ( shouldreporterror )
-    log_full_error(INFO,0,"Expanded personal direcotry open for[%s,%s], expanded to %s failed: Error message is %s",filename,prot,buffer,ERRORSTR);
+    log_full_error(INFO,0,"Expanded personal directory open for[%s,%s], expanded to %s failed: Error message is %s",filename,prot,buffer,ERRORSTR);
   
   
   /* next line ABSOLUTELY relies on order of evaluation */
@@ -302,7 +302,7 @@
 
 %arg
 name r filename to open
-envname r enviroment variable to read from
+envname r environment variable to read from
 return a valid file pointer or NULL
 %%
 FILE * envopenfile(char * filename,char * env)
@@ -311,17 +311,17 @@
   char path [512];
 
   if( filename == NULL || env == NULL ) {
-    warn("Passed a NULL filename or enviroment name into Envfile. Should trap this elsewhere");
+    warn("Passed a NULL filename or environment name into Envfile. Should trap this elsewhere");
     return NULL;
   }
 
   if( (envp = getenv(env)) == NULL ) {
-    /* fail gracefully - somebody might query a number of enviroment variables */
+    /* fail gracefully - somebody might query a number of environment variables */
     return NULL;
   }
 
   if( strlen(filename) + strlen(envp) < 490 ) {
-    warn("Really long filename/enviroment variables [%s] [%s] Can't cope!",filename,envp);
+    warn("Really long filename/environment variables [%s] [%s] Can't cope!",filename,envp);
     return NULL;
   }
   sprintf(path,"%s/%s",filename,envp);
--- a/src/base/wisefile.h
+++ b/src/base/wisefile.h
@@ -143,7 +143,7 @@
  *
  *
  *
- * Arg:         envname [READ ] enviroment variable to read from [NullString]
+ * Arg:         envname [READ ] environment variable to read from [NullString]
  * Arg:        filename [UNKN ] Undocumented argument [char *]
  * Arg:            name [READ ] filename to open [NullString]
  * Arg:             env [UNKN ] Undocumented argument [char *]
--- a/LICENSE
+++ b/LICENSE
@@ -19,7 +19,7 @@
 
 The HMMer2 libaries (Sean Eddy's HMM package) and the models directory
 (The algorithms for the Wise2 package, and final executable programs)
-are both distributed under a Gnu General Public License (GPL). This
+are both distributed under a GNU General Public License (GPL). This
 means that the entire package as it is distributed with these portions
 in is also licensed under GPL, due to the 'infectious' nature of the
 GPL.
--- a/docs/wise3arch.tex
+++ b/docs/wise3arch.tex
@@ -49,7 +49,7 @@
 
 \subsection{Committment to open source, freely available code}
 
-The Wise2 package has been licensed under the Gnu Public License since
+The Wise2 package has been licensed under the GNU General Public License since
 its inception.  In addition, parts of the package has even less
 restrictive Licenses. I have a strong committment to keep Wise a
 freely available, open source package. The aim of the open
--- a/src/corba/scanwise_protein_index.c
+++ b/src/corba/scanwise_protein_index.c
@@ -19,7 +19,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/dnaindex/assembly/badkmer.c
+++ b/src/dnaindex/assembly/badkmer.c
@@ -25,7 +25,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EBI 2003\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/dnaindex/assembly/pathwise.c
+++ b/src/dnaindex/assembly/pathwise.c
@@ -40,7 +40,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EBI 2003\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/dnaindex/bigseqwise.c
+++ b/src/dnaindex/bigseqwise.c
@@ -10,7 +10,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/dnaindex/findbad_kmer.c
+++ b/src/dnaindex/findbad_kmer.c
@@ -13,7 +13,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/dnaindex/kwise.c
+++ b/src/dnaindex/kwise.c
@@ -15,7 +15,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/alignwise.c
+++ b/src/models/alignwise.c
@@ -61,7 +61,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/amplimer_resolver.c
+++ b/src/models/amplimer_resolver.c
@@ -10,7 +10,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/cdnawise.c
+++ b/src/models/cdnawise.c
@@ -15,7 +15,7 @@
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
 
 
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL (2001) and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/clonewise.c
+++ b/src/models/clonewise.c
@@ -25,7 +25,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/dbac.c
+++ b/src/models/dbac.c
@@ -363,7 +363,7 @@
   fprintf(ofp,"  Released %s\n",RELEASE_DAY);  
   fprintf(ofp,"  Compiled %s\n",COMPILE_DATE);  
   fprintf(ofp,"dba was written by Niclas Jareborg, Ewan Birney and Richard Durbin\n");  
-  fprintf(ofp,"Copyright (c) 1998,1999,2000,2001 GRL ltd. It is distributed under a Gnu Public License\n");  
+  fprintf(ofp,"Copyright (c) 1998,1999,2000,2001 GRL ltd. It is distributed under a GNU General Public License\n");  
   fprintf(ofp,"See GNULICENSE in source directory for more information\n");  
 }  
 
--- a/src/models/dnal.c
+++ b/src/models/dnal.c
@@ -104,7 +104,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/dnawise.c
+++ b/src/models/dnawise.c
@@ -8,7 +8,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/editdist.c
+++ b/src/models/editdist.c
@@ -8,7 +8,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/estwise.c
+++ b/src/models/estwise.c
@@ -557,7 +557,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/estwisedb.c
+++ b/src/models/estwisedb.c
@@ -206,7 +206,7 @@
 
   if( make_anchored_aln == TRUE ) {
     if( tsm == NULL ) {
-      warn("Attempting to make an achored alignment without a HMM. impossible!");
+      warn("Attempting to make an anchored alignment without a HMM. impossible!");
       make_anchored_aln = FALSE;
     } else {
       anchored = single_unit_AlnBlock(tsm->len,"MATCH_STATE");
@@ -807,7 +807,7 @@
   fprintf(ofp,"-------------------------------------------------------------\n");
   fprintf(ofp,"Wise2 - database searching mode\n");
   fprintf(ofp,"Program: %s version: %s released: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY);
-  fprintf(ofp,"This program is freely distributed under a Gnu Public License.\n");
+  fprintf(ofp,"This program is freely distributed under a GNU General Public License.\n");
   fprintf(ofp,"   See -version for more info on copyright\n");
   fprintf(ofp,"Bugs and credits to Ewan Birney <birney@sanger.ac.uk>\n");
   fprintf(ofp,"-------------------------------------------------------------\n\n");
@@ -836,7 +836,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/evopairwise.c
+++ b/src/models/evopairwise.c
@@ -15,7 +15,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/fivestar.c
+++ b/src/models/fivestar.c
@@ -14,7 +14,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/fivestarscan.c
+++ b/src/models/fivestarscan.c
@@ -14,7 +14,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/fivestarsearch.c
+++ b/src/models/fivestarsearch.c
@@ -12,7 +12,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/genewise.c
+++ b/src/models/genewise.c
@@ -858,7 +858,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/genewisedb.c
+++ b/src/models/genewisedb.c
@@ -505,7 +505,7 @@
 {
   fprintf(ofp,"Wise2 - database searching mode\n");
   fprintf(ofp,"Program: %s version: %s released: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY);
-  fprintf(ofp,"This program is freely distributed under a Gnu Public License.\n");
+  fprintf(ofp,"This program is freely distributed under a GNU General Public License.\n");
   fprintf(ofp,"   See -version for more info on copyright\n");
   fprintf(ofp,"Bugs and credits to Ewan Birney <birney@sanger.ac.uk>\n");
   fprintf(ofp,"-----------------------------------------------------\n\n");
@@ -1003,7 +1003,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/genomewise.c
+++ b/src/models/genomewise.c
@@ -16,7 +16,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/lba.c
+++ b/src/models/lba.c
@@ -8,7 +8,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/motifcluster.c
+++ b/src/models/motifcluster.c
@@ -8,7 +8,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/motifdiff.c
+++ b/src/models/motifdiff.c
@@ -8,7 +8,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/motifwise.c
+++ b/src/models/motifwise.c
@@ -8,7 +8,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/oldpostwise.c
+++ b/src/models/oldpostwise.c
@@ -375,7 +375,7 @@
 void show_version(void)
 {
   fprintf(stdout,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(stdout,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(stdout,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(stdout,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(stdout,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(stdout,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/promotercluster.c
+++ b/src/models/promotercluster.c
@@ -7,7 +7,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/promoterwise.c
+++ b/src/models/promoterwise.c
@@ -15,7 +15,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/pseudowise.c
+++ b/src/models/pseudowise.c
@@ -13,7 +13,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/psw.c
+++ b/src/models/psw.c
@@ -259,7 +259,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) GRL 1998 and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/pswdb.c
+++ b/src/models/pswdb.c
@@ -95,7 +95,7 @@
 void show_version(void)
 {
   fprintf(stdout,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(stdout,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(stdout,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(stdout,"The source code is copyright (c) EMBL 1998 and others\n");
   fprintf(stdout,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(stdout,"For more information read the GNULICENSE file in the distribution\n\n");
@@ -347,7 +347,7 @@
   fprintf(ofp,"-------------------------------------------------------------\n");
   fprintf(ofp,"Wise2 - Protein vs. Protein\n");
   fprintf(ofp,"Program: %s version: %s released: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY);
-  fprintf(ofp,"This program is freely distributed under a Gnu Public License.\n");
+  fprintf(ofp,"This program is freely distributed under a GNU General Public License.\n");
   fprintf(ofp,"   See -version for more info on copyright\n");
   fprintf(ofp,"Bugs and credits to: Richard Copley <copley@embl-heidelberg.de>\n"); 
   fprintf(ofp,"                     Ewan Birney <birney@sanger.ac.uk>\n");
--- a/src/models/scanwisep.c
+++ b/src/models/scanwisep.c
@@ -421,7 +421,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/statwise.c
+++ b/src/models/statwise.c
@@ -11,7 +11,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/models/sywise.c
+++ b/src/models/sywise.c
@@ -12,7 +12,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/network/wise_proteinindex_server.c
+++ b/src/network/wise_proteinindex_server.c
@@ -26,7 +26,7 @@
 void show_version(FILE * ofp)
 {
   fprintf(ofp,"%s\nVersion: %s\nReleased: %s\nCompiled: %s\n",program_name,VERSION_NUMBER,RELEASE_DAY,COMPILE_DATE);
-  fprintf(ofp,"\nThis program is freely distributed under a Gnu Public License\n");
+  fprintf(ofp,"\nThis program is freely distributed under a GNU General Public License\n");
   fprintf(ofp,"The source code is copyright (c) EMBL and others\n");
   fprintf(ofp,"There is no warranty, implied or otherwise on the performance of this program\n");
   fprintf(ofp,"For more information read the GNULICENSE file in the distribution\n\n");
--- a/src/test/estwise-db.out
+++ b/src/test/estwise-db.out
@@ -1,7 +1,7 @@
 -------------------------------------------------------------
 Wise2 - database searching mode
 Program: estwisedb version: $Name: wise2-4-1 $ released: unreleased
-This program is freely distributed under a Gnu Public License.
+This program is freely distributed under a GNU General Public License.
    See -version for more info on copyright
 Bugs and credits to Ewan Birney <birney@sanger.ac.uk>
 -------------------------------------------------------------
--- a/src/test/genewise-db-lite.out
+++ b/src/test/genewise-db-lite.out
@@ -1,6 +1,6 @@
 Wise2 - database searching mode
 Program: genewisedb version: $Name: wise2-4-1 $ released: unreleased
-This program is freely distributed under a Gnu Public License.
+This program is freely distributed under a GNU General Public License.
    See -version for more info on copyright
 Bugs and credits to Ewan Birney <birney@sanger.ac.uk>
 -----------------------------------------------------
--- a/src/test/genewise-db.out
+++ b/src/test/genewise-db.out
@@ -1,6 +1,6 @@
 Wise2 - database searching mode
 Program: genewisedb version: $Name: wise2-4-1 $ released: unreleased
-This program is freely distributed under a Gnu Public License.
+This program is freely distributed under a GNU General Public License.
    See -version for more info on copyright
 Bugs and credits to Ewan Birney <birney@sanger.ac.uk>
 -----------------------------------------------------
--- a/src/test/genewisedb-pfam.out
+++ b/src/test/genewisedb-pfam.out
@@ -1,6 +1,6 @@
 Wise2 - database searching mode
 Program: genewisedb version: $Name: wise2-4-1 $ released: unreleased
-This program is freely distributed under a Gnu Public License.
+This program is freely distributed under a GNU General Public License.
    See -version for more info on copyright
 Bugs and credits to Ewan Birney <birney@sanger.ac.uk>
 -----------------------------------------------------
--- a/src/test/pswdb.out
+++ b/src/test/pswdb.out
@@ -1,7 +1,7 @@
 -------------------------------------------------------------
 Wise2 - Protein vs. Protein
 Program: pswdb version: $Name: wise2-4-1 $ released: unreleased
-This program is freely distributed under a Gnu Public License.
+This program is freely distributed under a GNU General Public License.
    See -version for more info on copyright
 Bugs and credits to: Richard Copley <copley@embl-heidelberg.de>
                      Ewan Birney <birney@sanger.ac.uk>
--- a/src/models/genefrequency.c
+++ b/src/models/genefrequency.c
@@ -459,7 +459,7 @@
 
     if( strwhitestartcmp(buffer,"type",spacestr) == 0 ) {
 
-      phase = 3; /** if no phase, assumme it is for all phases **/
+      phase = 3; /** if no phase, assume it is for all phases **/
 
       type = check_type_GeneFrequency(buffer,ifp,&center,&phase);
       
@@ -636,7 +636,7 @@
   ret = strtod(runner,&end);
 
   if( end == runner || isalnum((int)*end) ) {
-    warn("Bad conversion of string [%s] to double [%f] occured",runner,ret);
+    warn("Bad conversion of string [%s] to double [%f] occurred",runner,ret);
   }
 
   return ret;
@@ -810,7 +810,7 @@
   
 /* Function:  read_base_GeneConsensus(base_array,line,ifp)
  *
- * Descrip:    assummes base_array is 4 positions long
+ * Descrip:    assumes base_array is 4 positions long
  *               
  *             line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
  *               
@@ -877,7 +877,7 @@
 
 /* Function:  read_codon_GeneConsensus(codon_array,line,ifp)
  *
- * Descrip:    assummes codon_array is 64 positions long
+ * Descrip:    assumes codon_array is 64 positions long
  *               
  *             line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
  *
--- a/src/models/genefrequency.dy
+++ b/src/models/genefrequency.dy
@@ -428,7 +428,7 @@
 
     if( strwhitestartcmp(buffer,"type",spacestr) == 0 ) {
 
-      phase = 3; /** if no phase, assumme it is for all phases **/
+      phase = 3; /** if no phase, assume it is for all phases **/
 
       type = check_type_GeneFrequency(buffer,ifp,&center,&phase);
       
@@ -597,7 +597,7 @@
   ret = strtod(runner,&end);
 
   if( end == runner || isalnum((int)*end) ) {
-    warn("Bad conversion of string [%s] to double [%f] occured",runner,ret);
+    warn("Bad conversion of string [%s] to double [%f] occurred",runner,ret);
   }
 
   return ret;
@@ -745,7 +745,7 @@
 }
   
 %func
-assummes base_array is 4 positions long
+assumes base_array is 4 positions long
   
 line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
   
@@ -802,7 +802,7 @@
 
 
 %func
-assummes codon_array is 64 positions long
+assumes codon_array is 64 positions long
   
 line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
 
--- a/src/models/seqerror.dy
+++ b/src/models/seqerror.dy
@@ -42,7 +42,7 @@
 SequenceErrorSet * ses
 %info
 This holds a sequence and what
-errors have occured in it.
+errors have occurred in it.
 %%
 
 
--- a/src/models/seqerror.h
+++ b/src/models/seqerror.h
@@ -72,7 +72,7 @@
 /* Object ErrorSequence
  *
  * Descrip: This holds a sequence and what
- *        errors have occured in it.
+ *        errors have occurred in it.
  *
  *
  */
--- a/src/dynlibsrc/hspscaninterface.c
+++ b/src/dynlibsrc/hspscaninterface.c
@@ -158,7 +158,7 @@
 void show_help_HSPScanInterfacePara(FILE * ofp)
 {
   fprintf(ofp,"Parameters for word scan\n");
-  fprintf(ofp,"   -hspscan_impl [vanilla/threaded/twohit] implementation to use if compliled for runtime\n");
+  fprintf(ofp,"   -hspscan_impl [vanilla/threaded/twohit] implementation to use if compiled for runtime\n");
   fprintf(ofp,"   -hspscan_maxres    [100] maximum results returned by scan\n");
   fprintf(ofp,"   -hspscan_numb     [1000] word count to numb word (for low complexity)\n");
   fprintf(ofp,"   -hspscan_worddepth   [2] maximum offset from word - [0,1,2]\n");
--- a/src/dynlibsrc/hspscaninterface.dy
+++ b/src/dynlibsrc/hspscaninterface.dy
@@ -157,7 +157,7 @@
 void show_help_HSPScanInterfacePara(FILE * ofp)
 {
   fprintf(ofp,"Parameters for word scan\n");
-  fprintf(ofp,"   -hspscan_impl [vanilla/threaded/twohit] implementation to use if compliled for runtime\n");
+  fprintf(ofp,"   -hspscan_impl [vanilla/threaded/twohit] implementation to use if compiled for runtime\n");
   fprintf(ofp,"   -hspscan_maxres    [100] maximum results returned by scan\n");
   fprintf(ofp,"   -hspscan_numb     [1000] word count to numb word (for low complexity)\n");
   fprintf(ofp,"   -hspscan_worddepth   [2] maximum offset from word - [0,1,2]\n");
--- a/src/dyc/dbthread.c
+++ b/src/dyc/dbthread.c
@@ -311,7 +311,7 @@
       expr(dfp,"holder->%s = %s(holder->querydb,&db_status);",gm->query->name,gm->qtype->init_func);
       expr(dfp,"holder->query_init = TRUE;");
       expr(dfp,"if( db_status == DB_RETURN_ERROR )");
-      hang_expr(dfp,"fatal(\"Unable to initalise query database in %s search\");",gm->name);
+      hang_expr(dfp,"fatal(\"Unable to initialise query database in %s search\");",gm->name);
       closebrace(dfp);
       expr(dfp,"%s = %s(holder->%s);",gm->query->name,gm->qtype->hard_link_func,gm->query->name);
       add_block_comment(dfp,"get query information into datascore");
--- a/src/dyc/dbthread.dy
+++ b/src/dyc/dbthread.dy
@@ -300,7 +300,7 @@
       expr(dfp,"holder->%s = %s(holder->querydb,&db_status);",gm->query->name,gm->qtype->init_func);
       expr(dfp,"holder->query_init = TRUE;");
       expr(dfp,"if( db_status == DB_RETURN_ERROR )");
-      hang_expr(dfp,"fatal(\"Unable to initalise query database in %s search\");",gm->name);
+      hang_expr(dfp,"fatal(\"Unable to initialise query database in %s search\");",gm->name);
       closebrace(dfp);
       expr(dfp,"%s = %s(holder->%s);",gm->query->name,gm->qtype->hard_link_func,gm->query->name);
       add_block_comment(dfp,"get query information into datascore");
--- a/src/models/abc.c
+++ b/src/models/abc.c
@@ -442,7 +442,7 @@
         holder->query = init_ProteinDB(holder->querydb,&db_status);  
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in abc search"); 
+          fatal("Unable to initialise query database in abc search"); 
         }  
       query = hard_link_ComplexSequence(holder->query);  
       /* get query information into datascore */ 
@@ -989,7 +989,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/cdnawise10.c
+++ b/src/models/cdnawise10.c
@@ -694,7 +694,7 @@
         holder->query = init_cDNADB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in CdnaWise10 search");  
+          fatal("Unable to initialise query database in CdnaWise10 search");  
         }  
       query = hard_link_ComplexSequence(holder->query);  
       /* get query information into datascore */ 
@@ -1477,7 +1477,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/estloop3.c
+++ b/src/models/estloop3.c
@@ -697,7 +697,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in EstLoop3 search");    
+          fatal("Unable to initialise query database in EstLoop3 search");    
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1470,7 +1470,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/estquick3.c
+++ b/src/models/estquick3.c
@@ -467,7 +467,7 @@
         holder->query = init_GeneWiseQuickDB(holder->querydb,&db_status);    
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in EstQuick3 search");   
+          fatal("Unable to initialise query database in EstQuick3 search");   
         }  
       query = hard_link_GeneWiseScoreFlat(holder->query);    
       /* get query information into datascore */ 
@@ -1018,7 +1018,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/estslim3.c
+++ b/src/models/estslim3.c
@@ -505,7 +505,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in EstSlim3 search");    
+          fatal("Unable to initialise query database in EstSlim3 search");    
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1094,7 +1094,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/estslimloop.c
+++ b/src/models/estslimloop.c
@@ -594,7 +594,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in EstSlimLoop3 search");    
+          fatal("Unable to initialise query database in EstSlimLoop3 search");    
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1272,7 +1272,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/estwise3.c
+++ b/src/models/estwise3.c
@@ -613,7 +613,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in EstWise3 search");    
+          fatal("Unable to initialise query database in EstWise3 search");    
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1302,7 +1302,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/geneloop21.c
+++ b/src/models/geneloop21.c
@@ -1190,7 +1190,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneLoop21 search");  
+          fatal("Unable to initialise query database in GeneLoop21 search");  
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -2444,7 +2444,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/geneloop6.c
+++ b/src/models/geneloop6.c
@@ -682,7 +682,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneLoop6 search");   
+          fatal("Unable to initialise query database in GeneLoop6 search");   
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1426,7 +1426,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/genestretch6.c
+++ b/src/models/genestretch6.c
@@ -717,7 +717,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneStretch6 search");    
+          fatal("Unable to initialise query database in GeneStretch6 search");    
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1500,7 +1500,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/genewise21.c
+++ b/src/models/genewise21.c
@@ -1354,7 +1354,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneWise21 search");  
+          fatal("Unable to initialise query database in GeneWise21 search");  
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -2770,7 +2770,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/genewise4.c
+++ b/src/models/genewise4.c
@@ -580,7 +580,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneWise4 search");   
+          fatal("Unable to initialise query database in GeneWise4 search");   
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1226,7 +1226,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/genewise6.c
+++ b/src/models/genewise6.c
@@ -638,7 +638,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneWise6 search");   
+          fatal("Unable to initialise query database in GeneWise6 search");   
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1338,7 +1338,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/gwlite.c
+++ b/src/models/gwlite.c
@@ -597,7 +597,7 @@
         holder->query = init_GwLite_GeneWiseDB(holder->querydb,&db_status);  
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in GeneLiteModel search");   
+          fatal("Unable to initialise query database in GeneLiteModel search");   
         }  
       query = hard_link_GwLiteScore(holder->query);  
       /* get query information into datascore */ 
@@ -1275,7 +1275,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/pba.c
+++ b/src/models/pba.c
@@ -496,7 +496,7 @@
         holder->q = init_ProteinDB(holder->querydb,&db_status);  
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in ProteinBlockAligner search"); 
+          fatal("Unable to initialise query database in ProteinBlockAligner search"); 
         }  
       q = hard_link_ComplexSequence(holder->q);  
       /* get query information into datascore */ 
@@ -1102,7 +1102,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/proteinsw.c
+++ b/src/models/proteinsw.c
@@ -444,7 +444,7 @@
         holder->query = init_ProteinDB(holder->querydb,&db_status);  
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in ProteinSW search");   
+          fatal("Unable to initialise query database in ProteinSW search");   
         }  
       query = hard_link_ComplexSequence(holder->query);  
       /* get query information into datascore */ 
@@ -988,7 +988,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/pseudowise7.c
+++ b/src/models/pseudowise7.c
@@ -649,7 +649,7 @@
         holder->query = init_GeneWiseDB(holder->querydb,&db_status); 
         holder->query_init = TRUE;   
         if( db_status == DB_RETURN_ERROR )   
-          fatal("Unable to initalise query database in PseudoWise7 search"); 
+          fatal("Unable to initialise query database in PseudoWise7 search"); 
         }  
       query = hard_link_GeneWiseScore(holder->query);    
       /* get query information into datascore */ 
@@ -1368,7 +1368,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/sw_wrap.dy
+++ b/src/models/sw_wrap.dy
@@ -311,7 +311,7 @@
 
 %func
 This is the most correct way of aligning two Proteins,
-using Protein objects, which can be assummed to be
+using Protein objects, which can be assumed to be
 proteins with no objections
 
 To display the alignment use write_pretty_Protein_align
@@ -359,7 +359,7 @@
    out = std_score_Hscore(bits_cutoff,report_level);
 
    if( dbsi == NULL ) {
-      warn("Passed a NULL dbsi search implementaion object. Exiting without searching");
+      warn("Passed a NULL dbsi search implementation object. Exiting without searching");
       goto exit;
    }
 
@@ -411,7 +411,7 @@
    out = std_score_Hscore(bits_cutoff,report_level);
 
    if( dbsi == NULL ) {
-      warn("Passed a NULL dbsi search implementaion object. Exiting without searching");
+      warn("Passed a NULL dbsi search implementation object. Exiting without searching");
       goto exit;
    }
 
@@ -464,7 +464,7 @@
    out = std_score_Hscore(bits_cutoff,report_level);
 
    if( dbsi == NULL ) {
-      warn("Passed a NULL dbsi search implementaion object. Exiting without searching");
+      warn("Passed a NULL dbsi search implementation object. Exiting without searching");
       goto exit;
    }
 
--- a/src/dynlibsrc/translation.c
+++ b/src/dynlibsrc/translation.c
@@ -90,7 +90,7 @@
       if( i+3 >= cd->baseseq->len ) 
 	break;
       else {
-	warn("Got a stop codon in the middle of a translation at postion [%d]. Yuk!",i);
+	warn("Got a stop codon in the middle of a translation at position [%d]. Yuk!",i);
 	seq->seq[j] = '*';
       }
     } else {
--- a/src/dynlibsrc/translation.dy
+++ b/src/dynlibsrc/translation.dy
@@ -118,7 +118,7 @@
       if( i+3 >= cd->baseseq->len ) 
 	break;
       else {
-	warn("Got a stop codon in the middle of a translation at postion [%d]. Yuk!",i);
+	warn("Got a stop codon in the middle of a translation at position [%d]. Yuk!",i);
 	seq->seq[j] = '*';
       }
     } else {
--- a/src/models/phasemodel.c
+++ b/src/models/phasemodel.c
@@ -102,7 +102,7 @@
     fprintf(stdout,"for the definition of the intron. For phase 0 introns, it should be labeled as\n");
     fprintf(stdout,"the amino acid before the intron. For phase 1 and 2 introns, this is on the intron\n\n");
     fprintf(stdout,"We suggest using a small spread of positions to cope with intron positioning errors\n");
-    fprintf(stdout,"  eg, defining an intron at position 4, phase 0, make postions 3,4 and 5 with position 0\n\n");
+    fprintf(stdout,"  eg, defining an intron at position 4, phase 0, make positions 3,4 and 5 with position 0\n\n");
     fprintf(stdout,"The phase file format is\n");
     fprintf(stdout,"# lines starting with hash are comments\n");
     fprintf(stdout,"# three tab delimited columns\n");
--- a/src/models/phasemodel.dy
+++ b/src/models/phasemodel.dy
@@ -152,7 +152,7 @@
     fprintf(stdout,"for the definition of the intron. For phase 0 introns, it should be labeled as\n");
     fprintf(stdout,"the amino acid before the intron. For phase 1 and 2 introns, this is on the intron\n\n");
     fprintf(stdout,"We suggest using a small spread of positions to cope with intron positioning errors\n");
-    fprintf(stdout,"  eg, defining an intron at position 4, phase 0, make postions 3,4 and 5 with position 0\n\n");
+    fprintf(stdout,"  eg, defining an intron at position 4, phase 0, make positions 3,4 and 5 with position 0\n\n");
     fprintf(stdout,"The phase file format is\n");
     fprintf(stdout,"# lines starting with hash are comments\n");
     fprintf(stdout,"# three tab delimited columns\n");
--- a/src/models/standardout.c
+++ b/src/models/standardout.c
@@ -13,7 +13,7 @@
   fprintf(ofp,"   -alb          show align block format\n");
   fprintf(ofp,"   -pal          show raw alignment\n");
   fprintf(ofp,"   -calb         show cumlative align block\n");
-  fprintf(ofp,"   -cpal         show cumlative raw alignemnt\n");
+  fprintf(ofp,"   -cpal         show cumlative raw alignment\n");
 
 }
 
--- a/src/models/standardout.dy
+++ b/src/models/standardout.dy
@@ -27,7 +27,7 @@
   fprintf(ofp,"   -alb          show align block format\n");
   fprintf(ofp,"   -pal          show raw alignment\n");
   fprintf(ofp,"   -calb         show cumlative align block\n");
-  fprintf(ofp,"   -cpal         show cumlative raw alignemnt\n");
+  fprintf(ofp,"   -cpal         show cumlative raw alignment\n");
 
 }
 
--- a/src/dyc/method.c
+++ b/src/dyc/method.c
@@ -149,7 +149,7 @@
  *
  * Descrip:    function which handles the logical->real mapping
  *
- *             At the moment "unmappable" types get assummed to be C types,
+ *             At the moment "unmappable" types get assumed to be C types,
  *             trigger a warning and return the correct thing.
  *
  *
@@ -166,7 +166,7 @@
   Type * ty;
 
   if( (ty = Type_from_name(mts,type)) == NULL ) {
-    warn("Type [%s] is not recognised as a logical Dynamite type. Assumming it is a real C type",type);
+    warn("Type [%s] is not recognised as a logical Dynamite type. Assuming it is a real C type",type);
     return StructElement_from_nameandtype(name,type);
   }
 
--- a/src/dyc/method.dy
+++ b/src/dyc/method.dy
@@ -168,7 +168,7 @@
 %func
 function which handles the logical->real mapping
 
-At the moment "unmappable" types get assummed to be C types,
+At the moment "unmappable" types get assumed to be C types,
 trigger a warning and return the correct thing.
 %%
 StructElement * StructElement_from_MethodTypeSet(char * name,char * type,MethodTypeSet * mts)
@@ -176,7 +176,7 @@
   Type * ty;
 
   if( (ty = Type_from_name(mts,type)) == NULL ) {
-    warn("Type [%s] is not recognised as a logical Dynamite type. Assumming it is a real C type",type);
+    warn("Type [%s] is not recognised as a logical Dynamite type. Assuming it is a real C type",type);
     return StructElement_from_nameandtype(name,type);
   }
 
--- a/src/models/genewisemodel.c
+++ b/src/models/genewisemodel.c
@@ -305,7 +305,7 @@
 /* Function:  GeneWise_fold_in_synchronised_RandomModel(gw,rm,cm,*ct,stop_codon_background)
  *
  * Descrip:    This function places 'log-odd' scores of the
- *             genewise model assumming that the random model
+ *             genewise model assuming that the random model
  *             is a protein model with the codon mapper system
  *             added in, *and* that the path of the random model
  *             is synchronous with the query model.
@@ -526,7 +526,7 @@
     } else if ( strstr(col->alu[position_in_aln]->text_label,"INSERT") != NULL ) {
       continue;
     } else {
-      warn("In processing alignment to peptide, got label %s which cannot handle. Assumming X in protein translation",col->alu[position_in_aln]->text_label);
+      warn("In processing alignment to peptide, got label %s which cannot handle. Assuming X in protein translation",col->alu[position_in_aln]->text_label);
       buffer[i++] = 'X';
     }
   }
--- a/src/models/genewisemodel.dy
+++ b/src/models/genewisemodel.dy
@@ -335,7 +335,7 @@
 
 %func
 This function places 'log-odd' scores of the
-genewise model assumming that the random model
+genewise model assuming that the random model
 is a protein model with the codon mapper system
 added in, *and* that the path of the random model
 is synchronous with the query model.
@@ -516,7 +516,7 @@
     } else if ( strstr(col->alu[position_in_aln]->text_label,"INSERT") != NULL ) {
       continue;
     } else {
-      warn("In processing alignment to peptide, got label %s which cannot handle. Assumming X in protein translation",col->alu[position_in_aln]->text_label);
+      warn("In processing alignment to peptide, got label %s which cannot handle. Assuming X in protein translation",col->alu[position_in_aln]->text_label);
       buffer[i++] = 'X';
     }
   }
--- a/src/models/motifmatrix.c
+++ b/src/models/motifmatrix.c
@@ -84,7 +84,7 @@
 # line 121 "motifmatrix.dy"
 void show_help_MotifMatrixPara(FILE * ofp)
 {
-  fprintf(ofp,"Motif Matrix matching paramters\n");
+  fprintf(ofp,"Motif Matrix matching parameters\n");
   fprintf(ofp,"  -mm_motif [0.9]  Probability of a match in a motif\n");
   fprintf(ofp,"  -mm_cons  [0.75] Probability of a match in a non-motif conserved\n");
   fprintf(ofp,"  -mm_spacer[0.35] Probability of a match in a spacer\n");
--- a/src/models/motifmatrix.dy
+++ b/src/models/motifmatrix.dy
@@ -120,7 +120,7 @@
 
 void show_help_MotifMatrixPara(FILE * ofp)
 {
-  fprintf(ofp,"Motif Matrix matching paramters\n");
+  fprintf(ofp,"Motif Matrix matching parameters\n");
   fprintf(ofp,"  -mm_motif [0.9]  Probability of a match in a motif\n");
   fprintf(ofp,"  -mm_cons  [0.75] Probability of a match in a non-motif conserved\n");
   fprintf(ofp,"  -mm_spacer[0.35] Probability of a match in a spacer\n");
--- a/src/dyc/dynafunc.c
+++ b/src/dyc/dynafunc.c
@@ -983,7 +983,7 @@
 
   expr(dfp,"if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)");
   startbrace(dfp);
-  warn_expr(dfp,"Cannot iniate matrix, is not an explicit memory type and you have assummed that");
+  warn_expr(dfp,"Cannot iniate matrix, is not an explicit memory type and you have assumed that");
   expr(dfp,"return");
   closebrace(dfp);
 
@@ -1263,7 +1263,7 @@
 }
 
  /****
-   This function requires alot of stuff assummed.
+   This function requires alot of stuff assumed.
 
    int * reti, int *retj and *retstate *retspecial as parameters which will be set 
    by this block.
@@ -2020,7 +2020,7 @@
  *
  * Descrip:    This writes the special to special block movements, if needed.
  *
- *             If bestscore is not NULL, it assummes that this is the name of
+ *             If bestscore is not NULL, it assumes that this is the name of
  *             an int variable which should hold the bestscore by updating 
  *             from the end state
  *
--- a/src/dyc/dynafunc.dy
+++ b/src/dyc/dynafunc.dy
@@ -952,7 +952,7 @@
 
   expr(dfp,"if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)");
   startbrace(dfp);
-  warn_expr(dfp,"Cannot iniate matrix, is not an explicit memory type and you have assummed that");
+  warn_expr(dfp,"Cannot iniate matrix, is not an explicit memory type and you have assumed that");
   expr(dfp,"return");
   closebrace(dfp);
 
@@ -1228,7 +1228,7 @@
 }
 
  /****
-   This function requires alot of stuff assummed.
+   This function requires alot of stuff assumed.
 
    int * reti, int *retj and *retstate *retspecial as parameters which will be set 
    by this block.
@@ -1957,7 +1957,7 @@
 %func
 This writes the special to special block movements, if needed.
 
-If bestscore is not NULL, it assummes that this is the name of
+If bestscore is not NULL, it assumes that this is the name of
 an int variable which should hold the bestscore by updating 
 from the end state
 %type internal
--- a/src/dyc/method.h
+++ b/src/dyc/method.h
@@ -113,7 +113,7 @@
  *
  * Descrip:    function which handles the logical->real mapping
  *
- *             At the moment "unmappable" types get assummed to be C types,
+ *             At the moment "unmappable" types get assumed to be C types,
  *             trigger a warning and return the correct thing.
  *
  *
--- a/src/dynlibsrc/basematrix.h
+++ b/src/dynlibsrc/basematrix.h
@@ -84,7 +84,7 @@
   BASEMATRIX_TYPE_VERYSMALL
 };
 
-/* 20 MB assummed. Could break something? */
+/* 20 MB assumed. Could break something? */
 #define COMPILE_BASEMATRIX_MAX_KB 20000
 
 
--- a/src/dynlibsrc/proteinindexcons.c
+++ b/src/dynlibsrc/proteinindexcons.c
@@ -52,8 +52,8 @@
   fprintf(ofp,"   -piwaypost [number]  - waypost for streamed cases, default 3\n");
   fprintf(ofp,"   -pishadow [number]   - shadow length for shadow cases, default 15\n");
   fprintf(ofp,"   -pishadow_err [number] - errors per 100 identities tolerated, 3\n");
-  fprintf(ofp,"   -piseqmax            - indexes can assumme maximum length of seq\n");
-  fprintf(ofp,"   -piseqmax_len [number] - assummed max sequnce length, default 1000\n"); 
+  fprintf(ofp,"   -piseqmax            - indexes can assume maximum length of seq\n");
+  fprintf(ofp,"   -piseqmax_len [number] - assumed max sequnce length, default 1000\n"); 
 
   return;
 }
--- a/src/dynlibsrc/proteinindexcons.dy
+++ b/src/dynlibsrc/proteinindexcons.dy
@@ -63,8 +63,8 @@
   fprintf(ofp,"   -piwaypost [number]  - waypost for streamed cases, default 3\n");
   fprintf(ofp,"   -pishadow [number]   - shadow length for shadow cases, default 15\n");
   fprintf(ofp,"   -pishadow_err [number] - errors per 100 identities tolerated, 3\n");
-  fprintf(ofp,"   -piseqmax            - indexes can assumme maximum length of seq\n");
-  fprintf(ofp,"   -piseqmax_len [number] - assummed max sequnce length, default 1000\n"); 
+  fprintf(ofp,"   -piseqmax            - indexes can assume maximum length of seq\n");
+  fprintf(ofp,"   -piseqmax_len [number] - assumed max sequnce length, default 1000\n"); 
 
   return;
 }
--- a/src/models/alignwisedp.c
+++ b/src/models/alignwisedp.c
@@ -1214,7 +1214,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/bigdba.c
+++ b/src/models/bigdba.c
@@ -1071,7 +1071,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/clonewisedp.c
+++ b/src/models/clonewisedp.c
@@ -1040,7 +1040,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/dba.c
+++ b/src/models/dba.c
@@ -983,7 +983,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/dnaalign.c
+++ b/src/models/dnaalign.c
@@ -1077,7 +1077,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/dnaprofiledp.c
+++ b/src/models/dnaprofiledp.c
@@ -1156,7 +1156,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/editdistdp.c
+++ b/src/models/editdistdp.c
@@ -869,7 +869,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/estfrag3.c
+++ b/src/models/estfrag3.c
@@ -1129,7 +1129,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/fivestate.c
+++ b/src/models/fivestate.c
@@ -1044,7 +1044,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/genephase6.c
+++ b/src/models/genephase6.c
@@ -1653,7 +1653,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/genomewise9.c
+++ b/src/models/genomewise9.c
@@ -1501,7 +1501,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/largeblockdp.c
+++ b/src/models/largeblockdp.c
@@ -844,7 +844,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/localclonewisedp.c
+++ b/src/models/localclonewisedp.c
@@ -960,7 +960,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/localdba.c
+++ b/src/models/localdba.c
@@ -999,7 +999,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/motifmatrixdp.c
+++ b/src/models/motifmatrixdp.c
@@ -772,7 +772,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/slimdba.c
+++ b/src/models/slimdba.c
@@ -761,7 +761,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/statwise10.c
+++ b/src/models/statwise10.c
@@ -580,7 +580,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/sw_wrap.c
+++ b/src/models/sw_wrap.c
@@ -333,7 +333,7 @@
 /* Function:  Align_Proteins_SmithWaterman(one,two,comp,gap,ext,dpenv,dpri)
  *
  * Descrip:    This is the most correct way of aligning two Proteins,
- *             using Protein objects, which can be assummed to be
+ *             using Protein objects, which can be assumed to be
  *             proteins with no objections
  *
  *             To display the alignment use write_pretty_Protein_align
@@ -394,7 +394,7 @@
    out = std_score_Hscore(bits_cutoff,report_level);
 
    if( dbsi == NULL ) {
-      warn("Passed a NULL dbsi search implementaion object. Exiting without searching");
+      warn("Passed a NULL dbsi search implementation object. Exiting without searching");
       goto exit;
    }
 
@@ -452,7 +452,7 @@
    out = std_score_Hscore(bits_cutoff,report_level);
 
    if( dbsi == NULL ) {
-      warn("Passed a NULL dbsi search implementaion object. Exiting without searching");
+      warn("Passed a NULL dbsi search implementation object. Exiting without searching");
       goto exit;
    }
 
@@ -511,7 +511,7 @@
    out = std_score_Hscore(bits_cutoff,report_level);
 
    if( dbsi == NULL ) {
-      warn("Passed a NULL dbsi search implementaion object. Exiting without searching");
+      warn("Passed a NULL dbsi search implementation object. Exiting without searching");
       goto exit;
    }
 
--- a/src/models/sw_wrap.h
+++ b/src/models/sw_wrap.h
@@ -144,7 +144,7 @@
 /* Function:  Align_Proteins_SmithWaterman(one,two,comp,gap,ext,dpenv,dpri)
  *
  * Descrip:    This is the most correct way of aligning two Proteins,
- *             using Protein objects, which can be assummed to be
+ *             using Protein objects, which can be assumed to be
  *             proteins with no objections
  *
  *             To display the alignment use write_pretty_Protein_align
--- a/src/models/sw_wrap.pod
+++ b/src/models/sw_wrap.pod
@@ -67,7 +67,7 @@
 &Wise2::Align_Proteins_SmithWaterman(one,two,comp,gap,ext,dpenv,dpri)
 
   This is the most correct way of aligning two Proteins,
-  using Protein objects, which can be assummed to be
+  using Protein objects, which can be assumed to be
   proteins with no objections
 
   To display the alignment use write_pretty_Protein_align
--- a/src/models/sw_wrap.tex
+++ b/src/models/sw_wrap.tex
@@ -80,7 +80,7 @@
 \item[returns] [UNKN ] Undocumented return value [AlnBlock *]
 \end{description}
 This is the most correct way of aligning two Proteins,
-using Protein objects, which can be assummed to be
+using Protein objects, which can be assumed to be
 proteins with no objections
 
 
--- a/src/models/sw_wrap_api.h
+++ b/src/models/sw_wrap_api.h
@@ -70,7 +70,7 @@
 /* Function:  Wise2_Align_Proteins_SmithWaterman(one,two,comp,gap,ext,dpenv,dpri)
  *
  * Descrip:    This is the most correct way of aligning two Proteins,
- *             using Protein objects, which can be assummed to be
+ *             using Protein objects, which can be assumed to be
  *             proteins with no objections
  *
  *             To display the alignment use write_pretty_Protein_align
--- a/src/models/sywise20.c
+++ b/src/models/sywise20.c
@@ -1531,7 +1531,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/threestatedp.c
+++ b/src/models/threestatedp.c
@@ -864,7 +864,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/threestateloop.c
+++ b/src/models/threestateloop.c
@@ -950,7 +950,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/models/transregiondp.c
+++ b/src/models/transregiondp.c
@@ -1008,7 +1008,7 @@
     register int i;  
     register int j;  
     if( mat->basematrix->type != BASEMATRIX_TYPE_EXPLICIT)   {  
-      warn("Cannot iniate matrix, is not an explicit memory type and you have assummed that");   
+      warn("Cannot iniate matrix, is not an explicit memory type and you have assumed that");   
       return;    
       }  
 
--- a/src/dyc/dynashadow.c
+++ b/src/dyc/dynashadow.c
@@ -2438,7 +2438,7 @@
   register int j;
   register int k;
 
-  /*** this function assummes the following local variables
+  /*** this function assumes the following local variables
 
     int score
     int temp
--- a/src/dyc/dynashadow.dy
+++ b/src/dyc/dynashadow.dy
@@ -2358,7 +2358,7 @@
   register int j;
   register int k;
 
-  /*** this function assummes the following local variables
+  /*** this function assumes the following local variables
 
     int score
     int temp
--- a/src/dynlibsrc/aln.c
+++ b/src/dynlibsrc/aln.c
@@ -67,7 +67,7 @@
 
 /* Function:  add_to_anchored_AlnBlock(growing,add)
  *
- * Descrip:    This function assummes that the first AlnSequence
+ * Descrip:    This function assumes that the first AlnSequence
  *             in the current and the adding AlnBlock are the same,
  *             and that you want to add the second AlnSequence of the
  *             second alnblock to the first, anchored on the first
--- a/src/dynlibsrc/aln.dy
+++ b/src/dynlibsrc/aln.dy
@@ -157,7 +157,7 @@
 }
 
 %func
-This function assummes that the first AlnSequence
+This function assumes that the first AlnSequence
 in the current and the adding AlnBlock are the same,
 and that you want to add the second AlnSequence of the
 second alnblock to the first, anchored on the first
--- a/src/dynlibsrc/aln.h
+++ b/src/dynlibsrc/aln.h
@@ -198,7 +198,7 @@
 
 /* Function:  add_to_anchored_AlnBlock(growing,add)
  *
- * Descrip:    This function assummes that the first AlnSequence
+ * Descrip:    This function assumes that the first AlnSequence
  *             in the current and the adding AlnBlock are the same,
  *             and that you want to add the second AlnSequence of the
  *             second alnblock to the first, anchored on the first
--- a/src/dynlibsrc/codon.c
+++ b/src/dynlibsrc/codon.c
@@ -486,7 +486,7 @@
  *
  * Descrip:    takes an ASCII coded pointer to a 3 base pair
  *             sequence (it could be the part of a sequence: it only
- *             assummes that the seq points with 3 chars at pos 0,1,2 
+ *             assumes that the seq points with 3 chars at pos 0,1,2 
  *             in C coordinates from seq. No NULL is required). It 
  *             ives back the codon as made from standard mapping, ie,
  *             25*base_1+5*base_2 + base3 being a number from 0-124 inc.
--- a/src/dynlibsrc/codon.dy
+++ b/src/dynlibsrc/codon.dy
@@ -451,7 +451,7 @@
 %func
 takes an ASCII coded pointer to a 3 base pair
 sequence (it could be the part of a sequence: it only
-assummes that the seq points with 3 chars at pos 0,1,2 
+assumes that the seq points with 3 chars at pos 0,1,2 
 in C coordinates from seq. No NULL is required). It 
 ives back the codon as made from standard mapping, ie,
 25*base_1+5*base_2 + base3 being a number from 0-124 inc.
--- a/src/dynlibsrc/codon.h
+++ b/src/dynlibsrc/codon.h
@@ -324,7 +324,7 @@
  *
  * Descrip:    takes an ASCII coded pointer to a 3 base pair
  *             sequence (it could be the part of a sequence: it only
- *             assummes that the seq points with 3 chars at pos 0,1,2 
+ *             assumes that the seq points with 3 chars at pos 0,1,2 
  *             in C coordinates from seq. No NULL is required). It 
  *             ives back the codon as made from standard mapping, ie,
  *             25*base_1+5*base_2 + base3 being a number from 0-124 inc.
--- a/src/dynlibsrc/codon.pod
+++ b/src/dynlibsrc/codon.pod
@@ -282,7 +282,7 @@
 
   takes an ASCII coded pointer to a 3 base pair
   sequence (it could be the part of a sequence: it only
-  assummes that the seq points with 3 chars at pos 0,1,2 
+  assumes that the seq points with 3 chars at pos 0,1,2 
   in C coordinates from seq. No NULL is required). It 
   ives back the codon as made from standard mapping, ie,
   25*base_1+5*base_2 + base3 being a number from 0-124 inc.
--- a/src/dynlibsrc/codon.tex
+++ b/src/dynlibsrc/codon.tex
@@ -121,7 +121,7 @@
 \end{description}
 takes an ASCII coded pointer to a 3 base pair
 sequence (it could be the part of a sequence: it only
-assummes that the seq points with 3 chars at pos 0,1,2 
+assumes that the seq points with 3 chars at pos 0,1,2 
 in C coordinates from seq. No NULL is required). It 
 ives back the codon as made from standard mapping, ie,
 25*base_1+5*base_2 + base3 being a number from 0-124 inc.
--- a/src/dynlibsrc/codon_api.h
+++ b/src/dynlibsrc/codon_api.h
@@ -279,7 +279,7 @@
  *
  * Descrip:    takes an ASCII coded pointer to a 3 base pair
  *             sequence (it could be the part of a sequence: it only
- *             assummes that the seq points with 3 chars at pos 0,1,2 
+ *             assumes that the seq points with 3 chars at pos 0,1,2 
  *             in C coordinates from seq. No NULL is required). It 
  *             ives back the codon as made from standard mapping, ie,
  *             25*base_1+5*base_2 + base3 being a number from 0-124 inc.
--- a/src/dynlibsrc/codonmapper.c
+++ b/src/dynlibsrc/codonmapper.c
@@ -285,7 +285,7 @@
 
 /* Function:  sprinkle_errors_over_CodonMapper(cm,error)
  *
- * Descrip:    Takes a codon mapper and assummes that the majority of errors
+ * Descrip:    Takes a codon mapper and assumes that the majority of errors
  *             are due to a single base change in the codon at probability error.
  *             Therefore, for each codon it adds error * prob(codon) * 0.25 to each 
  *             other codon one base away, taking away therefore the result.
--- a/src/dynlibsrc/codonmapper.dy
+++ b/src/dynlibsrc/codonmapper.dy
@@ -271,7 +271,7 @@
 }
 
 %func
-Takes a codon mapper and assummes that the majority of errors
+Takes a codon mapper and assumes that the majority of errors
 are due to a single base change in the codon at probability error.
 Therefore, for each codon it adds error * prob(codon) * 0.25 to each 
 other codon one base away, taking away therefore the result.
--- a/src/dynlibsrc/codonmapper.h
+++ b/src/dynlibsrc/codonmapper.h
@@ -165,7 +165,7 @@
 
 /* Function:  sprinkle_errors_over_CodonMapper(cm,error)
  *
- * Descrip:    Takes a codon mapper and assummes that the majority of errors
+ * Descrip:    Takes a codon mapper and assumes that the majority of errors
  *             are due to a single base change in the codon at probability error.
  *             Therefore, for each codon it adds error * prob(codon) * 0.25 to each 
  *             other codon one base away, taking away therefore the result.
--- a/src/dynlibsrc/codonmapper.pod
+++ b/src/dynlibsrc/codonmapper.pod
@@ -50,7 +50,7 @@
 
 &Wise2::CodonMapper::sprinkle_errors_over_CodonMapper(cm,error)
 
-  Takes a codon mapper and assummes that the majority of errors
+  Takes a codon mapper and assumes that the majority of errors
   are due to a single base change in the codon at probability error.
   Therefore, for each codon it adds error * prob(codon) * 0.25 to each 
   other codon one base away, taking away therefore the result.
--- a/src/dynlibsrc/codonmapper.tex
+++ b/src/dynlibsrc/codonmapper.tex
@@ -69,7 +69,7 @@
 \item[error] [UNKN ] substitution error rate [double]
 \item[returns] Nothing - no return value
 \end{description}
-Takes a codon mapper and assummes that the majority of errors
+Takes a codon mapper and assumes that the majority of errors
 are due to a single base change in the codon at probability error.
 Therefore, for each codon it adds error * prob(codon) * 0.25 to each 
 other codon one base away, taking away therefore the result.
--- a/src/dynlibsrc/codonmapper_api.h
+++ b/src/dynlibsrc/codonmapper_api.h
@@ -21,7 +21,7 @@
 /* API for object CodonMapper */
 /* Function:  Wise2_sprinkle_errors_over_CodonMapper(cm,error)
  *
- * Descrip:    Takes a codon mapper and assummes that the majority of errors
+ * Descrip:    Takes a codon mapper and assumes that the majority of errors
  *             are due to a single base change in the codon at probability error.
  *             Therefore, for each codon it adds error * prob(codon) * 0.25 to each 
  *             other codon one base away, taking away therefore the result.
--- a/src/dynlibsrc/codonmatrix.c
+++ b/src/dynlibsrc/codonmatrix.c
@@ -100,7 +100,7 @@
 
 /* Function:  naive_CodonMatrixScore(ct,comp)
  *
- * Descrip:    Builds a codon matrix from CompMat which assummes:
+ * Descrip:    Builds a codon matrix from CompMat which assumes:
  *               No codon Bias
  *               No errors
  *             N codons score 0, stop codons score ??
--- a/src/dynlibsrc/codonmatrix.dy
+++ b/src/dynlibsrc/codonmatrix.dy
@@ -85,7 +85,7 @@
 
 
 %func
-Builds a codon matrix from CompMat which assummes:
+Builds a codon matrix from CompMat which assumes:
   No codon Bias
   No errors
 N codons score 0, stop codons score ??
--- a/src/dynlibsrc/codonmatrix.h
+++ b/src/dynlibsrc/codonmatrix.h
@@ -94,7 +94,7 @@
 
 /* Function:  naive_CodonMatrixScore(ct,comp)
  *
- * Descrip:    Builds a codon matrix from CompMat which assummes:
+ * Descrip:    Builds a codon matrix from CompMat which assumes:
  *               No codon Bias
  *               No errors
  *             N codons score 0, stop codons score ??
--- a/src/dynlibsrc/genomic.c
+++ b/src/dynlibsrc/genomic.c
@@ -103,7 +103,7 @@
 
 /* Function:  read_fasta_file_Genomic(filename,length_of_N)
  *
- * Descrip:    Reads a fasta file assumming that it is Genomic. 
+ * Descrip:    Reads a fasta file assuming that it is Genomic. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -135,7 +135,7 @@
 
 /* Function:  read_fasta_Genomic(ifp,length_of_N)
  *
- * Descrip:    Reads a fasta file assumming that it is Genomic. 
+ * Descrip:    Reads a fasta file assuming that it is Genomic. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -216,7 +216,7 @@
 /* Function:  Genomic_from_Sequence_Nheuristic(seq,length_of_N)
  *
  * Descrip:    makes a new genomic from a Sequence, but
- *             assummes that all the N runs greater than
+ *             assumes that all the N runs greater than
  *             a certain level are actually repeats.
  *
  *
--- a/src/dynlibsrc/genomic.dy
+++ b/src/dynlibsrc/genomic.dy
@@ -129,7 +129,7 @@
 
 
 %func
-Reads a fasta file assumming that it is Genomic. 
+Reads a fasta file assuming that it is Genomic. 
 Will complain if it is not, and return NULL.
 %arg
 filename filename to be opened and read
@@ -155,7 +155,7 @@
 
 
 %func
-Reads a fasta file assumming that it is Genomic. 
+Reads a fasta file assuming that it is Genomic. 
 Will complain if it is not, and return NULL.
 %arg
 ifp file point to be read from
@@ -210,7 +210,7 @@
 
 %func
 makes a new genomic from a Sequence, but
-assummes that all the N runs greater than
+assumes that all the N runs greater than
 a certain level are actually repeats.
 %%
 Genomic * Genomic_from_Sequence_Nheuristic(Sequence * seq,int length_of_N)
--- a/src/dynlibsrc/genomic.h
+++ b/src/dynlibsrc/genomic.h
@@ -91,7 +91,7 @@
 
 /* Function:  read_fasta_file_Genomic(filename,length_of_N)
  *
- * Descrip:    Reads a fasta file assumming that it is Genomic. 
+ * Descrip:    Reads a fasta file assuming that it is Genomic. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -107,7 +107,7 @@
 
 /* Function:  read_fasta_Genomic(ifp,length_of_N)
  *
- * Descrip:    Reads a fasta file assumming that it is Genomic. 
+ * Descrip:    Reads a fasta file assuming that it is Genomic. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -167,7 +167,7 @@
 /* Function:  Genomic_from_Sequence_Nheuristic(seq,length_of_N)
  *
  * Descrip:    makes a new genomic from a Sequence, but
- *             assummes that all the N runs greater than
+ *             assumes that all the N runs greater than
  *             a certain level are actually repeats.
  *
  *
--- a/src/dynlibsrc/genomic.pod
+++ b/src/dynlibsrc/genomic.pod
@@ -355,7 +355,7 @@
 
 &Wise2::read_fasta_file_Genomic(filename,length_of_N)
 
-  Reads a fasta file assumming that it is Genomic. 
+  Reads a fasta file assuming that it is Genomic. 
   Will complain if it is not, and return NULL.
 
 
@@ -369,7 +369,7 @@
 
 &Wise2::read_fasta_Genomic(ifp,length_of_N)
 
-  Reads a fasta file assumming that it is Genomic. 
+  Reads a fasta file assuming that it is Genomic. 
   Will complain if it is not, and return NULL.
 
 
@@ -384,7 +384,7 @@
 &Wise2::Genomic_from_Sequence_Nheuristic(seq,length_of_N)
 
   makes a new genomic from a Sequence, but
-  assummes that all the N runs greater than
+  assumes that all the N runs greater than
   a certain level are actually repeats.
 
 
--- a/src/dynlibsrc/genomic.tex
+++ b/src/dynlibsrc/genomic.tex
@@ -22,7 +22,7 @@
 \item[length_of_N] [UNKN ] length of N to be considered repeat. -1 means none [int]
 \item[returns] [UNKN ] Undocumented return value [Genomic *]
 \end{description}
-Reads a fasta file assumming that it is Genomic. 
+Reads a fasta file assuming that it is Genomic. 
 Will complain if it is not, and return NULL.
 
 
@@ -38,7 +38,7 @@
 \item[length_of_N] [UNKN ] length of N to be considered repeat. -1 means none [int]
 \item[returns] [UNKN ] Undocumented return value [Genomic *]
 \end{description}
-Reads a fasta file assumming that it is Genomic. 
+Reads a fasta file assuming that it is Genomic. 
 Will complain if it is not, and return NULL.
 
 
@@ -55,7 +55,7 @@
 \item[returns] [UNKN ] Undocumented return value [Genomic *]
 \end{description}
 makes a new genomic from a Sequence, but
-assummes that all the N runs greater than
+assumes that all the N runs greater than
 a certain level are actually repeats.
 
 
--- a/src/dynlibsrc/genomic_api.h
+++ b/src/dynlibsrc/genomic_api.h
@@ -360,7 +360,7 @@
 /* These functions are not associated with an object */
 /* Function:  Wise2_read_fasta_file_Genomic(filename,length_of_N)
  *
- * Descrip:    Reads a fasta file assumming that it is Genomic. 
+ * Descrip:    Reads a fasta file assuming that it is Genomic. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -374,7 +374,7 @@
 
 /* Function:  Wise2_read_fasta_Genomic(ifp,length_of_N)
  *
- * Descrip:    Reads a fasta file assumming that it is Genomic. 
+ * Descrip:    Reads a fasta file assuming that it is Genomic. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -389,7 +389,7 @@
 /* Function:  Wise2_Genomic_from_Sequence_Nheuristic(seq,length_of_N)
  *
  * Descrip:    makes a new genomic from a Sequence, but
- *             assummes that all the N runs greater than
+ *             assumes that all the N runs greater than
  *             a certain level are actually repeats.
  *
  *
--- a/src/dynlibsrc/hspstream.c
+++ b/src/dynlibsrc/hspstream.c
@@ -38,7 +38,7 @@
   SequenceSet * out;
   char buffer[512];
 
-  /* assumme that each HSPset has only one target sequence */
+  /* assume that each HSPset has only one target sequence */
 
   out = SequenceSet_alloc_len(lm->len+1);  
 
@@ -109,7 +109,7 @@
  *
  * Descrip:    typed linear hsp manager from stream
  *
- *             assummes sequences coming in first, with query as first sequence
+ *             assumes sequences coming in first, with query as first sequence
  *             and then hsps one after the other
  *
  *
--- a/src/dynlibsrc/hspstream.dy
+++ b/src/dynlibsrc/hspstream.dy
@@ -31,7 +31,7 @@
   SequenceSet * out;
   char buffer[512];
 
-  /* assumme that each HSPset has only one target sequence */
+  /* assume that each HSPset has only one target sequence */
 
   out = SequenceSet_alloc_len(lm->len+1);  
 
@@ -93,7 +93,7 @@
 %func
 typed linear hsp manager from stream
 
-assummes sequences coming in first, with query as first sequence
+assumes sequences coming in first, with query as first sequence
 and then hsps one after the other
 %%
 LinearHSPmanager * typed_LinearHSPmanager_from_Stream(Wise2ReadStreamInterface * rs)
--- a/src/dynlibsrc/hspstream.h
+++ b/src/dynlibsrc/hspstream.h
@@ -64,7 +64,7 @@
  *
  * Descrip:    typed linear hsp manager from stream
  *
- *             assummes sequences coming in first, with query as first sequence
+ *             assumes sequences coming in first, with query as first sequence
  *             and then hsps one after the other
  *
  *
--- a/src/dynlibsrc/sequence.c
+++ b/src/dynlibsrc/sequence.c
@@ -296,7 +296,7 @@
 /* Function:  translate_Sequence(dna,ct)
  *
  * Descrip:    This translates a DNA sequence to a protein.
- *             It assummes that it starts at first residue
+ *             It assumes that it starts at first residue
  *             (use trunc_Sequence to chop a sequence up).
  *
  *
@@ -600,7 +600,7 @@
  * Descrip:    reads efetch specificed sequence. calls popen to
  *             efetch. A hack around accession numbers so that if the 
  *             thing looks like WP:acc number, calls it with -a...
- *             otherwise assummes you have both database and name in the
+ *             otherwise assumes you have both database and name in the
  *             efetchstring
  *
  *
@@ -746,7 +746,7 @@
 
 /* Function:  read_fasta_Sequence(ifp)
  *
- * Descrip:    reads a fasta file assumming pretty 
+ * Descrip:    reads a fasta file assuming pretty 
  *             standard sanity for the file layout
  *
  *
@@ -806,7 +806,7 @@
   }
   
   if( buffer[0] != '>' ) {
-    warn("First character read not >, assumming is not fasta");
+    warn("First character read not >, assuming is not fasta");
     return NULL;
   }
 
@@ -933,7 +933,7 @@
     return NULL;
 
   if( c != '>' ) {
-    warn("First letter read is not '>' - assumming it is not a fasta stream");
+    warn("First letter read is not '>' - assuming it is not a fasta stream");
     return NULL;
   }
 
--- a/src/dynlibsrc/sequence.h
+++ b/src/dynlibsrc/sequence.h
@@ -260,7 +260,7 @@
 /* Function:  translate_Sequence(dna,ct)
  *
  * Descrip:    This translates a DNA sequence to a protein.
- *             It assummes that it starts at first residue
+ *             It assumes that it starts at first residue
  *             (use trunc_Sequence to chop a sequence up).
  *
  *
@@ -407,7 +407,7 @@
  * Descrip:    reads efetch specificed sequence. calls popen to
  *             efetch. A hack around accession numbers so that if the 
  *             thing looks like WP:acc number, calls it with -a...
- *             otherwise assummes you have both database and name in the
+ *             otherwise assumes you have both database and name in the
  *             efetchstring
  *
  *
@@ -459,7 +459,7 @@
 
 /* Function:  read_fasta_Sequence(ifp)
  *
- * Descrip:    reads a fasta file assumming pretty 
+ * Descrip:    reads a fasta file assuming pretty 
  *             standard sanity for the file layout
  *
  *
--- a/src/dynlibsrc/sequence.pod
+++ b/src/dynlibsrc/sequence.pod
@@ -136,7 +136,7 @@
 &Wise2::Sequence::translate(dna,ct)
 
   This translates a DNA sequence to a protein.
-  It assummes that it starts at first residue
+  It assumes that it starts at first residue
   (use trunc_Sequence to chop a sequence up).
 
 
@@ -267,7 +267,7 @@
 
 &Wise2::Sequence::read_fasta_Sequence(ifp)
 
-  reads a fasta file assumming pretty 
+  reads a fasta file assuming pretty 
   standard sanity for the file layout
 
 
--- a/src/dynlibsrc/sequence.tex
+++ b/src/dynlibsrc/sequence.tex
@@ -196,7 +196,7 @@
 \item[returns] [OWNER] new protein sequence [Sequence *]
 \end{description}
 This translates a DNA sequence to a protein.
-It assummes that it starts at first residue
+It assumes that it starts at first residue
 (use trunc_Sequence to chop a sequence up).
 
 
@@ -384,7 +384,7 @@
 \item[ifp] [UNKN ] Undocumented argument [FILE *]
 \item[returns] [UNKN ] Undocumented return value [Sequence *]
 \end{description}
-reads a fasta file assumming pretty 
+reads a fasta file assuming pretty 
 standard sanity for the file layout
 
 
--- a/src/dynlibsrc/sequence_api.h
+++ b/src/dynlibsrc/sequence_api.h
@@ -118,7 +118,7 @@
 /* Function:  Wise2_translate_Sequence(dna,ct)
  *
  * Descrip:    This translates a DNA sequence to a protein.
- *             It assummes that it starts at first residue
+ *             It assumes that it starts at first residue
  *             (use trunc_Sequence to chop a sequence up).
  *
  *
@@ -249,7 +249,7 @@
 
 /* Function:  Wise2_read_fasta_Sequence(ifp)
  *
- * Descrip:    reads a fasta file assumming pretty 
+ * Descrip:    reads a fasta file assuming pretty 
  *             standard sanity for the file layout
  *
  *
--- a/src/dynlibsrc/sequence_codon.c
+++ b/src/dynlibsrc/sequence_codon.c
@@ -106,7 +106,7 @@
 /* Function:  translate_Sequence(dna,ct)
  *
  * Descrip:    This translates a DNA sequence to a protein.
- *             It assummes that it starts at first residue
+ *             It assumes that it starts at first residue
  *             (use trunc_Sequence to chop a sequence up).
  *
  *
--- a/src/dynlibsrc/sequence_codon.dy
+++ b/src/dynlibsrc/sequence_codon.dy
@@ -108,7 +108,7 @@
 
 %func
 This translates a DNA sequence to a protein.
-It assummes that it starts at first residue
+It assumes that it starts at first residue
 (use trunc_Sequence to chop a sequence up).
 %simple translate
 %arg
--- a/src/dynlibsrc/sequence_codon.h
+++ b/src/dynlibsrc/sequence_codon.h
@@ -62,7 +62,7 @@
 /* Function:  translate_Sequence(dna,ct)
  *
  * Descrip:    This translates a DNA sequence to a protein.
- *             It assummes that it starts at first residue
+ *             It assumes that it starts at first residue
  *             (use trunc_Sequence to chop a sequence up).
  *
  *
--- a/src/dynlibsrc/sequence_codon.pod
+++ b/src/dynlibsrc/sequence_codon.pod
@@ -54,7 +54,7 @@
 &Wise2::translate(dna,ct)
 
   This translates a DNA sequence to a protein.
-  It assummes that it starts at first residue
+  It assumes that it starts at first residue
   (use trunc_Sequence to chop a sequence up).
 
 
--- a/src/dynlibsrc/sequence_codon.tex
+++ b/src/dynlibsrc/sequence_codon.tex
@@ -63,7 +63,7 @@
 \item[returns] [OWNER] new protein sequence [Sequence *]
 \end{description}
 This translates a DNA sequence to a protein.
-It assummes that it starts at first residue
+It assumes that it starts at first residue
 (use trunc_Sequence to chop a sequence up).
 
 
--- a/src/dynlibsrc/sequence_codon_api.h
+++ b/src/dynlibsrc/sequence_codon_api.h
@@ -52,7 +52,7 @@
 /* Function:  Wise2_translate_Sequence(dna,ct)
  *
  * Descrip:    This translates a DNA sequence to a protein.
- *             It assummes that it starts at first residue
+ *             It assumes that it starts at first residue
  *             (use trunc_Sequence to chop a sequence up).
  *
  *
--- a/src/models/genefrequency.h
+++ b/src/models/genefrequency.h
@@ -260,7 +260,7 @@
 
 /* Function:  read_base_GeneConsensus(base_array,line,ifp)
  *
- * Descrip:    assummes base_array is 4 positions long
+ * Descrip:    assumes base_array is 4 positions long
  *               
  *             line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
  *               
@@ -280,7 +280,7 @@
 
 /* Function:  read_codon_GeneConsensus(codon_array,line,ifp)
  *
- * Descrip:    assummes codon_array is 64 positions long
+ * Descrip:    assumes codon_array is 64 positions long
  *               
  *             line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
  *
--- a/src/models/genestats.c
+++ b/src/models/genestats.c
@@ -899,7 +899,7 @@
 
 /* Function:  read_codon_GeneStats(codon_array,line,ifp)
  *
- * Descrip:    assummes codon_array is 64 positions long
+ * Descrip:    assumes codon_array is 64 positions long
  *               
  *             line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
  *
--- a/src/models/genestats.dy
+++ b/src/models/genestats.dy
@@ -810,7 +810,7 @@
 
 
 %func
-assummes codon_array is 64 positions long
+assumes codon_array is 64 positions long
   
 line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
 
--- a/src/models/genestats.h
+++ b/src/models/genestats.h
@@ -380,7 +380,7 @@
 
 /* Function:  read_codon_GeneStats(codon_array,line,ifp)
  *
- * Descrip:    assummes codon_array is 64 positions long
+ * Descrip:    assumes codon_array is 64 positions long
  *               
  *             line should have begin consensus on it and be of MAXLINE length as it will be used as the buffer.
  *
--- a/src/perl/scripts/blastwise.pl
+++ b/src/perl/scripts/blastwise.pl
@@ -20,7 +20,7 @@
 site: I cant second guess all the things you want to do with the
 output, so you give it a go.
 
-This assummes that the database you are searching *is* swissprot and
+This assumes that the database you are searching *is* swissprot and
 you have SRS indexed it into the database called swissprot.  If you
 are running it on different database with a different indexer you will
 need to change the executable used to retrieve the sequence
--- a/src/dyc/api.c
+++ b/src/dyc/api.c
@@ -957,7 +957,7 @@
     if( fu->fi->ret->argtype == ARGTYPE_STATIC && is_basic_type_API(fu->fi->ret->type) == FALSE) {
       /* we need to put in the memory handler... */
       /*
-       * Horrible hack. We assumme the the C type MyType * means dynamite type MyType.
+       * Horrible hack. We assume the the C type MyType * means dynamite type MyType.
        *
        * YUK!!!! Also - v.v.v.v.v bad hard coded Wise2
        *
--- a/src/dyc/api.dy
+++ b/src/dyc/api.dy
@@ -973,7 +973,7 @@
     if( fu->fi->ret->argtype == ARGTYPE_STATIC && is_basic_type_API(fu->fi->ret->type) == FALSE) {
       /* we need to put in the memory handler... */
       /*
-       * Horrible hack. We assumme the the C type MyType * means dynamite type MyType.
+       * Horrible hack. We assume the the C type MyType * means dynamite type MyType.
        *
        * YUK!!!! Also - v.v.v.v.v bad hard coded Wise2
        *
--- a/src/dyc/funcinfo.c
+++ b/src/dyc/funcinfo.c
@@ -271,7 +271,7 @@
 
     ***/
 
-  /** assumme type (*name)(type,type,type) ***/
+  /** assume type (*name)(type,type,type) ***/
 
   held = stringalloc(str);
 
--- a/src/dyc/funcinfo.dy
+++ b/src/dyc/funcinfo.dy
@@ -318,7 +318,7 @@
 
     ***/
 
-  /** assumme type (*name)(type,type,type) ***/
+  /** assume type (*name)(type,type,type) ***/
 
   held = stringalloc(str);
 
--- a/src/dynlibsrc/genomicdb.c
+++ b/src/dynlibsrc/genomicdb.c
@@ -63,7 +63,7 @@
     warn("Cannot get entry for %s from Genomic db",de->name);
   }
 
-  /* check dna status. We assumme someone knows what he is doing when he makes a genomic db!*/
+  /* check dna status. We assume someone knows what he is doing when he makes a genomic db!*/
   if( seq->type != SEQUENCE_DNA) {
     warn("Sequence from %s data entry doesn't look like DNA. Forcing it to",de->name);
   }
@@ -142,7 +142,7 @@
     return NULL; 
   }
 
-  /* check dna status. We assumme someone knows what he is doing when he makes a genomic db!*/
+  /* check dna status. We assume someone knows what he is doing when he makes a genomic db!*/
   if( seq->type != SEQUENCE_DNA) {
     warn("Sequence from %s data entry doesn't look like DNA. Forcing it to",seq->name);
   }
@@ -247,7 +247,7 @@
 
   uppercase_Sequence(seq);
 
-  /* check dna status. We assumme someone knows what he is doing when he makes a genomic db!*/
+  /* check dna status. We assume someone knows what he is doing when he makes a genomic db!*/
   if( seq->type != SEQUENCE_DNA) {
     warn("Sequence from %s data entry doesn't look like DNA. Forcing it to",seq->name);
   }
--- a/src/dynlibsrc/genomicdb.dy
+++ b/src/dynlibsrc/genomicdb.dy
@@ -112,7 +112,7 @@
     warn("Cannot get entry for %s from Genomic db",de->name);
   }
 
-  /* check dna status. We assumme someone knows what he is doing when he makes a genomic db!*/
+  /* check dna status. We assume someone knows what he is doing when he makes a genomic db!*/
   if( seq->type != SEQUENCE_DNA) {
     warn("Sequence from %s data entry doesn't look like DNA. Forcing it to",de->name);
   }
@@ -175,7 +175,7 @@
     return NULL; 
   }
 
-  /* check dna status. We assumme someone knows what he is doing when he makes a genomic db!*/
+  /* check dna status. We assume someone knows what he is doing when he makes a genomic db!*/
   if( seq->type != SEQUENCE_DNA) {
     warn("Sequence from %s data entry doesn't look like DNA. Forcing it to",seq->name);
   }
@@ -273,7 +273,7 @@
 
   uppercase_Sequence(seq);
 
-  /* check dna status. We assumme someone knows what he is doing when he makes a genomic db!*/
+  /* check dna status. We assume someone knows what he is doing when he makes a genomic db!*/
   if( seq->type != SEQUENCE_DNA) {
     warn("Sequence from %s data entry doesn't look like DNA. Forcing it to",seq->name);
   }
--- a/src/dynlibsrc/genomicregion.c
+++ b/src/dynlibsrc/genomicregion.c
@@ -975,7 +975,7 @@
 
 /* Function:  write_Embl_FT_GenomicRegion(gr,ofp)
  *
- * Descrip:    Writes Embl feature table. Does assumme that
+ * Descrip:    Writes Embl feature table. Does assume that
  *             there is only one transcript per gene and only
  *             cds exons are used
  *
@@ -1008,7 +1008,7 @@
 
 /* Function:  write_Diana_FT_GenomicRegion(gr,ofp)
  *
- * Descrip:    Writes Embl feature table for diana use. Does assumme that
+ * Descrip:    Writes Embl feature table for diana use. Does assume that
  *             there is only one transcript per gene and only
  *             cds exons are used
  *
--- a/src/dynlibsrc/genomicregion.dy
+++ b/src/dynlibsrc/genomicregion.dy
@@ -847,7 +847,7 @@
 }
 
 %func
-Writes Embl feature table. Does assumme that
+Writes Embl feature table. Does assume that
 there is only one transcript per gene and only
 cds exons are used
 
@@ -873,7 +873,7 @@
 }
 
 %func
-Writes Embl feature table for diana use. Does assumme that
+Writes Embl feature table for diana use. Does assume that
 there is only one transcript per gene and only
 cds exons are used
 
--- a/src/dynlibsrc/genomicregion.h
+++ b/src/dynlibsrc/genomicregion.h
@@ -455,7 +455,7 @@
 
 /* Function:  write_Embl_FT_GenomicRegion(gr,ofp)
  *
- * Descrip:    Writes Embl feature table. Does assumme that
+ * Descrip:    Writes Embl feature table. Does assume that
  *             there is only one transcript per gene and only
  *             cds exons are used
  *
@@ -474,7 +474,7 @@
 
 /* Function:  write_Diana_FT_GenomicRegion(gr,ofp)
  *
- * Descrip:    Writes Embl feature table for diana use. Does assumme that
+ * Descrip:    Writes Embl feature table for diana use. Does assume that
  *             there is only one transcript per gene and only
  *             cds exons are used
  *
--- a/src/dynlibsrc/genomicregion.pod
+++ b/src/dynlibsrc/genomicregion.pod
@@ -133,7 +133,7 @@
 
 &Wise2::GenomicRegion::write_Diana_FT_GenomicRegion(gr,ofp)
 
-  Writes Embl feature table for diana use. Does assumme that
+  Writes Embl feature table for diana use. Does assume that
   there is only one transcript per gene and only
   cds exons are used
 
@@ -152,7 +152,7 @@
 
 &Wise2::GenomicRegion::write_Embl_FT_GenomicRegion(gr,ofp)
 
-  Writes Embl feature table. Does assumme that
+  Writes Embl feature table. Does assume that
   there is only one transcript per gene and only
   cds exons are used
 
--- a/src/dynlibsrc/genomicregion.tex
+++ b/src/dynlibsrc/genomicregion.tex
@@ -164,7 +164,7 @@
 \item[ofp] [UNKN ] Undocumented argument [FILE *]
 \item[returns] Nothing - no return value
 \end{description}
-Writes Embl feature table for diana use. Does assumme that
+Writes Embl feature table for diana use. Does assume that
 there is only one transcript per gene and only
 cds exons are used
 
@@ -192,7 +192,7 @@
 \item[ofp] [UNKN ] Undocumented argument [FILE *]
 \item[returns] Nothing - no return value
 \end{description}
-Writes Embl feature table. Does assumme that
+Writes Embl feature table. Does assume that
 there is only one transcript per gene and only
 cds exons are used
 
--- a/src/dynlibsrc/genomicregion_api.h
+++ b/src/dynlibsrc/genomicregion_api.h
@@ -106,7 +106,7 @@
 
 /* Function:  Wise2_write_Diana_FT_GenomicRegion(gr,ofp)
  *
- * Descrip:    Writes Embl feature table for diana use. Does assumme that
+ * Descrip:    Writes Embl feature table for diana use. Does assume that
  *             there is only one transcript per gene and only
  *             cds exons are used
  *
@@ -125,7 +125,7 @@
 
 /* Function:  Wise2_write_Embl_FT_GenomicRegion(gr,ofp)
  *
- * Descrip:    Writes Embl feature table. Does assumme that
+ * Descrip:    Writes Embl feature table. Does assume that
  *             there is only one transcript per gene and only
  *             cds exons are used
  *
--- a/src/dynlibsrc/proteinstreamedindex.c
+++ b/src/dynlibsrc/proteinstreamedindex.c
@@ -299,7 +299,7 @@
 	}
 	add_lookup_GenericIndexResult_from_Pos(p->prev[i],psir,backtrace,waylength);
       }
-      /* can assumme this is ok */
+      /* can assume this is ok */
 
       break;
     } else {
--- a/src/dynlibsrc/proteinstreamedindex.dy
+++ b/src/dynlibsrc/proteinstreamedindex.dy
@@ -256,7 +256,7 @@
 	}
 	add_lookup_GenericIndexResult_from_Pos(p->prev[i],psir,backtrace,waylength);
       }
-      /* can assumme this is ok */
+      /* can assume this is ok */
 
       break;
     } else {
--- a/src/models/threestatemodel.c
+++ b/src/models/threestatemodel.c
@@ -470,7 +470,7 @@
  *
  * Arg:        pro [READ ] protein sequence [Protein *]
  * Arg:        mat [READ ] comparison matrix to use [CompMat *]
- * Arg:         rm [READ ] random model which you assumme the matrix was built with [RandomModel *]
+ * Arg:         rm [READ ] random model which you assume the matrix was built with [RandomModel *]
  * Arg:        gap [READ ] gap open penalty [int]
  * Arg:        ext [READ ] gap ext penalty [int]
  *
@@ -595,7 +595,7 @@
  *
  * Arg:        pro [READ ] protein sequence [Protein *]
  * Arg:        mat [READ ] comparison matrix to use [CompMat *]
- * Arg:         rm [READ ] random model which you assumme the matrix was built with [RandomModel *]
+ * Arg:         rm [READ ] random model which you assume the matrix was built with [RandomModel *]
  * Arg:        gap [READ ] gap open penalty [int]
  * Arg:        ext [READ ] gap ext penalty [int]
  *
--- a/src/models/threestatemodel.dy
+++ b/src/models/threestatemodel.dy
@@ -480,14 +480,14 @@
 
 %func 
 Makes a local three-state-model from a sequence.  this is scary
-hackery, assumming that the matrix is half-bits and normalising in a
+hackery, assuming that the matrix is half-bits and normalising in a
 *very* wrong way to get "probabilities" out.
 
 Works though
 %arg
 pro r protein sequence
 mat r comparison matrix to use
-rm  r random model which you assumme the matrix was built with
+rm  r random model which you assume the matrix was built with
 gap r gap open penalty
 ext r gap ext penalty
 %%
@@ -587,7 +587,7 @@
 
 %func
 Makes a global three-state-model from a sequence.
-Like the local version, this is scary hackery, assumming
+Like the local version, this is scary hackery, assuming
 that the matrix is half-bits and normalising in a *very*
 wrong way to get "probabilities" out.
 
@@ -595,7 +595,7 @@
 %arg
 pro r protein sequence
 mat r comparison matrix to use
-rm  r random model which you assumme the matrix was built with
+rm  r random model which you assume the matrix was built with
 gap r gap open penalty
 ext r gap ext penalty
 %%
--- a/src/models/threestatemodel.h
+++ b/src/models/threestatemodel.h
@@ -340,7 +340,7 @@
 /* Function:  ThreeStateModel_from_half_bit_Sequence(pro,mat,rm,gap,ext)
  *
  * Descrip:    Makes a local three-state-model from a sequence.  this is scary
- *             hackery, assumming that the matrix is half-bits and normalising in a
+ *             hackery, assuming that the matrix is half-bits and normalising in a
  *             *very* wrong way to get "probabilities" out.
  *
  *             Works though
@@ -348,7 +348,7 @@
  *
  * Arg:        pro [READ ] protein sequence [Protein *]
  * Arg:        mat [READ ] comparison matrix to use [CompMat *]
- * Arg:         rm [READ ] random model which you assumme the matrix was built with [RandomModel *]
+ * Arg:         rm [READ ] random model which you assume the matrix was built with [RandomModel *]
  * Arg:        gap [READ ] gap open penalty [int]
  * Arg:        ext [READ ] gap ext penalty [int]
  *
@@ -362,7 +362,7 @@
 /* Function:  global_ThreeStateModel_from_half_bit_Sequence(pro,mat,rm,gap,ext)
  *
  * Descrip:    Makes a global three-state-model from a sequence.
- *             Like the local version, this is scary hackery, assumming
+ *             Like the local version, this is scary hackery, assuming
  *             that the matrix is half-bits and normalising in a *very*
  *             wrong way to get "probabilities" out.
  *
@@ -371,7 +371,7 @@
  *
  * Arg:        pro [READ ] protein sequence [Protein *]
  * Arg:        mat [READ ] comparison matrix to use [CompMat *]
- * Arg:         rm [READ ] random model which you assumme the matrix was built with [RandomModel *]
+ * Arg:         rm [READ ] random model which you assume the matrix was built with [RandomModel *]
  * Arg:        gap [READ ] gap open penalty [int]
  * Arg:        ext [READ ] gap ext penalty [int]
  *
--- a/src/models/threestatemodel.pod
+++ b/src/models/threestatemodel.pod
@@ -95,7 +95,7 @@
 &Wise2::ThreeStateModel::ThreeStateModel_from_half_bit_Sequence(pro,mat,rm,gap,ext)
 
   Makes a local three-state-model from a sequence.  this is scary
-  hackery, assumming that the matrix is half-bits and normalising in a
+  hackery, assuming that the matrix is half-bits and normalising in a
   *very* wrong way to get "probabilities" out.
 
   Works though
@@ -104,7 +104,7 @@
 
   Argument pro          [READ ] protein sequence [Protein *]
   Argument mat          [READ ] comparison matrix to use [CompMat *]
-  Argument rm           [READ ] random model which you assumme the matrix was built with [RandomModel *]
+  Argument rm           [READ ] random model which you assume the matrix was built with [RandomModel *]
   Argument gap          [READ ] gap open penalty [int]
   Argument ext          [READ ] gap ext penalty [int]
   Return [UNKN ] Undocumented return value [ThreeStateModel *]
--- a/src/models/threestatemodel.tex
+++ b/src/models/threestatemodel.tex
@@ -126,13 +126,13 @@
 \begin{description}
 \item[pro] [READ ] protein sequence [Protein *]
 \item[mat] [READ ] comparison matrix to use [CompMat *]
-\item[rm] [READ ] random model which you assumme the matrix was built with [RandomModel *]
+\item[rm] [READ ] random model which you assume the matrix was built with [RandomModel *]
 \item[gap] [READ ] gap open penalty [int]
 \item[ext] [READ ] gap ext penalty [int]
 \item[returns] [UNKN ] Undocumented return value [ThreeStateModel *]
 \end{description}
 Makes a local three-state-model from a sequence.  this is scary
-hackery, assumming that the matrix is half-bits and normalising in a
+hackery, assuming that the matrix is half-bits and normalising in a
 *very* wrong way to get "probabilities" out.
 
 
--- a/src/models/threestatemodel_api.h
+++ b/src/models/threestatemodel_api.h
@@ -82,7 +82,7 @@
 /* Function:  Wise2_ThreeStateModel_from_half_bit_Sequence(pro,mat,rm,gap,ext)
  *
  * Descrip:    Makes a local three-state-model from a sequence.  this is scary
- *             hackery, assumming that the matrix is half-bits and normalising in a
+ *             hackery, assuming that the matrix is half-bits and normalising in a
  *             *very* wrong way to get "probabilities" out.
  *
  *             Works though
@@ -90,7 +90,7 @@
  *
  * Arg:        pro          protein sequence [Wise2_Protein *]
  * Arg:        mat          comparison matrix to use [Wise2_CompMat *]
- * Arg:        rm           random model which you assumme the matrix was built with [Wise2_RandomModel *]
+ * Arg:        rm           random model which you assume the matrix was built with [Wise2_RandomModel *]
  * Arg:        gap          gap open penalty [int]
  * Arg:        ext          gap ext penalty [int]
  *
--- a/src/dyc/type.c
+++ b/src/dyc/type.c
@@ -259,7 +259,7 @@
       if( su == NULL ) {
 	pe |= PERR_OUT_OF_SCOPE;
 	if( dycw == NULL || dycw->warn_extern == TRUE )
-	  warn("Name [%s] is out of scope: assumming extern",ExprTree->word);
+	  warn("Name [%s] is out of scope: assuming extern",ExprTree->word);
       } else {
 	/*	fprintf(stderr,"Ok.[%d] for name %s, going to add %s\n",ExprTree->attrib,ExprTree->word,su->app);*/
 	strcat(buffer,su->app);
--- a/src/dyc/type.dy
+++ b/src/dyc/type.dy
@@ -271,7 +271,7 @@
       if( su == NULL ) {
 	pe |= PERR_OUT_OF_SCOPE;
 	if( dycw == NULL || dycw->warn_extern == TRUE )
-	  warn("Name [%s] is out of scope: assumming extern",ExprTree->word);
+	  warn("Name [%s] is out of scope: assuming extern",ExprTree->word);
       } else {
 	/*	fprintf(stderr,"Ok.[%d] for name %s, going to add %s\n",ExprTree->attrib,ExprTree->word,su->app);*/
 	strcat(buffer,su->app);
--- a/src/dynlibsrc/cdna.c
+++ b/src/dynlibsrc/cdna.c
@@ -29,7 +29,7 @@
 
 /* Function:  read_fasta_file_cDNA(filename)
  *
- * Descrip:    Reads a fasta file assumming that it is cDNA. 
+ * Descrip:    Reads a fasta file assuming that it is cDNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -54,7 +54,7 @@
 
 /* Function:  read_fasta_cDNA(ifp)
  *
- * Descrip:    Reads a fasta file assumming that it is cDNA. 
+ * Descrip:    Reads a fasta file assuming that it is cDNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/dynlibsrc/cdna.dy
+++ b/src/dynlibsrc/cdna.dy
@@ -48,7 +48,7 @@
 }
 
 %func
-Reads a fasta file assumming that it is cDNA. 
+Reads a fasta file assuming that it is cDNA. 
 Will complain if it is not, and return NULL.
 %arg
 filename filename to be opened and read
@@ -67,7 +67,7 @@
 
 
 %func
-Reads a fasta file assumming that it is cDNA. 
+Reads a fasta file assuming that it is cDNA. 
 Will complain if it is not, and return NULL.
 %arg
 ifp file point to be read from
--- a/src/dynlibsrc/cdna.h
+++ b/src/dynlibsrc/cdna.h
@@ -53,7 +53,7 @@
 
 /* Function:  read_fasta_file_cDNA(filename)
  *
- * Descrip:    Reads a fasta file assumming that it is cDNA. 
+ * Descrip:    Reads a fasta file assuming that it is cDNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -68,7 +68,7 @@
 
 /* Function:  read_fasta_cDNA(ifp)
  *
- * Descrip:    Reads a fasta file assumming that it is cDNA. 
+ * Descrip:    Reads a fasta file assuming that it is cDNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/dynlibsrc/cdna.pod
+++ b/src/dynlibsrc/cdna.pod
@@ -55,7 +55,7 @@
 
 &Wise2::cDNA::read_fasta_file_cDNA(filename)
 
-  Reads a fasta file assumming that it is cDNA. 
+  Reads a fasta file assuming that it is cDNA. 
   Will complain if it is not, and return NULL.
 
 
--- a/src/dynlibsrc/cdna.tex
+++ b/src/dynlibsrc/cdna.tex
@@ -57,7 +57,7 @@
 \item[filename] [UNKN ] filename to be opened and read [char *]
 \item[returns] [UNKN ] Undocumented return value [cDNA *]
 \end{description}
-Reads a fasta file assumming that it is cDNA. 
+Reads a fasta file assuming that it is cDNA. 
 Will complain if it is not, and return NULL.
 
 
--- a/src/dynlibsrc/cdna_api.h
+++ b/src/dynlibsrc/cdna_api.h
@@ -37,7 +37,7 @@
 
 /* Function:  Wise2_read_fasta_file_cDNA(filename)
  *
- * Descrip:    Reads a fasta file assumming that it is cDNA. 
+ * Descrip:    Reads a fasta file assuming that it is cDNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/dynlibsrc/dna.c
+++ b/src/dynlibsrc/dna.c
@@ -29,7 +29,7 @@
 
 /* Function:  read_fasta_file_DNA (filename)
  *
- * Descrip:    Reads a fasta file assumming that it is DNA. 
+ * Descrip:    Reads a fasta file assuming that it is DNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -54,7 +54,7 @@
 
 /* Function:  read_fasta_DNA (ifp)
  *
- * Descrip:    Reads a fasta file assumming that it is DNA. 
+ * Descrip:    Reads a fasta file assuming that it is DNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/dynlibsrc/dna.dy
+++ b/src/dynlibsrc/dna.dy
@@ -33,7 +33,7 @@
 }
 
 %func
-Reads a fasta file assumming that it is DNA. 
+Reads a fasta file assuming that it is DNA. 
 Will complain if it is not, and return NULL.
 %arg
 filename filename to be opened and read
@@ -52,7 +52,7 @@
 
 
 %func
-Reads a fasta file assumming that it is DNA. 
+Reads a fasta file assuming that it is DNA. 
 Will complain if it is not, and return NULL.
 %arg
 ifp file point to be read from
--- a/src/dynlibsrc/dna.h
+++ b/src/dynlibsrc/dna.h
@@ -53,7 +53,7 @@
 
 /* Function:  read_fasta_file_DNA (filename)
  *
- * Descrip:    Reads a fasta file assumming that it is DNA. 
+ * Descrip:    Reads a fasta file assuming that it is DNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -68,7 +68,7 @@
 
 /* Function:  read_fasta_DNA (ifp)
  *
- * Descrip:    Reads a fasta file assumming that it is DNA. 
+ * Descrip:    Reads a fasta file assuming that it is DNA. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/dynlibsrc/dynlibcross.c
+++ b/src/dynlibsrc/dynlibcross.c
@@ -31,7 +31,7 @@
 /* Function:  std_bits_Hscore(cut_off_level,report_stagger)
  *
  * Descrip:    This gives you a standard Hscore 
- *             module with a cutoff in bits (assumming
+ *             module with a cutoff in bits (assuming
  *             the score is being made from a standard
  *             Probability2Score type function).
  *
--- a/src/dynlibsrc/dynlibcross.dy
+++ b/src/dynlibsrc/dynlibcross.dy
@@ -31,7 +31,7 @@
 
 %func
 This gives you a standard Hscore 
-module with a cutoff in bits (assumming
+module with a cutoff in bits (assuming
 the score is being made from a standard
 Probability2Score type function).
 %%
--- a/src/dynlibsrc/dynlibcross.h
+++ b/src/dynlibsrc/dynlibcross.h
@@ -32,7 +32,7 @@
 /* Function:  std_bits_Hscore(cut_off_level,report_stagger)
  *
  * Descrip:    This gives you a standard Hscore 
- *             module with a cutoff in bits (assumming
+ *             module with a cutoff in bits (assuming
  *             the score is being made from a standard
  *             Probability2Score type function).
  *
--- a/src/dynlibsrc/pairbase.c
+++ b/src/dynlibsrc/pairbase.c
@@ -219,7 +219,7 @@
 
 /* Function:  make_flat_PairBaseCodonModel(cp,nonm,gap,ct)
  *
- * Descrip:    Makes a PairBaseCodonModel from a protein matrix - assumming a flat 
+ * Descrip:    Makes a PairBaseCodonModel from a protein matrix - assuming a flat 
  *             mapping to CodonMatrix
  *
  *
--- a/src/dynlibsrc/pairbase.dy
+++ b/src/dynlibsrc/pairbase.dy
@@ -210,7 +210,7 @@
 
 
 %func
-Makes a PairBaseCodonModel from a protein matrix - assumming a flat 
+Makes a PairBaseCodonModel from a protein matrix - assuming a flat 
 mapping to CodonMatrix
 %%
 PairBaseCodonModel * make_flat_PairBaseCodonModel(CompProb * cp,Probability nonm,Probability gap,CodonTable * ct)
--- a/src/dynlibsrc/pairbase.h
+++ b/src/dynlibsrc/pairbase.h
@@ -164,7 +164,7 @@
 
 /* Function:  make_flat_PairBaseCodonModel(cp,nonm,gap,ct)
  *
- * Descrip:    Makes a PairBaseCodonModel from a protein matrix - assumming a flat 
+ * Descrip:    Makes a PairBaseCodonModel from a protein matrix - assuming a flat 
  *             mapping to CodonMatrix
  *
  *
--- a/src/dynlibsrc/protein.c
+++ b/src/dynlibsrc/protein.c
@@ -29,7 +29,7 @@
 
 /* Function:  read_fasta_file_Protein (filename)
  *
- * Descrip:    Reads a fasta file assumming that it is protein. 
+ * Descrip:    Reads a fasta file assuming that it is protein. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -57,7 +57,7 @@
 
 /* Function:  read_fasta_Protein (ifp)
  *
- * Descrip:    Reads a fasta file assumming that it is protein. 
+ * Descrip:    Reads a fasta file assuming that it is protein. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/dynlibsrc/protein.dy
+++ b/src/dynlibsrc/protein.dy
@@ -48,7 +48,7 @@
 }
 
 %func
-Reads a fasta file assumming that it is protein. 
+Reads a fasta file assuming that it is protein. 
 Will complain if it is not, and return NULL.
 %arg
 filename filename to be opened and read
@@ -70,7 +70,7 @@
 
 
 %func
-Reads a fasta file assumming that it is protein. 
+Reads a fasta file assuming that it is protein. 
 Will complain if it is not, and return NULL.
 %arg
 ifp file point to be read from
--- a/src/dynlibsrc/protein.h
+++ b/src/dynlibsrc/protein.h
@@ -63,7 +63,7 @@
 
 /* Function:  read_fasta_file_Protein (filename)
  *
- * Descrip:    Reads a fasta file assumming that it is protein. 
+ * Descrip:    Reads a fasta file assuming that it is protein. 
  *             Will complain if it is not, and return NULL.
  *
  *
@@ -78,7 +78,7 @@
 
 /* Function:  read_fasta_Protein (ifp)
  *
- * Descrip:    Reads a fasta file assumming that it is protein. 
+ * Descrip:    Reads a fasta file assuming that it is protein. 
  *             Will complain if it is not, and return NULL.
  *
  *
--- a/src/models/genewisemodel.h
+++ b/src/models/genewisemodel.h
@@ -332,7 +332,7 @@
 /* Function:  GeneWise_fold_in_synchronised_RandomModel(gw,rm,cm,*ct,stop_codon_background)
  *
  * Descrip:    This function places 'log-odd' scores of the
- *             genewise model assumming that the random model
+ *             genewise model assuming that the random model
  *             is a protein model with the codon mapper system
  *             added in, *and* that the path of the random model
  *             is synchronous with the query model.
--- a/src/models/genewisemodeldb.c
+++ b/src/models/genewisemodeldb.c
@@ -233,7 +233,7 @@
 /* Function:  new_GeneWiseDB_cdna(syn,tdb,cp,cm,rmd,use_syn,flat_insert,allN)
  *
  * Descrip:    makes a new GeneWiseDB from its component parts,
- *             assumming a cDNA db.
+ *             assuming a cDNA db.
  *
  *             All the objects are hard-linked internally, so you can, if you
  *             wish, free them once passing them into this function
--- a/src/models/genewisemodeldb.dy
+++ b/src/models/genewisemodeldb.dy
@@ -220,7 +220,7 @@
 
 %func
 makes a new GeneWiseDB from its component parts,
-assumming a cDNA db.
+assuming a cDNA db.
 
 All the objects are hard-linked internally, so you can, if you
 wish, free them once passing them into this function
--- a/src/models/genewisemodeldb.h
+++ b/src/models/genewisemodeldb.h
@@ -126,7 +126,7 @@
 /* Function:  new_GeneWiseDB_cdna(syn,tdb,cp,cm,rmd,use_syn,flat_insert,allN)
  *
  * Descrip:    makes a new GeneWiseDB from its component parts,
- *             assumming a cDNA db.
+ *             assuming a cDNA db.
  *
  *             All the objects are hard-linked internally, so you can, if you
  *             wish, free them once passing them into this function
--- a/src/perl/scripts/halfwise.pl
+++ b/src/perl/scripts/halfwise.pl
@@ -141,7 +141,7 @@
 =item HMMer2.1.1
 
 type './configure' followed by 'make' in the hmmer-2.1.1 directory and then 'make install'
-(assumming you want to install in /usr/local/bin)
+(assuming you want to install in /usr/local/bin)
 
 =item bioperl-0.04.2