File: index.html

package info (click to toggle)
emboss 6.6.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 571,248 kB
  • ctags: 39,971
  • sloc: ansic: 460,578; java: 29,439; perl: 13,573; sh: 12,740; makefile: 3,275; csh: 706; asm: 351; xml: 239; pascal: 237; modula3: 8
file content (1605 lines) | stat: -rw-r--r-- 30,628 bytes parent folder | download | duplicates (6)
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

<HTML>

<HEAD>
  <TITLE>
  EMBOSS: The Applications (programs)
  </TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" text="#000000">



<table align=center border=0 cellspacing=0 cellpadding=0>
<tr><td valign=top>
<A HREF="http://emboss.sourceforge.net/" ONMOUSEOVER="self.status='Go to the EMBOSS home page';return true">
<img border=0 src="/emboss_icon.jpg" alt="" width=150 height=48></a>
</td>
<td align=left valign=middle>
<b><font size="+6"> 
The Applications (programs)
</font></b>
</td></tr>
</table>
<br>&nbsp;
<p>




The programs are listed in alphabetical order, Look at the individual
applications or go to the 
<a href="groups.html">GROUPS</a>
page to search by category. 
<p>

<a href="../../embassy/index.html">EMBASSY applications</a>
are described in separate documentation for each package.

<h3><A NAME="current">Applications</A> in the <a
href="ftp://emboss.open-bio.org/pub/EMBOSS/">current release</a></h3>

<table border cellpadding=4 bgcolor="#FFFFF0">

<tr>
<th>Program name</th>
<th>Description</th>
</tr>

