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
|
.TH BLAST 1 2009-08-02 NCBI "NCBI Tools User's Manual"
.SH NAME
bl2seq, blast2, blastall, blastall_old, blastcl3, blastpgp, impala, megablast, rpsblast, seedtop \- Basic Local Alignment Search Tool
.SH SYNOPSIS
.B bl2seq
[\|\fB\-\fP\|]
[\|\fB\-A\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-I\fP\ \(dq\fIstart\ stop\fP\(dq\|]
[\|\fB\-J\fP\ \(dq\fIstart\ stop\fP\(dq\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-S\fP\ \fIN\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-V\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-a\fP\ \fIfilename\fP\|]
[\|\fB\-d\fP\ \fIN\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-g\ F\fP\|]
\fB\-i\fP\ \fIfilename\fP
\fB\-j\fP\ \fIfilename\fP
[\|\fB\-m\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
\fB\-p\fP\ \fIstr\fP
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
[\|\fB\-t\fP\ \fIN\fP\|]
.PP
\" Debian renames blast to blast2 to avoid clashing with an unrelated
\" blast executable.
.ds bx blast2
.B \*(bx
[\|\fB\-\fP\|]
[\|\fB\-B\fP\ \fIN\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-C\fP\ \fIx\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-H\fP\|]
[\|\fB\-I\fP\ \(dq\fIstart\ stop\fP\(dq\|]
[\|\fB\-J\fP\ \(dq\fIstart\ stop\fP\(dq\|]
[\|\fB\-K\fP\ \fIN\fP\|]
[\|\fB\-L\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-N\fP\|]
[\|\fB\-P\fP\ \fIX\fP\|]
[\|\fB\-Q\fP\ \fIN\fP\|]
[\|\fB\-R\fP\|]
[\|\fB\-S\fP\ \fIN\fP\|]
[\|\fB\-T\fP\ \fIN\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-c\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\ \fIX\fP\|]
[\|\fB\-g\fP\|]
[\|\fB\-h\fP\ \fIN\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-j\fP\ \fIfilename\fP\|]
[\|\fB\-k\fP\ \fIstr\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-n\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
\fB\-p\fP\ \fIstr\fP
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
[\|\fB\-s\fP\fP\|]
[\|\fB\-t\fP\ \fIN\fP\|]
[\|\fB\-u\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-w\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIN\fP\|]
[\|\fB\-z\fP\ \fIN\fP\|]
.PP
.B blastall
[\|\fB\-\fP\|]
[\|\fB\-A\fP\ \fIN\fP\|]
[\|\fB\-B\fP\ \fIN\fP\|]
[\|\fB\-C\fP\ \fIx\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-K\fP\ \fIN\fP\|]
[\|\fB\-L\fP\ \fIstart,stop\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-P\fP\ \fIN\fP\|]
[\|\fB\-Q\fP\ \fIN\fP\|]
[\|\fB\-R\fP\ \fIfilename\fP\|]
[\|\fB\-S\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-V\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\ \fIX\fP\|]
[\|\fB\-g\ F\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-l\fP\ \fIstr\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-n\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
\fB\-p\fP\ \fIstr\fP
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
[\|\fB\-s\fP\|]
[\|\fB\-t\fP\ \fIN\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-w\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIX\fP\|]
[\|\fB\-z\fP\ \fIX\fP\|]
.PP
.B blastall_old
[\|\fB\-\fP\|]
[\|\fB\-A\fP\ \fIN\fP\|]
[\|\fB\-B\fP\ \fIN\fP\|]
[\|\fB\-C\fP\ \fIx\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-K\fP\ \fIN\fP\|]
[\|\fB\-L\fP\ \fIstart,stop\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-P\fP\ \fIN\fP\|]
[\|\fB\-Q\fP\ \fIN\fP\|]
[\|\fB\-R\fP\ \fIfilename\fP\|]
[\|\fB\-S\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\ \fIX\fP\|]
[\|\fB\-g\ F\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-l\fP\ \fIstr\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-n\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
\fB\-p\fP\ \fIstr\fP
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
[\|\fB\-s\fP\|]
[\|\fB\-t\fP\ \fIN\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-w\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIX\fP\|]
[\|\fB\-z\fP\ \fIX\fP\|]
.PP
.B blastcl3
[\|\fB\-\fP\|]
[\|\fB\-A\fP\ \fIN\fP\|]
[\|\fB\-C\fP\ \fIx\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-K\fP\ \fIN\fP\|]
[\|\fB\-L\fP\ \fIstart,stop\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-Q\fP\ \fIN\fP\|]
[\|\fB\-R\fP\|]
[\|\fB\-S\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\ \fIX\fP\|]
[\|\fB\-g\ F\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-n\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
\fB\-p\fP\ \fIstr\fP
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
[\|\fB\-s\fP\|]
[\|\fB\-t\fP\ \fIN\fP\|]
[\|\fB\-u\fP\ \fIstr\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-w\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIX\fP\|]
[\|\fB\-z\fP\ \fIX\fP\|]
.PP
.B blastpgp
[\|\fB\-\fP\|]
[\|\fB\-A\fP\ \fIN\fP\|]
[\|\fB\-B\fP\ \fIfilename\fP\|]
[\|\fB\-C\fP\ \fIfilename\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F T\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-H\fP\ \fIN\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-K\fP\ \fIN\fP\|]
[\|\fB\-L\fP\ \fIN\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-N\fP\ \fIX\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-P\fP\ \fIN\fP\|]
[\|\fB\-Q\fP\ \fIfilename\fP\|]
[\|\fB\-R\fP\ \fIfilename\fP\|]
[\|\fB\-S\fP\ \fIN\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-c\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\ \fIN\fP\|]
[\|\fB\-h\fP\ \fIX\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-j\fP\ \fIN\fP\|]
[\|\fB\-k\fP\ \fIfilename\fP\|]
[\|\fB\-l\fP\ \fIstr\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
[\|\fB\-p\fP\ \fIstr\fP\|]
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-s\fP\|]
[\|\fB\-t\fP\ \fIN\fP[\|\fBu\fP\|]\|]
[\|\fB\-u\fP\ \fIN\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIX\fP\|]
[\|\fB\-z\fP\ \fIN\fP\|]
.PP
.B impala
[\|\fB\-\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-H\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-P\fP\ \fIfilename\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-c\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-h\fP\ \fIX\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-j\fP\ \fIN\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIX\fP\|]
[\|\fB\-z\fP\ \fIN\fP\|]
.PP
.B megablast
[\|\fB\-\fP\|]
[\|\fB\-A\fP\ \fIN\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-H\fP\ \fIN\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-L\fP\ \fIstart,stop\fP\|]
[\|\fB\-M\fP\ \fIN\fP\|]
[\|\fB\-N\fP\ \fIN\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-P\fP\ \fIN\fP\|]
[\|\fB\-Q\fP\ \fIfilename\fP\|]
[\|\fB\-R\fP\|]
[\|\fB\-S\fP\ \fIN\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-V\fP\|]
[\|\fB\-W\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\|]
[\|\fB\-g\ F\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-l\fP\ \fIstr\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-n\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
[\|\fB\-p\fP\ \fIX\fP\|]
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
[\|\fB\-t\fP\ \fIN\fP\|]
[\|\fB\-s\fP\ \fIN\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIN\fP\|]
[\|\fB\-z\fP\ \fIX\fP\|]
.PP
.B rpsblast
[\|\fB\-\fP\|]
[\|\fB\-F\fP\ \fIstr\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-L\fP\ \fIstart,stop\fP\|]
[\|\fB\-N\fP\ \fIX\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-P\fP\ \fIN\fP\|]
[\|\fB\-T\fP\|]
[\|\fB\-U\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-Y\fP\ \fIX\fP\|]
[\|\fB\-Z\fP\ \fIN\fP\|]
[\|\fB\-a\fP\ \fIN\fP\|]
[\|\fB\-b\fP\ \fIN\fP\|]
\fB\-d\fP\ \fIfilename\fP
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-l\fP\ \fIfilename\fP\|]
[\|\fB\-m\fP\ \fIN\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
[\|\fB\-p\ F\fP\|]
[\|\fB\-v\fP\ \fIN\fP\|]
[\|\fB\-y\fP\ \fIX\fP\|]
[\|\fB\-z\fP\ \fIN\fP\|]
.PP
.B seedtop
[\|\fB\-\fP\|]
[\|\fB\-C\fP\ \fIN\fP\|]
[\|\fB\-D\fP\ \fIN\fP\|]
[\|\fB\-E\fP\ \fIN\fP\|]
[\|\fB\-F\fP\|]
[\|\fB\-G\fP\ \fIN\fP\|]
[\|\fB\-I\fP\|]
[\|\fB\-J\fP\|]
[\|\fB\-K\fP\ \fIN\fP\|]
[\|\fB\-M\fP\ \fIstr\fP\|]
[\|\fB\-O\fP\ \fIfilename\fP\|]
[\|\fB\-S\fP\ \fIN\fP\|]
[\|\fB\-X\fP\ \fIN\fP\|]
[\|\fB\-d\fP\ \fIstr\fP\|]
[\|\fB\-e\fP\ \fIX\fP\|]
[\|\fB\-f\fP\|]
[\|\fB\-i\fP\ \fIfilename\fP\|]
[\|\fB\-k\fP\ \fIfilename\fP\|]
[\|\fB\-o\fP\ \fIfilename\fP\|]
[\|\fB\-p\fP\ \fIstr\fP\|]
[\|\fB\-q\fP\ \fIN\fP\|]
[\|\fB\-r\fP\ \fIN\fP\|]
.SH DESCRIPTION
This manual page documents briefly the commands \fBbl2seq\fP, \fBblast\fP,
\fBblastall\fP, \fBblastcl3\fP, \fBblastpgp\fP, \fBimpala\fP,
\fBmegablast\fP, \fBrpsblast\fP, and \fBseedtop\fP. These commands
are documented together because they have a lot of common options.
.PP
\fBbl2seq\fP performs a comparison between two sequences using either
the blastn or blastp algorithm. Both sequences must be either
nucleotides or proteins.
.PP
\fB\*(bx\fP compares a sequence against either a local database or a
second sequence; it incorporates most of the functionality of both
\fBbl2seq\fP and \fBblastall\fP, but uses a semi-experimental new
internal engine.
.PP
\fBblastall\fP and \fBblastall_old\fP find the best matches in a
local database for a sequence.
\fBblastall\fP uses a newer engine than \fBblastall_old\fP by default,
but supports using the older engine as well (when invoked with the
option \fB\-V\ F\fP).
.PP
\fBblastcl3\fP accesses the newest NCBI BLAST search engine (version
2.0). The software behind BLAST version 2.0 was written from scratch
to allow BLAST to handle the new challenges posed by the sequence
databases in the coming years. Updates to this software will continue
in the coming years.
.PP
\fBblastpgp\fP performs gapped blastp searches and can be used to
perform iterative searches in psi-blast and phi-blast mode.
.PP
\fBimpala\fP searches a database of score matrices, prepared by
\fBcopymat\fP(1), producing BLAST-like output.
.PP
\fBmegablast\fP uses the greedy algorithm of Webb Miller et al. for
nucleotide sequence alignment search and concatenates many queries to
save time spent scanning the database. This program is optimized for
aligning sequences that differ slightly as a result of sequencing or
other similar "errors". It is up to 10 times faster than more common
sequence similarity programs and therefore can be used to swiftly
compare two large sets of sequences against each other.
.PP
\fBrpsblast\fP (Reverse PSI-BLAST) searches a query sequence against a
database of profiles. This is the opposite of PSI-BLAST that searches
a profile against a database of sequences, hence the `Reverse'.
\fBrpsblast\fP uses a BLAST-like algorithm, finding single- or
double-word hits and then performing an ungapped extension on these
candidate matches. If a sufficiently high-scoring ungapped alignment
is produced, a gapped extension is performed and those (gapped)
alignments with sufficiently low expect value are reported. This
procedure is in contrast to IMPALA that performs a Smith-Waterman
calculation between the query and each profile, rather than using a
word-hit approach to identify matches that should be extended.
.PP
\fBseedtop\fP answers two relatively simple questions:
.PD 0
.IP 1.
Given a sequence and a database of patterns, which patterns occur
in the sequence and where?
.IP 2.
Given a pattern and a sequence database, which sequences contain the
pattern and where?
.PD
.PP
Some of these commands support multiple types of comparison, governed
by the \fB\-p\fP ("program") flag:
.IP blastp 12
compares an amino acid query sequence against a protein sequence
database.
.IP blastn 12
compares a nucleotide query sequence against a nucleotide sequence
database.
.IP blastx 12
compares the six-frame conceptual translation products of a nucleotide
query sequence (both strands) against a protein sequence database.
For \fBbl2seq\fP, the nucleotide should be the first sequence given.
.IP psitblastn 12
compares a protein query sequence against a nucleotide sequence
database dynamically translated in all six reading frames (both
strands) using a position specific matrix created by PSI-BLAST.
.IP tblastn 12
compares a protein query sequence against a nucleotide sequence
database dynamically translated in all six reading frames (both
strands). For \fBbl2seq\fP, the nucleotide should be the second
sequence given.
.IP tblastx 12
compares the six-frame translations of a nucleotide query sequence
against the six-frame translations of a nucleotide sequence database.
.SH OPTIONS
A summary of options is included below.
.TP
\fB\-\fP
Print usage message
.TP
\fB\-A\fP (bl2seq)
Input sequences in the form of accession.version
.TP
\fB\-A\fP\ \fIN\fP (blastall, blastall_old, blastcl3, blastpgp, megablast)
Multiple Hits window size; generally defaults to 0 (for single-hit
extensions), but defaults to 40 when using discontiguous templates.
.TP
\fB\-B\fP\ \fIN\fP (\*(bx)
Produce on-the-fly output:
.RS
.PD 0
.IP 0
none (default)
.IP 1
table of offsets and quality values
.IP 2
add sequence data
.IP 3
text ASN.1
.IP 4
binary ASN.1
.PD
.RE
.TP
\fB\-B\fP\ \fIN\fP (blastall, blastall_old)
Number of concatenated queries, in blastn or tblastn mode
.TP
\fB\-B\fP\ \fIfilename\fP (blastpgp)
Input Alignment File for PSI-BLAST Restart
.TP
\fB\-C\fP\ \fIX\fP (\*(bx, blastall, blastall_old, blastcl3)
Use composition-based statistics for blastp or tblastn:
.RS
.PD 0
.IP "T, t, D, or d"
Default (equivalent to \fB1\fP for \fB\*(bx\fP and \fBblastall_old\fP
and to \fB2\fP for \fBblastall\fP and \fBblastcl3\fP)
.IP "0, F, or f"
No composition-based statistics
.IP 1
Composition-based statistics as in \fINAR\fP 29:2994-3005, 2001
.IP 2
Composition-based score adjustment as in \fIBioinformatics\fP 21:902-911,
2005, conditioned on sequence properties
.IP 3
Composition-based score adjustment as in \fIBioinformatics\fP 21:902-911,
2005, unconditionally
.PD
.RE
.RS
When enabling statistics in blastall, blastall_old, or blastcl3 (\fIi.e.\fP,
not \*(bx), appending \fBu\fP (case-insensitive) to the mode enables
use of unified p-values combining alignment and compositional p-values
in round 1 only.
.RE
.TP
\fB\-C\fP\ \fIfilename\fP (blastpgp)
Output File for PSI-BLAST Checkpointing
.TP
\fB\-C\fP\ \fIN\fP (seedtop)
Score only or not (default = 1)
.TP
\fB\-D\fP\ \fIN\fP (bl2seq)
Output format:
.RS
.PD 0
.IP 0
traditional (default)
.IP 1
tabular
.PD
.RE
.TP
\fB\-D\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3)
Translate sequences in the database according to genetic code \fIN\fP
in /usr/share/ncbi/data/gc.prt (default is 1; only applies to tblast*)
.TP
\fB\-D\fP\ \fIN\fP (megablast)
Type of output:
.RS
.PD 0
.IP 0
alignment endpoints and score
.IP 1
all ungapped segments endpoints
.IP 2
traditional BLAST output (default)
.IP 3
tab-delimited one line format
.IP 4
incremental text ASN.1
.IP 5
incremental binary ASN.1
.PD
.RE
.TP
\fB\-D\fP\ \fIN\fP (seedtop)
Cost decline to align (default = 99999)
.TP
\fB\-E\fP\ \fIN\fP (bl2seq, blastcl3, megablast)
Extending a gap costs \fIN\fP (\-1 invokes default behavior)
.TP
\fB\-E\fP\ \fIN\fP (\*(bx, blastall, blastall_old)
Extending a gap costs \fIN\fP (\-1 invokes default behavior:
non-affine if greedy, 2 otherwise)
.TP
\fB\-E\fP\ \fIN\fP (blastpgp, impala, seedtop)
Extending a gap costs \fIN\fP (default is 1)
.TP
\fB\-F\fP\ \fIstr\fP (bl2seq, \*(bx, blastall, blastall_old, blastpgp,
blastcl3, impala, megablast, rpsblast)
Filter options for DUST or SEG; defaults to \fBT\fP for bl2seq,
\*(bx, blastall, blastall_old, blastcl3, and megablast, and to
\fBF\fP for blastpgp, impala, and rpsblast.
.TP
\fB\-F\fP (seedtop)
Filter sequence with SEG.
.TP
\fB\-G\fP\ \fIN\fP (bl2seq, blastcl3, megablast)
Opening a gap costs \fIN\fP (\-1 invokes default behavior)
.TP
\fB\-G\fP\ \fIN\fP (\*(bx, blastall, blastall_old)
Opening a gap costs \fIN\fP (\-1 invokes default behavior: non-affine
if greedy, 5 if using dynamic programming)
.TP
\fB\-G\fP\ \fIN\fP (blastpgp, impala, seedtop)
Opening a gap costs \fIN\fP (default is 11)
.TP
\fB\-H\fP (\*(bx)
Produce HTML output
.TP
\fB\-H\fP\ \fIN\fP (blastpgp)
End of required region in query (\-1 indicates end of query)
.TP
\fB\-H\fP (impala)
Print help (different from usage message)
.TP
\fB\-H\fP\ \fIN\fP (megablast)
Maximal number of HSPs to save per database sequence (default is 0, unlimited)
.TP
\fB\-I\fP\ \(dq\fIstart\ stop\fP\(dq (bl2seq, \*(bx)
Location on first (query) sequence (applies only if file specified
with \fB\-i\fP contains a single sequence)
.TP
\fB\-I\fP (blastall, blastall_old, blastcl3, blastpgp, impala, megablast,
rpsblast, seedtop)
Show GIs in deflines
.TP
\fB\-J\fP\ \(dq\fIstart\ stop\fP\(dq (bl2seq, \*(bx)
Location on second (subject) sequence (applies only if file specified
with \fB\-j\fP contains a single sequence)
.TP
\fB\-J\fP (blastall, blastall_old, blastcl3, blastpgp, impala, megablast,
rpsblast, seedtop)
Believe the query defline
.TP
\fB\-K\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp)
Number of best hits from a region to keep.
Off by default.
If used a value of 100 is recommended.
Very high values of \fB\-v\fP or \fB\-b\fP are also suggested.
.TP
\fB\-K\fP\ \fIN\fP (seedtop)
Internal hit buffer size multiplier (wrt query length; default = 2)
.TP
\fB\-L\fP (\*(bx)
Use (classical Mega BLAST) lookup table with width 12
.TP
\fB\-L\fP\ \fIstart,stop\fP (blastall, blastall_old, blastcl3, megablast,
rpsblast)
Location on query sequence (for rpsblast, only valid in blastp mode)
.TP
\fB\-M\fP\ \fIstr\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
blastpgp, impala, seedtop)
Use matrix \fIstr\fP (default = BLOSUM62)
.TP
\fB\-M\fP\ \fIN\fP (megablast)
Maximal total length of queries for a single search (default = 5000000)
.TP
\fB\-N\fP (\*(bx)
Show only accessions for sequence IDs in tabular output
.TP
\fB\-N\fP\ \fIX\fP (blastpgp, rpsblast)
Number of bits to trigger gapping (default = 22.0)
.TP
\fB\-N\fP\ \fIN\fP (megablast)
Type of a discontiguous word template:
.RS
.PD 0
.IP 0
coding (default)
.IP 1
optimal
.IP 2
two simultaneous
.PD
.RE
.TP
\fB\-O\fP\ \fIfilename\fP (blastall, blastall_old, blastcl3,
blastpgp, impala, megablast, rpsblast, seedtop)
Write (ASN.1) sequence alignments to \fIfilename\fP; only valid for
blastpgp, impala, rpsblast, and seedtop with \fB\-J\fP, and only valid
for megablast with \fB\-D2\fP.
.TP
\fB\-P\fP\ \fIX\fP (\*(bx)
Identity percentage cut-off
.TP
\fB\-P\fP\ \fIN\fP (blastall, blastall_old, blastcl3, blastpgp, rpsblast)
Set to 1 for single-hit mode or 0 for multiple-hit mode (default).
Does not apply to blastn.
.TP
\fB\-P\fP\ \fIfilename\fP (impala)
Read matrix profiles from database \fIfilename\fP
.TP
\fB\-P\fP\ \fIN\fP (megablast)
Maximal number of positions for a hash value (set to 0 [default] to ignore)
.TP
\fB\-Q\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3)
Translate query according to genetic code \fIN\fP in
/usr/share/ncbi/data/gc.prt (default is 1)
.TP
\fB\-Q\fP\ \fIfilename\fP (blastpgp)
Output File for PSI-BLAST Matrix in ASCII
.TP
\fB\-Q\fP\ \fIfilename\fP (megablast)
Masked query output; requires \fB\-D\ 2\fP
.TP
\fB\-R\fP (\*(bx)
Compute locally optimal Smith-Waterman alignments.
(This option is only available for gapped tblastn.)
.TP
\fB\-R\fP\ \fIfilename\fP (blastall, blastall_old)
Read PSI-TBLASTN checkpoint file \fIfilename\fP
.TP
\fB\-R\fP (blastcl3)
RPS Blast search
.TP
\fB\-R\fP\ \fIfilename\fP (blastpgp)
Input File for PSI-BLAST Restart
.TP
\fB\-R\fP (megablast)
Report the log information at the end of output
.TP
\fB\-S\fP\ \fIN\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
megablast)
Query strands to search against database for blastn, blastx, tblastx:
.RS
.PD 0
.IP 1
top
.IP 2
bottom
.IP 3
both (default)
.PD
.RE
.TP
\fB\-S\fP\ \fIN\fP (blastpgp)
Start of required region in query (default = 1)
.TP
\fB\-S\fP\ \fIN\fP (seedtop)
Cutoff cost (default = 30)
.TP
\fB\-T\fP (bl2seq, blastall, blastall_old, blastcl3, blastpgp, megablast,
rpsblast)
Produce HTML output
.TP
\fB\-T\fP\ \fIN\fP (\*(bx)
Type of a discontiguous word template:
.RS
.PD 0
.IP 0
coding (default)
.IP 1
optimal
.IP 2
two simultaneous
.PD
.RE
.TP
\fB\-U\fP (bl2seq, blastall, blastall_old, blastcl3, blastpgp, megablast,
rpsblast)
Use lower case filtering for the query sequence
.TP
\fB\-V\fP (bl2seq, blastall, megablast)
Force use of legacy engine
.TP
\fB\-V\fP (\*(bx)
Use variable word size approach to database scanning
.TP
\fB\-W\fP\ \fIN\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
blastpgp, megablast, rpsblast)
Use words of size \fIN\fP (length of best perfect match; zero invokes
default behavior, except with megablast, which defaults to 28, and
blastpgp, which defaults to 3. The default values for the other
commands vary with "program": 11 for blastn, 28 for megablast, and 3
for everything else.)
.TP
\fB\-X\fP\ \fIN\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
blastpgp, megablast, rpsblast, seedtop)
X dropoff value for gapped alignment (in bits) (zero invokes default
behavior, except with megablast, which defaults to 20, and rpsblast
and seedtop, which default to 15. The default values for the other
commands vary with "program": 30 for blastn, 20 for megablast, 0 for
tblastx, and 15 for everything else.)
.TP
\fB\-Y\fP\ \fIX\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
blastpgp, megablast, rpsblast)
Effective length of the search space (use zero for the real size)
.TP
\fB\-Z\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
megablast, rpsblast)
X dropoff value for final [dynamic programming?] gapped alignment in
bits (default is 100 for blastn and megablast, 0 for tblastx, 25 for
others)
.TP
\fB\-a\fP\ \fIfilename\fP (bl2seq)
Write text ASN.1 output to \fIfilename\fP
.TP
\fB\-a\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
impala, megablast, rpsblast)
Number of threads to use (default is one)
.TP
\fB\-b\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
impala, megablast, rpsblast)
Number of database sequences to show alignments for (B) (default is 250)
.TP
\fB\-c\fP (\*(bx)
Mask lower case
.TP
\fB\-c\fP\ \fIN\fP (impala)
Constant in pseudocounts for multipass version; 0 (default) uses
entropy method; otherwise a value near 30 is recommended
.TP
\fB\-c\fP\ \fIN\fP (impala)
Constant in pseudocounts for multipass version (default is 10)
.TP
\fB\-d\fP\ \fIN\fP (bl2seq)
Use theoretical DB size of \fIN\fP (zero stands for the real size)
.TP
\fB\-d\fP\ \fIstr\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
impala, megablast, seedtop)
Database to use (default is nr for all executables except \*(bx,
which requires a second FASTA sequence if this is not set)
.TP
\fB\-d\fP\ \fIfilename\fP (rpsblast)
RPS BLAST Database
.TP
\fB\-e\fP\ \fIX\fP
Expectation value (E) (default = 10.0)
.TP
\fB\-f\fP\ \fIX\fP (\*(bx, blastall, blastall_old, blastcl3)
Threshold for extending hits, default if zero: 0 for blastn and
megablast, 11 for blastp, 12 for blastx, and 13 for tblasn and
tblastx.
.TP
\fB\-f\fP\ \fIN\fP (blastpgp)
Threshold for extending hits (default 11)
.TP
\fB\-f\fP (megablast)
Show full IDs in the output (default: only GIs or accessions)
.TP
\fB\-f\fP (seedtop)
Force searching for patterns even if they are too likely
.TP
\fB\-g\ F\fP (bl2seq, blastall, blastall_old, blastcl3)
Do not perform gapped alignment (N/A for tblastx)
.TP
\fB\-g\fP (\*(bx)
Use greedy algorithm for gapped extensions
.TP
\fB\-g\ F\fP (megablast)
Make discontiguous megablast generate words for every base of the
database (mandatory with the current BLAST engine)
.TP
\fB\-h\fP\ \fIN\fP (\*(bx)
Frame shift penalty for out-of-frame gapping (blastx, tblastn only;
default is zero)
.TP
\fB\-h\fP\ \fIX\fP (blastpgp, impala)
e-value threshold for inclusion in multipass model (default = 0.002
for blastpgp, 0.005 for impala)
.TP
\fB\-i\fP\ \fIfilename\fP
Read (first, query) sequence or set from \fIfilename\fP (default is
stdin; not needed for blastpgp if restarting from scoremat)
.TP
\fB\-j\fP\ \fIfilename\fP (bl2seq, \*(bx)
Read second (subject) sequence or set from \fIfilename\fP
.TP
\fB\-j\fP\ \fIN\fP (blastpgp)
Maximum number of passes to use in multipass version (default = 1)
.TP
\fB\-k\fP\ \fIstr\fP (\*(bx)
Pattern for PHI-BLAST
.TP
\fB\-k\fP\ \fIfilename\fP (blastpgp, seedtop)
Input hit file for PHI-BLAST (default = hit_file)
.TP
\fB\-l\fP\ \fIstr\fP (blastall, blastall_old, blastpgp, megablast)
Restrict search of database to list of GI's [String]
.TP
\fB\-l\fP\ \fIfilename\fP (rpsblast)
Log messages to \fIfilename\fP rather than standard error.
.TP
\fB\-m\fP (bl2seq)
Use Mega Blast for search
.TP
\fB\-m\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
impala, megablast, rpsblast)
alignment view options:
.RS
.PD 0
.IP 0
pairwise (default)
.IP 1
query-anchored showing identities
.IP 2
query-anchored, no identities
.IP 3
flat query-anchored, show identities
.IP 4
flat query-anchored, no identities
.IP 5
query-anchored, no identities and blunt ends
.IP 6
flat query-anchored, no identities and blunt ends
.IP 7
XML Blast output (not available for impala)
.IP 8
tabular (not available for impala)
.IP 9
tabular with comment lines (not available for impala)
.IP 10
ASN.1 text (not available for impala or rpsblast)
.IP 11
ASN.1 binary (not available for impala or rpsblast)
.PD
.RE
.TP
\fB\-n\fP (\*(bx)
Show GIs in sequence IDs
.TP
\fB\-n\fP (blastall, blastall_old, blastcl3)
MegaBlast search
.TP
\fB\-n\fP (megablast)
Use non-greedy (dynamic programming) extension for affine gap scores
.TP
\fB\-o\fP\ \fIfilename\fP
Write final alignment report to \fIfilename\fP rather than stdout
.TP
\fB\-p\fP\ \fIstr\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3)
Use the "program" (comparison type) \fIstr\fP. The \fBDESCRIPTION\fP
section covers this option in more detail.
.TP
\fB\-p\fP\ \fIstr\fP (blastpgp)
program option for PHI-BLAST (default = blastpgp)
.TP
\fB\-p\fP\ \fIX\fP (megablast)
Identity percentage cut-off (default = 0)
.TP
\fB\-p\ F\fP (rpsblast)
Query sequence is nucleotide, not protein
.TP
\fB\-p\fP\ \fIstr\fP (seedtop)
program name:
.RS
.PD 0
.IP patmatchp 10
indicates which patterns occur in a sequence
.IP patternp 10
indicates which sequences contain a pattern
.PD
.RE
.TP
\fB\-q\fP\ \fIN\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
megablast, seedtop)
Penalty for a nucleotide mismatch (blastn only) (default = \-10 for
seedtop, \-3 for everything else)
.TP
\fB\-q\fP\ \fIN\fP (blastpgp)
ASN.1 Scoremat input of checkpoint data:
.RS
.PD 0
.IP 0
no scoremat input (default)
.IP 1
restart from ASCII scoremat checkpoint file
.IP 2
restart from binary scoremat checkpoint file
.PD
.RE
.TP
\fB\-r\fP\ \fIN\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3,
megablast, seedtop)
Reward for a nucleotide match (blastn only) (default = 10 for seedtop,
\-10 for everything else)
.TP
\fB\-s\fP (\*(bx)
No-op (formerly requested generating words for every base of the database)
.TP
\fB\-s\fP (blastall, blastall_old, blastcl3, blastpgp)
Compute locally optimal Smith-Waterman alignments.
For blastall, blastall_old, and blastcl3, this is only available in gapped
tblastn mode.
.TP
\fB\-s\fP\ \fIN\fP (megablast)
Minimal hit score to report (0 for default behavior)
.TP
\fB\-t\fP\ \fIN\fP (bl2seq, \*(bx, blastall, blastall_old, blastcl3)
Length of a discontiguous word template (the largest intron allowed in
a translated nucleotide sequence when linking multiple distinct
assignments; default = 0; negative values disable linking for blastall,
blastall_old, and blastcl3.)
.TP
\fB\-t\fP\ \fIN\fP[\|\fBu\fP\|] (blastpgp)
Composition-based score adjustment.
The first character is interpreted as follows:
.RS
.PD 0
.IP "0, F, or f"
no composition-based statistics
.IP 1
composition-based statistics as in \fINAR\fP 29:2994\-3005, 2001
.IP "2, T, or t"
composition-based score adjustment as in \fIBioinformatics\fP
21:902-911, 2005, conditioned on sequence properties in round 1 (default)
.IP 3
composition-based score adjustment as in \fIBioinformatics\fP
21:902-911, 2005, unconditionally in round 1
.PD
.P
When composition-based statistics are in use, appending \fBu\fP
(case-insensitive) to the argument requests unified p-value combining
alignment p-value and compositional p-value in round 1 only.
.RE
.TP
\fB\-t\fP\ \fIN\fP (megablast)
Length of a discontiguous word template (contiguous word if 0 [default])
.TP
\fB\-u\fP (\*(bx)
Do only ungapped alignment (always TRUE for tblastx)
.TP
\fB\-u\fP\ \fIstr\fP (blastcl3)
Restrict search of database to results of Entrez2 lookup
.TP
\fB\-u\fP\ \fIN\fP (blastpgp)
ASN.1 Scoremat output of checkpoint data:
.RS
.PD 0
.IP 0
no scoremat output (default)
.IP 1
output ASCII scoremat checkpoint file (requires \fB\-J\fP)
.IP 2
output binary scoremat checkpoint file (requires \fB\-J\fP)
.PD
.RE
.TP
\fB\-v\fP\ \fIN\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
impala, megablast, rpsblast)
Number of one-line descriptions to show (V) (default = 500)
.TP
\fB\-w\fP\ \fIN\fP (\*(bx)
Window size (max. allowed distance between a pair of initial hits; 0
invokes default behavior, \-1 turns off multiple hits)
.TP
\fB\-w\fP\ \fIN\fP (blastall, blastall_old, blastcl3)
Frame shift penalty (OOF algorithm for blastx)
.TP
\fB\-y\fP\ \fIX\fP (\*(bx, blastall, blastall_old, blastcl3, blastpgp,
impala, rpsblast)
X dropoff for ungapped extensions in bits (0.0 invokes default
behavior: 20 for blastn, 10 for megablast, and 7 for all others.)
.TP
\fB\-y\fP\ \fIN\fP (megablast)
X dropoff value for ungapped extension (default is 10)
.TP
\fB\-z\fP\ \fIN\fP (\*(bx)
Longest intron length for uneven gap HSP linking (tblastn only;
default is 0)
.TP
\fB\-z\fP\ \fIN\fP (blastall, blastall_old, blastcl3, blastpgp, impala,
megablast, rpsblast)
Effective length of the database (use zero for the real size)
.SH BUGS
This manual page is long and confusing; individual pages might be better.
.SH AUTHOR
The National Center for Biotechnology Information.
.SH SEE ALSO
.ad l
.BR blastclust (1),
.BR copymat (1),
.BR fastacmd (1),
.BR formatdb (1),
.BR formatrpsdb (1),
.BR makemat (1),
.BR taxblast (1),
blast.html,
seedtop.html,
<http://www.ncbi.nlm.nih.gov/BLAST/>.
|