<tr>
<td><a href="aaindexextract.html">aaindexextract</a></td>
<td>
Extract amino acid property data from AAINDEX
</td>
</tr>
<tr>
<td><a href="abiview.html">abiview</a></td>
<td>
Display the trace in an ABI sequencer file
</td>
</tr>
<tr>
<td><a href="acdc.html">acdc</a></td>
<td>
Test an application ACD file
</td>
</tr>
<tr>
<td><a href="acdpretty.html">acdpretty</a></td>
<td>
Correctly reformat an application ACD file
</td>
</tr>
<tr>
<td><a href="acdtable.html">acdtable</a></td>
<td>
Generate an HTML table of parameters from an application ACD file
</td>
</tr>
<tr>
<td><a href="acdtrace.html">acdtrace</a></td>
<td>
Trace processing of an application ACD file (for testing)
</td>
</tr>
<tr>
<td><a href="acdvalid.html">acdvalid</a></td>
<td>
Validate an application ACD file
</td>
</tr>
<tr>
<td><a href="aligncopy.html">aligncopy</a></td>
<td>
Read and write alignments
</td>
</tr>
<tr>
<td><a href="aligncopypair.html">aligncopypair</a></td>
<td>
Read and write pairs from alignments
</td>
</tr>
<tr>
<td><a href="antigenic.html">antigenic</a></td>
<td>
Find antigenic sites in proteins
</td>
</tr>
<tr>
<td><a href="assemblyget.html">assemblyget</a></td>
<td>
Get assembly of sequence reads
</td>
</tr>
<tr>
<td><a href="backtranambig.html">backtranambig</a></td>
<td>
Back-translate a protein sequence to ambiguous nucleotide sequence
</td>
</tr>
<tr>
<td><a href="backtranseq.html">backtranseq</a></td>
<td>
Back-translate a protein sequence to a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="banana.html">banana</a></td>
<td>
Plot bending and curvature data for B-DNA
</td>
</tr>
<tr>
<td><a href="biosed.html">biosed</a></td>
<td>
Replace or delete sequence sections
</td>
</tr>
<tr>
<td><a href="btwisted.html">btwisted</a></td>
<td>
Calculate the twisting in a B-DNA sequence
</td>
</tr>
<tr>
<td><a href="cachedas.html">cachedas</a></td>
<td>
Generate server cache file for DAS servers or for the DAS registry
</td>
</tr>
<tr>
<td><a href="cachedbfetch.html">cachedbfetch</a></td>
<td>
Generate server cache file for Dbfetch/WSDbfetch data sources
</td>
</tr>
<tr>
<td><a href="cacheebeyesearch.html">cacheebeyesearch</a></td>
<td>
Generate server cache file for EB-eye search domains
</td>
</tr>
<tr>
<td><a href="cacheensembl.html">cacheensembl</a></td>
<td>
Generate server cache file for an Ensembl server
</td>
</tr>
<tr>
<td><a href="cai.html">cai</a></td>
<td>
Calculate codon adaptation index
</td>
</tr>
<tr>
<td><a href="chaos.html">chaos</a></td>
<td>
Draw a chaos game representation plot for a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="charge.html">charge</a></td>
<td>
Draw a protein charge plot
</td>
</tr>
<tr>
<td><a href="checktrans.html">checktrans</a></td>
<td>
Report STOP codons and ORF statistics of a protein
</td>
</tr>
<tr>
<td><a href="chips.html">chips</a></td>
<td>
Calculate Nc codon usage statistic
</td>
</tr>
<tr>
<td><a href="cirdna.html">cirdna</a></td>
<td>
Draw circular map of DNA constructs
</td>
</tr>
<tr>
<td><a href="codcmp.html">codcmp</a></td>
<td>
Codon usage table comparison
</td>
</tr>
<tr>
<td><a href="codcopy.html">codcopy</a></td>
<td>
Copy and reformat a codon usage table
</td>
</tr>
<tr>
<td><a href="coderet.html">coderet</a></td>
<td>
Extract CDS, mRNA and translations from feature tables
</td>
</tr>
<tr>
<td><a href="compseq.html">compseq</a></td>
<td>
Calculate the composition of unique words in sequences
</td>
</tr>
<tr>
<td><a href="cons.html">cons</a></td>
<td>
Create a consensus sequence from a multiple alignment
</td>
</tr>
<tr>
<td><a href="consambig.html">consambig</a></td>
<td>
Create an ambiguous consensus sequence from a multiple alignment
</td>
</tr>
<tr>
<td><a href="cpgplot.html">cpgplot</a></td>
<td>
Identify and plot CpG islands in nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="cpgreport.html">cpgreport</a></td>
<td>
Identify and report CpG-rich regions in nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="cusp.html">cusp</a></td>
<td>
Create a codon usage table from nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="cutgextract.html">cutgextract</a></td>
<td>
Extract codon usage tables from CUTG database
</td>
</tr>
<tr>
<td><a href="cutseq.html">cutseq</a></td>
<td>
Remove a section from a sequence
</td>
</tr>
<tr>
<td><a href="dan.html">dan</a></td>
<td>
Calculate nucleic acid melting temperature
</td>
</tr>
<tr>
<td><a href="dbiblast.html">dbiblast</a></td>
<td>
Index a BLAST database
</td>
</tr>
<tr>
<td><a href="dbifasta.html">dbifasta</a></td>
<td>
Index a fasta file database
</td>
</tr>
<tr>
<td><a href="dbiflat.html">dbiflat</a></td>
<td>
Index a flat file database
</td>
</tr>
<tr>
<td><a href="dbigcg.html">dbigcg</a></td>
<td>
Index a GCG formatted database
</td>
</tr>
<tr>
<td><a href="dbtell.html">dbtell</a></td>
<td>
Display information about a public database
</td>
</tr>
<tr>
<td><a href="dbxcompress.html">dbxcompress</a></td>
<td>
Compress an uncompressed dbx index
</td>
</tr>
<tr>
<td><a href="dbxedam.html">dbxedam</a></td>
<td>
Index the EDAM ontology using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxfasta.html">dbxfasta</a></td>
<td>
Index a fasta file database using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxflat.html">dbxflat</a></td>
<td>
Index a flat file database using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxgcg.html">dbxgcg</a></td>
<td>
Index a GCG formatted database using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxobo.html">dbxobo</a></td>
<td>
Index an obo ontology using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxreport.html">dbxreport</a></td>
<td>
Validate index and report internals for dbx databases
</td>
</tr>
<tr>
<td><a href="dbxresource.html">dbxresource</a></td>
<td>
Index a data resource catalogue using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxstat.html">dbxstat</a></td>
<td>
Dump statistics for dbx databases
</td>
</tr>
<tr>
<td><a href="dbxtax.html">dbxtax</a></td>
<td>
Index NCBI taxonomy using b+tree indices
</td>
</tr>
<tr>
<td><a href="dbxuncompress.html">dbxuncompress</a></td>
<td>
Uncompress a compressed dbx index
</td>
</tr>
<tr>
<td><a href="degapseq.html">degapseq</a></td>
<td>
Remove non-alphabetic (e.g. gap) characters from sequences
</td>
</tr>
<tr>
<td><a href="density.html">density</a></td>
<td>
Draw a nucleic acid density plot
</td>
</tr>
<tr>
<td><a href="descseq.html">descseq</a></td>
<td>
Alter the name or description of a sequence
</td>
</tr>
<tr>
<td><a href="diffseq.html">diffseq</a></td>
<td>
Compare and report features of two similar sequences
</td>
</tr>
<tr>
<td><a href="distmat.html">distmat</a></td>
<td>
Create a distance matrix from a multiple sequence alignment
</td>
</tr>
<tr>
<td><a href="dotmatcher.html">dotmatcher</a></td>
<td>
Draw a threshold dotplot of two sequences
</td>
</tr>
<tr>
<td><a href="dotpath.html">dotpath</a></td>
<td>
Draw a non-overlapping wordmatch dotplot of two sequences
</td>
</tr>
<tr>
<td><a href="dottup.html">dottup</a></td>
<td>
Display a wordmatch dotplot of two sequences
</td>
</tr>
<tr>
<td><a href="dreg.html">dreg</a></td>
<td>
Regular expression search of nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="drfinddata.html">drfinddata</a></td>
<td>
Find public databases by data type
</td>
</tr>
<tr>
<td><a href="drfindformat.html">drfindformat</a></td>
<td>
Find public databases by format
</td>
</tr>
<tr>
<td><a href="drfindid.html">drfindid</a></td>
<td>
Find public databases by identifier
</td>
</tr>
<tr>
<td><a href="drfindresource.html">drfindresource</a></td>
<td>
Find public databases by resource
</td>
</tr>
<tr>
<td><a href="drget.html">drget</a></td>
<td>
Get data resource entries
</td>
</tr>
<tr>
<td><a href="drtext.html">drtext</a></td>
<td>
Get data resource entries complete text
</td>
</tr>
<tr>
<td><a href="edamdef.html">edamdef</a></td>
<td>
Find EDAM ontology terms by definition
</td>
</tr>
<tr>
<td><a href="edamhasinput.html">edamhasinput</a></td>
<td>
Find EDAM ontology terms by has_input relation
</td>
</tr>
<tr>
<td><a href="edamhasoutput.html">edamhasoutput</a></td>
<td>
Find EDAM ontology terms by has_output relation
</td>
</tr>
<tr>
<td><a href="edamisformat.html">edamisformat</a></td>
<td>
Find EDAM ontology terms by is_format_of relation
</td>
</tr>
<tr>
<td><a href="edamisid.html">edamisid</a></td>
<td>
Find EDAM ontology terms by is_identifier_of relation
</td>
</tr>
<tr>
<td><a href="edamname.html">edamname</a></td>
<td>
Find EDAM ontology terms by name
</td>
</tr>
<tr>
<td><a href="edialign.html">edialign</a></td>
<td>
Local multiple alignment of sequences
</td>
</tr>
<tr>
<td><a href="einverted.html">einverted</a></td>
<td>
Find inverted repeats in nucleotide sequences
</td>
</tr>
<tr>
<td><a href="embossdata.html">embossdata</a></td>
<td>
Find and retrieve EMBOSS data files
</td>
</tr>
<tr>
<td><a href="embossupdate.html">embossupdate</a></td>
<td>
Check for more recent updates to EMBOSS
</td>
</tr>
<tr>
<td><a href="embossversion.html">embossversion</a></td>
<td>
Report the current EMBOSS version number
</td>
</tr>
<tr>
<td><a href="emma.html">emma</a></td>
<td>
Multiple sequence alignment (ClustalW wrapper)
</td>
</tr>
<tr>
<td><a href="emowse.html">emowse</a></td>
<td>
Search protein sequences by digest fragment molecular weight
</td>
</tr>
<tr>
<td><a href="entret.html">entret</a></td>
<td>
Retrieve sequence entries from flatfile databases and files
</td>
</tr>
<tr>
<td><a href="epestfind.html">epestfind</a></td>
<td>
Find PEST motifs as potential proteolytic cleavage sites
</td>
</tr>
<tr>
<td><a href="eprimer3.html">eprimer3</a></td>
<td>
Pick PCR primers and hybridization oligos
</td>
</tr>
<tr>
<td><a href="eprimer32.html">eprimer32</a></td>
<td>
Pick PCR primers and hybridization oligos
</td>
</tr>
<tr>
<td><a href="equicktandem.html">equicktandem</a></td>
<td>
Find tandem repeats in nucleotide sequences
</td>
</tr>
<tr>
<td><a href="est2genome.html">est2genome</a></td>
<td>
Align EST sequences to genomic DNA sequence
</td>
</tr>
<tr>
<td><a href="etandem.html">etandem</a></td>
<td>
Find tandem repeats in a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="extractalign.html">extractalign</a></td>
<td>
Extract regions from a sequence alignment
</td>
</tr>
<tr>
<td><a href="extractfeat.html">extractfeat</a></td>
<td>
Extract features from sequence(s)
</td>
</tr>
<tr>
<td><a href="extractseq.html">extractseq</a></td>
<td>
Extract regions from a sequence
</td>
</tr>
<tr>
<td><a href="featcopy.html">featcopy</a></td>
<td>
Read and write a feature table
</td>
</tr>
<tr>
<td><a href="featmerge.html">featmerge</a></td>
<td>
Merge two overlapping feature tables
</td>
</tr>
<tr>
<td><a href="featreport.html">featreport</a></td>
<td>
Read and write a feature table
</td>
</tr>
<tr>
<td><a href="feattext.html">feattext</a></td>
<td>
Return a feature table original text
</td>
</tr>
<tr>
<td><a href="findkm.html">findkm</a></td>
<td>
Calculate and plot enzyme reaction data
</td>
</tr>
<tr>
<td><a href="freak.html">freak</a></td>
<td>
Generate residue/base frequency table or plot
</td>
</tr>
<tr>
<td><a href="fuzznuc.html">fuzznuc</a></td>
<td>
Search for patterns in nucleotide sequences
</td>
</tr>
<tr>
<td><a href="fuzzpro.html">fuzzpro</a></td>
<td>
Search for patterns in protein sequences
</td>
</tr>
<tr>
<td><a href="fuzztran.html">fuzztran</a></td>
<td>
Search for patterns in protein sequences (translated)
</td>
</tr>
<tr>
<td><a href="garnier.html">garnier</a></td>
<td>
Predict protein secondary structure using GOR method
</td>
</tr>
<tr>
<td><a href="geecee.html">geecee</a></td>
<td>
Calculate fractional GC content of nucleic acid sequences
</td>
</tr>
<tr>
<td><a href="getorf.html">getorf</a></td>
<td>
Find and extract open reading frames (ORFs)
</td>
</tr>
<tr>
<td><a href="godef.html">godef</a></td>
<td>
Find GO ontology terms by definition
</td>
</tr>
<tr>
<td><a href="goname.html">goname</a></td>
<td>
Find GO ontology terms by name
</td>
</tr>
<tr>
<td><a href="helixturnhelix.html">helixturnhelix</a></td>
<td>
Identify nucleic acid-binding motifs in protein sequences
</td>
</tr>
<tr>
<td><a href="hmoment.html">hmoment</a></td>
<td>
Calculate and plot hydrophobic moment for protein sequence(s)
</td>
</tr>
<tr>
<td><a href="iep.html">iep</a></td>
<td>
Calculate the isoelectric point of proteins
</td>
</tr>
<tr>
<td><a href="infoalign.html">infoalign</a></td>
<td>
Display basic information about a multiple sequence alignment
</td>
</tr>
<tr>
<td><a href="infoassembly.html">infoassembly</a></td>
<td>
Display information about assemblies
</td>
</tr>
<tr>
<td><a href="infobase.html">infobase</a></td>
<td>
Return information on a given nucleotide base
</td>
</tr>
<tr>
<td><a href="inforesidue.html">inforesidue</a></td>
<td>
Return information on a given amino acid residue
</td>
</tr>
<tr>
<td><a href="infoseq.html">infoseq</a></td>
<td>
Display basic information about sequences
</td>
</tr>
<tr>
<td><a href="isochore.html">isochore</a></td>
<td>
Plot isochores in DNA sequences
</td>
</tr>
<tr>
<td><a href="jaspextract.html">jaspextract</a></td>
<td>
Extract data from JASPAR
</td>
</tr>
<tr>
<td><a href="jaspscan.html">jaspscan</a></td>
<td>
Scan DNA sequences for transcription factors
</td>
</tr>
<tr>
<td><a href="lindna.html">lindna</a></td>
<td>
Draw linear maps of DNA constructs
</td>
</tr>
<tr>
<td><a href="listor.html">listor</a></td>
<td>
Write a list file of the logical OR of two sets of sequences
</td>
</tr>
<tr>
<td><a href="makenucseq.html">makenucseq</a></td>
<td>
Create random nucleotide sequences
</td>
</tr>
<tr>
<td><a href="makeprotseq.html">makeprotseq</a></td>
<td>
Create random protein sequences
</td>
</tr>
<tr>
<td><a href="marscan.html">marscan</a></td>
<td>
Find matrix/scaffold recognition (MRS) signatures in DNA sequences
</td>
</tr>
<tr>
<td><a href="maskambignuc.html">maskambignuc</a></td>
<td>
Mask all ambiguity characters in nucleotide sequences with N
</td>
</tr>
<tr>
<td><a href="maskambigprot.html">maskambigprot</a></td>
<td>
Mask all ambiguity characters in protein sequences with X
</td>
</tr>
<tr>
<td><a href="maskfeat.html">maskfeat</a></td>
<td>
Write a sequence with masked features
</td>
</tr>
<tr>
<td><a href="maskseq.html">maskseq</a></td>
<td>
Write a sequence with masked regions
</td>
</tr>
<tr>
<td><a href="matcher.html">matcher</a></td>
<td>
Waterman-Eggert local alignment of two sequences
</td>
</tr>
<tr>
<td><a href="megamerger.html">megamerger</a></td>
<td>
Merge two large overlapping DNA sequences
</td>
</tr>
<tr>
<td><a href="merger.html">merger</a></td>
<td>
Merge two overlapping sequences
</td>
</tr>
<tr>
<td><a href="msbar.html">msbar</a></td>
<td>
Mutate a sequence
</td>
</tr>
<tr>
<td><a href="mwcontam.html">mwcontam</a></td>
<td>
Find weights common to multiple molecular weights files
</td>
</tr>
<tr>
<td><a href="mwfilter.html">mwfilter</a></td>
<td>
Filter noisy data from molecular weights file
</td>
</tr>
<tr>
<td><a href="needle.html">needle</a></td>
<td>
Needleman-Wunsch global alignment of two sequences
</td>
</tr>
<tr>
<td><a href="needleall.html">needleall</a></td>
<td>
Many-to-many pairwise alignments of two sequence sets
</td>
</tr>
<tr>
<td><a href="newcpgreport.html">newcpgreport</a></td>
<td>
Identify CpG islands in nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="newcpgseek.html">newcpgseek</a></td>
<td>
Identify and report CpG-rich regions in nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="newseq.html">newseq</a></td>
<td>
Create a sequence file from a typed-in sequence
</td>
</tr>
<tr>
<td><a href="nohtml.html">nohtml</a></td>
<td>
Remove mark-up (e.g. HTML tags) from an ASCII text file
</td>
</tr>
<tr>
<td><a href="noreturn.html">noreturn</a></td>
<td>
Remove carriage return from ASCII files
</td>
</tr>
<tr>
<td><a href="nospace.html">nospace</a></td>
<td>
Remove whitespace from an ASCII text file
</td>
</tr>
<tr>
<td><a href="notab.html">notab</a></td>
<td>
Replace tabs with spaces in an ASCII text file
</td>
</tr>
<tr>
<td><a href="notseq.html">notseq</a></td>
<td>
Write to file a subset of an input stream of sequences
</td>
</tr>
<tr>
<td><a href="nthseq.html">nthseq</a></td>
<td>
Write to file a single sequence from an input stream of sequences
</td>
</tr>
<tr>
<td><a href="nthseqset.html">nthseqset</a></td>
<td>
Read and write (return) one set of sequences from many
</td>
</tr>
<tr>
<td><a href="octanol.html">octanol</a></td>
<td>
Draw a White-Wimley protein hydropathy plot
</td>
</tr>
<tr>
<td><a href="oddcomp.html">oddcomp</a></td>
<td>
Identify proteins with specified sequence word composition
</td>
</tr>
<tr>
<td><a href="ontocount.html">ontocount</a></td>
<td>
Count ontology term(s)
</td>
</tr>
<tr>
<td><a href="ontoget.html">ontoget</a></td>
<td>
Get ontology term(s)
</td>
</tr>
<tr>
<td><a href="ontogetcommon.html">ontogetcommon</a></td>
<td>
Get common ancestor for terms
</td>
</tr>
<tr>
<td><a href="ontogetdown.html">ontogetdown</a></td>
<td>
Get ontology term(s) by parent id
</td>
</tr>
<tr>
<td><a href="ontogetobsolete.html">ontogetobsolete</a></td>
<td>
Get ontology ontology terms
</td>
</tr>
<tr>
<td><a href="ontogetroot.html">ontogetroot</a></td>
<td>
Get ontology root terms by child identifier
</td>
</tr>
<tr>
<td><a href="ontogetsibs.html">ontogetsibs</a></td>
<td>
Get ontology term(s) by id with common parent
</td>
</tr>
<tr>
<td><a href="ontogetup.html">ontogetup</a></td>
<td>
Get ontology term(s) by id of child
</td>
</tr>
<tr>
<td><a href="ontoisobsolete.html">ontoisobsolete</a></td>
<td>
Report whether an ontology term id is obsolete
</td>
</tr>
<tr>
<td><a href="ontotext.html">ontotext</a></td>
<td>
Get ontology term(s) original full text
</td>
</tr>
<tr>
<td><a href="palindrome.html">palindrome</a></td>
<td>
Find inverted repeats in nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="pasteseq.html">pasteseq</a></td>
<td>
Insert one sequence into another
</td>
</tr>
<tr>
<td><a href="patmatdb.html">patmatdb</a></td>
<td>
Search protein sequences with a sequence motif
</td>
</tr>
<tr>
<td><a href="patmatmotifs.html">patmatmotifs</a></td>
<td>
Scan a protein sequence with motifs from the PROSITE database
</td>
</tr>
<tr>
<td><a href="pepcoil.html">pepcoil</a></td>
<td>
Predict coiled coil regions in protein sequences
</td>
</tr>
<tr>
<td><a href="pepdigest.html">pepdigest</a></td>
<td>
Report on protein proteolytic enzyme or reagent cleavage sites
</td>
</tr>
<tr>
<td><a href="pepinfo.html">pepinfo</a></td>
<td>
Plot amino acid properties of a protein sequence in parallel
</td>
</tr>
<tr>
<td><a href="pepnet.html">pepnet</a></td>
<td>
Draw a helical net for a protein sequence
</td>
</tr>
<tr>
<td><a href="pepstats.html">pepstats</a></td>
<td>
Calculate statistics of protein properties
</td>
</tr>
<tr>
<td><a href="pepwheel.html">pepwheel</a></td>
<td>
Draw a helical wheel diagram for a protein sequence
</td>
</tr>
<tr>
<td><a href="pepwindow.html">pepwindow</a></td>
<td>
Draw a hydropathy plot for a protein sequence
</td>
</tr>
<tr>
<td><a href="pepwindowall.html">pepwindowall</a></td>
<td>
Draw Kyte-Doolittle hydropathy plot for a protein alignment
</td>
</tr>
<tr>
<td><a href="plotcon.html">plotcon</a></td>
<td>
Plot conservation of a sequence alignment
</td>
</tr>
<tr>
<td><a href="plotorf.html">plotorf</a></td>
<td>
Plot potential open reading frames in a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="polydot.html">polydot</a></td>
<td>
Draw dotplots for all-against-all comparison of a sequence set
</td>
</tr>
<tr>
<td><a href="preg.html">preg</a></td>
<td>
Regular expression search of protein sequence(s)
</td>
</tr>
<tr>
<td><a href="prettyplot.html">prettyplot</a></td>
<td>
Draw a sequence alignment with pretty formatting
</td>
</tr>
<tr>
<td><a href="prettyseq.html">prettyseq</a></td>
<td>
Write a nucleotide sequence and its translation to file
</td>
</tr>
<tr>
<td><a href="primersearch.html">primersearch</a></td>
<td>
Search DNA sequences for matches with primer pairs
</td>
</tr>
<tr>
<td><a href="printsextract.html">printsextract</a></td>
<td>
Extract data from PRINTS database for use by pscan
</td>
</tr>
<tr>
<td><a href="profit.html">profit</a></td>
<td>
Scan one or more sequences with a simple frequency matrix
</td>
</tr>
<tr>
<td><a href="prophecy.html">prophecy</a></td>
<td>
Create frequency matrix or profile from a multiple alignment
</td>
</tr>
<tr>
<td><a href="prophet.html">prophet</a></td>
<td>
Scan one or more sequences with a Gribskov or Henikoff profile
</td>
</tr>
<tr>
<td><a href="prosextract.html">prosextract</a></td>
<td>
Process the PROSITE motif database for use by patmatmotifs
</td>
</tr>
<tr>
<td><a href="pscan.html">pscan</a></td>
<td>
Scan protein sequence(s) with fingerprints from the PRINTS database
</td>
</tr>
<tr>
<td><a href="psiphi.html">psiphi</a></td>
<td>
Calculates phi and psi torsion angles from protein coordinates
</td>
</tr>
<tr>
<td><a href="rebaseextract.html">rebaseextract</a></td>
<td>
Process the REBASE database for use by restriction enzyme applications
</td>
</tr>
<tr>
<td><a href="recoder.html">recoder</a></td>
<td>
Find restriction sites to remove (mutate) with no translation change
</td>
</tr>
<tr>
<td><a href="redata.html">redata</a></td>
<td>
Retrieve information from REBASE restriction enzyme database
</td>
</tr>
<tr>
<td><a href="refseqget.html">refseqget</a></td>
<td>
Get reference sequence
</td>
</tr>
<tr>
<td><a href="remap.html">remap</a></td>
<td>
Display restriction enzyme binding sites in a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="restover.html">restover</a></td>
<td>
Find restriction enzymes producing a specific overhang
</td>
</tr>
<tr>
<td><a href="restrict.html">restrict</a></td>
<td>
Report restriction enzyme cleavage sites in a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="revseq.html">revseq</a></td>
<td>
Reverse and complement a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="seealso.html">seealso</a></td>
<td>
Find programs with similar function to a specified program
</td>
</tr>
<tr>
<td><a href="seqcount.html">seqcount</a></td>
<td>
Read and count sequences
</td>
</tr>
<tr>
<td><a href="seqmatchall.html">seqmatchall</a></td>
<td>
All-against-all word comparison of a sequence set
</td>
</tr>
<tr>
<td><a href="seqret.html">seqret</a></td>
<td>
Read and write (return) sequences
</td>
</tr>
<tr>
<td><a href="seqretsetall.html">seqretsetall</a></td>
<td>
Read and write (return) many sets of sequences
</td>
</tr>
<tr>
<td><a href="seqretsplit.html">seqretsplit</a></td>
<td>
Read sequences and write them to individual files
</td>
</tr>
<tr>
<td><a href="seqxref.html">seqxref</a></td>
<td>
Retrieve all database cross-references for a sequence entry
</td>
</tr>
<tr>
<td><a href="seqxrefget.html">seqxrefget</a></td>
<td>
Retrieve all cross-referenced data for a sequence entry
</td>
</tr>
<tr>
<td><a href="servertell.html">servertell</a></td>
<td>
Display information about a public server
</td>
</tr>
<tr>
<td><a href="showalign.html">showalign</a></td>
<td>
Display a multiple sequence alignment in pretty format
</td>
</tr>
<tr>
<td><a href="showdb.html">showdb</a></td>
<td>
Display information on configured databases
</td>
</tr>
<tr>
<td><a href="showfeat.html">showfeat</a></td>
<td>
Display features of a sequence in pretty format
</td>
</tr>
<tr>
<td><a href="showorf.html">showorf</a></td>
<td>
Display a nucleotide sequence and translation in pretty format
</td>
</tr>
<tr>
<td><a href="showpep.html">showpep</a></td>
<td>
Display protein sequences with features in pretty format
</td>
</tr>
<tr>
<td><a href="showseq.html">showseq</a></td>
<td>
Display sequences with features in pretty format
</td>
</tr>
<tr>
<td><a href="showserver.html">showserver</a></td>
<td>
Display information on configured servers
</td>
</tr>
<tr>
<td><a href="shuffleseq.html">shuffleseq</a></td>
<td>
Shuffle a set of sequences maintaining composition
</td>
</tr>
<tr>
<td><a href="sigcleave.html">sigcleave</a></td>
<td>
Report on signal cleavage sites in a protein sequence
</td>
</tr>
<tr>
<td><a href="silent.html">silent</a></td>
<td>
Find restriction sites to insert (mutate) with no translation change
</td>
</tr>
<tr>
<td><a href="sirna.html">sirna</a></td>
<td>
Find siRNA duplexes in mRNA
</td>
</tr>
<tr>
<td><a href="sixpack.html">sixpack</a></td>
<td>
Display a DNA sequence with 6-frame translation and ORFs
</td>
</tr>
<tr>
<td><a href="sizeseq.html">sizeseq</a></td>
<td>
Sort sequences by size
</td>
</tr>
<tr>
<td><a href="skipredundant.html">skipredundant</a></td>
<td>
Remove redundant sequences from an input set
</td>
</tr>
<tr>
<td><a href="skipseq.html">skipseq</a></td>
<td>
Read and write (return) sequences, skipping first few
</td>
</tr>
<tr>
<td><a href="splitsource.html">splitsource</a></td>
<td>
Split sequence(s) into original source sequences
</td>
</tr>
<tr>
<td><a href="splitter.html">splitter</a></td>
<td>
Split sequence(s) into smaller sequences
</td>
</tr>
<tr>
<td><a href="stretcher.html">stretcher</a></td>
<td>
Needleman-Wunsch rapid global alignment of two sequences
</td>
</tr>
<tr>
<td><a href="stssearch.html">stssearch</a></td>
<td>
Search a DNA database for matches with a set of STS primers
</td>
</tr>
<tr>
<td><a href="supermatcher.html">supermatcher</a></td>
<td>
Calculate approximate local pair-wise alignments of larger sequences
</td>
</tr>
<tr>
<td><a href="syco.html">syco</a></td>
<td>
Draw synonymous codon usage statistic plot for a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="taxget.html">taxget</a></td>
<td>
Get taxon(s)
</td>
</tr>
<tr>
<td><a href="taxgetdown.html">taxgetdown</a></td>
<td>
Get descendants of taxon(s)
</td>
</tr>
<tr>
<td><a href="taxgetrank.html">taxgetrank</a></td>
<td>
Get parents of taxon(s)
</td>
</tr>
<tr>
<td><a href="taxgetspecies.html">taxgetspecies</a></td>
<td>
Get all species under taxon(s)
</td>
</tr>
<tr>
<td><a href="taxgetup.html">taxgetup</a></td>
<td>
Get parents of taxon(s)
</td>
</tr>
<tr>
<td><a href="tcode.html">tcode</a></td>
<td>
Identify protein-coding regions using Fickett TESTCODE statistic
</td>
</tr>
<tr>
<td><a href="textget.html">textget</a></td>
<td>
Get text data entries
</td>
</tr>
<tr>
<td><a href="textsearch.html">textsearch</a></td>
<td>
Search the textual description of sequence(s)
</td>
</tr>
<tr>
<td><a href="tfextract.html">tfextract</a></td>
<td>
Process TRANSFAC transcription factor database for use by tfscan
</td>
</tr>
<tr>
<td><a href="tfm.html">tfm</a></td>
<td>
Display full documentation for an application
</td>
</tr>
<tr>
<td><a href="tfscan.html">tfscan</a></td>
<td>
Identify transcription factor binding sites in DNA sequences
</td>
</tr>
<tr>
<td><a href="tmap.html">tmap</a></td>
<td>
Predict and plot transmembrane segments in protein sequences
</td>
</tr>
<tr>
<td><a href="tranalign.html">tranalign</a></td>
<td>
Generate an alignment of nucleic coding regions from aligned proteins
</td>
</tr>
<tr>
<td><a href="transeq.html">transeq</a></td>
<td>
Translate nucleic acid sequences
</td>
</tr>
<tr>
<td><a href="trimest.html">trimest</a></td>
<td>
Remove poly-A tails from nucleotide sequences
</td>
</tr>
<tr>
<td><a href="trimseq.html">trimseq</a></td>
<td>
Remove unwanted characters from start and end of sequence(s)
</td>
</tr>
<tr>
<td><a href="trimspace.html">trimspace</a></td>
<td>
Remove extra whitespace from an ASCII text file
</td>
</tr>
<tr>
<td><a href="twofeat.html">twofeat</a></td>
<td>
Find neighbouring pairs of features in sequence(s)
</td>
</tr>
<tr>
<td><a href="union.html">union</a></td>
<td>
Concatenate multiple sequences into a single sequence
</td>
</tr>
<tr>
<td><a href="urlget.html">urlget</a></td>
<td>
Get URLs of data resources
</td>
</tr>
<tr>
<td><a href="variationget.html">variationget</a></td>
<td>
Get sequence variations
</td>
</tr>
<tr>
<td><a href="vectorstrip.html">vectorstrip</a></td>
<td>
Remove vectors from the ends of nucleotide sequence(s)
</td>
</tr>
<tr>
<td><a href="water.html">water</a></td>
<td>
Smith-Waterman local alignment of sequences
</td>
</tr>
<tr>
<td><a href="whichdb.html">whichdb</a></td>
<td>
Search all sequence databases for an entry and retrieve it
</td>
</tr>
<tr>
<td><a href="wobble.html">wobble</a></td>
<td>
Plot third base position variability in a nucleotide sequence
</td>
</tr>
<tr>
<td><a href="wordcount.html">wordcount</a></td>
<td>
Count and extract unique words in molecular sequence(s)
</td>
</tr>
<tr>
<td><a href="wordfinder.html">wordfinder</a></td>
<td>
Match large sequences against one or more other sequences
</td>
</tr>
<tr>
<td><a href="wordmatch.html">wordmatch</a></td>
<td>
Find regions of identity (exact matches) of two sequences
</td>
</tr>
<tr>
<td><a href="wossdata.html">wossdata</a></td>
<td>
Find programs by EDAM data
</td>
</tr>
<tr>
<td><a href="wossinput.html">wossinput</a></td>
<td>
Find programs by EDAM input data
</td>
</tr>
<tr>
<td><a href="wossname.html">wossname</a></td>
<td>
Find programs by keywords in their short description
</td>
</tr>
<tr>
<td><a href="wossoperation.html">wossoperation</a></td>
<td>
Find programs by EDAM operation
</td>
</tr>
<tr>
<td><a href="wossoutput.html">wossoutput</a></td>
<td>
Find programs by EDAM output data
</td>
</tr>
<tr>
<td><a href="wossparam.html">wossparam</a></td>
<td>
Find programs by EDAM parameter
</td>
</tr>
<tr>
<td><a href="wosstopic.html">wosstopic</a></td>
<td>
Find programs by EDAM topic
</td>
</tr>
<tr>
<td><a href="xmlget.html">xmlget</a></td>
<td>
Get XML data
</td>
</tr>
<tr>
<td><a href="xmltext.html">xmltext</a></td>
<td>
Get XML document original full text
</td>
</tr>
<tr>
<td><a href="yank.html">yank</a></td>
<td>
Add a sequence reference (a full USA) to a list file
</td>
</tr>


</table>




</BODY>
</HTML>