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
|
<!-- ============================================
::DATATOOL:: Generated from "blast.asn"
::DATATOOL:: by application DATATOOL version 2.3.1
::DATATOOL:: on 04/01/2011 23:04:41
============================================ -->
<!-- ============================================ -->
<!-- This section is mapped from module "NCBI-Blast4"
================================================= -->
<!--
PUBLIC DOMAIN NOTICE
National Center for Biotechnology Information
This software/database is a "United States Government Work" under the terms
of the United States Copyright Act. It was written as part of the author's
official duties as a United States Government employee and thus cannot be
copyrighted. This software/database is freely available to the public for
use. The National Library of Medicine and the U.S. Government have not
placed any restriction on its use or reproduction.
Although all reasonable efforts have been taken to ensure the accuracy and
reliability of the software and data, the NLM and the U.S. Government do not
and cannot warrant the performance or results that may be obtained by using
this software or data. The NLM and the U.S. Government disclaim all
warranties, express or implied, including warranties of performance,
merchantability or fitness for any particular purpose.
Please cite the authors in any work or product based on this material.
Authors: Tom Madden, Tim Boemker
ASN.1 interface to BLAST.
-->
<!-- Elements used by other modules:
Blast4-ka-block,
Blast4-value,
Blast4-parameter,
Blast4-parameters -->
<!-- Elements referenced from other modules:
Bioseq FROM NCBI-Sequence,
Seq-data FROM NCBI-Sequence,
Bioseq-set FROM NCBI-Seqset,
PssmWithParameters FROM NCBI-ScoreMat,
Seq-id,
Seq-interval,
Seq-loc FROM NCBI-Seqloc,
Seq-align,
Seq-align-set FROM NCBI-Seqalign -->
<!-- ============================================ -->
<!--
Requests
-->
<!ELEMENT Blast4-request (
Blast4-request_ident?,
Blast4-request_body)>
<!--
Client identifier (email address, organization name, program/script
name, or any other form of contacting the owner of this request)
-->
<!ELEMENT Blast4-request_ident (#PCDATA)>
<!-- Payload of the request -->
<!ELEMENT Blast4-request_body (Blast4-request-body)>
<!--
An archive format for results. the results can be reformatted from
this format also.
-->
<!ELEMENT Blast4-archive (
Blast4-archive_request,
Blast4-archive_results)>
<!-- Query and options -->
<!ELEMENT Blast4-archive_request (Blast4-request)>
<!-- Results of search -->
<!ELEMENT Blast4-archive_results (Blast4-get-search-results-reply)>
<!ELEMENT Blast4-request-body (
Blast4-request-body_finish-params |
Blast4-request-body_get-databases |
Blast4-request-body_get-matrices |
Blast4-request-body_get-parameters |
Blast4-request-body_get-paramsets |
Blast4-request-body_get-programs |
Blast4-request-body_get-search-results |
Blast4-request-body_get-sequences |
Blast4-request-body_queue-search |
Blast4-request-body_get-request-info |
Blast4-request-body_get-sequence-parts |
Blast4-request-body_get-windowmasked-taxids)>
<!ELEMENT Blast4-request-body_finish-params (Blast4-finish-params-request)>
<!-- Get all available BLAST databases -->
<!ELEMENT Blast4-request-body_get-databases EMPTY>
<!-- Get supported scoring matrices -->
<!ELEMENT Blast4-request-body_get-matrices EMPTY>
<!ELEMENT Blast4-request-body_get-parameters EMPTY>
<!ELEMENT Blast4-request-body_get-paramsets EMPTY>
<!ELEMENT Blast4-request-body_get-programs EMPTY>
<!ELEMENT Blast4-request-body_get-search-results (Blast4-get-search-results-request)>
<!-- Fetch sequence data from a BLAST database -->
<!ELEMENT Blast4-request-body_get-sequences (Blast4-get-sequences-request)>
<!--
Options have been broken down into three groups as part of the BLAST
API work. The algorithm options essentially correspond to those
options available via the CBlastOptions class.
For definitions of the names used in the Blast4-parameter structures, see
c++/{include,src}/objects/blast/names.[hc]pp in the NCBI C++ toolkit.
algorithm-options: Options for BLAST (ie. seq comparison) algorithm.
program-options: Options for controlling program execution and/or
database filtering
format-options: Options for formatting BLAST results, clients should
use this only if applicable, otherwise they should be
ignored
-->
<!ELEMENT Blast4-request-body_queue-search (Blast4-queue-search-request)>
<!-- Fetch information about the search request. -->
<!ELEMENT Blast4-request-body_get-request-info (Blast4-get-request-info-request)>
<!-- Fetch parts of sequences from a BLAST database -->
<!ELEMENT Blast4-request-body_get-sequence-parts (Blast4-get-seq-parts-request)>
<!ELEMENT Blast4-request-body_get-windowmasked-taxids EMPTY>
<!ELEMENT Blast4-finish-params-request (
Blast4-finish-params-request_program,
Blast4-finish-params-request_service,
Blast4-finish-params-request_paramset?,
Blast4-finish-params-request_params?)>
<!ELEMENT Blast4-finish-params-request_program (#PCDATA)>
<!ELEMENT Blast4-finish-params-request_service (#PCDATA)>
<!ELEMENT Blast4-finish-params-request_paramset (#PCDATA)>
<!ELEMENT Blast4-finish-params-request_params (Blast4-parameters)>
<!-- This type allows the specification of what result types are desired -->
<!ELEMENT Blast4-result-types %ENUM;>
<!--
default - Default retrieves the following result types (if available): alignments,
phi-alignments masks, ka-blocks, search-stats and pssm
-->
<!ATTLIST Blast4-result-types value (
default |
alignments |
phi-alignments |
masks |
ka-blocks |
search-stats |
pssm |
simple-results
) #REQUIRED >
<!ELEMENT Blast4-get-search-results-request (
Blast4-get-search-results-request_request-id,
Blast4-get-search-results-request_result-types?)>
<!-- The request ID of the BLAST search -->
<!ELEMENT Blast4-get-search-results-request_request-id (#PCDATA)>
<!-- Logical OR of Blast4-result-types, assumes default if absent -->
<!ELEMENT Blast4-get-search-results-request_result-types (%INTEGER;)>
<!--
If a PSSM is used (ie. for PSI-Blast), it must contain a "query"
for formatting purposes. Bioseq-set may contain any number of
queries, specified as data. Seq-loc-list may contain only the
"whole" or "interval" types. In the case of "whole", any number of
queries may be used; in the case of "interval", there should be
exactly one query. (This is limited by the BlastObject.)
-->
<!ELEMENT Blast4-queries (
Blast4-queries_pssm |
Blast4-queries_seq-loc-list |
Blast4-queries_bioseq-set)>
<!ELEMENT Blast4-queries_pssm (PssmWithParameters)>
<!ELEMENT Blast4-queries_seq-loc-list (Seq-loc*)>
<!ELEMENT Blast4-queries_bioseq-set (Bioseq-set)>
<!--
Options have been broken down into three groups as part of the BLAST
API work. The algorithm options essentially correspond to those
options available via the CBlastOptions class.
For definitions of the names used in the Blast4-parameter structures, see
c++/{include,src}/objects/blast/names.[hc]pp in the NCBI C++ toolkit.
algorithm-options: Options for BLAST (ie. seq comparison) algorithm.
program-options: Options for controlling program execution and/or
database filtering
format-options: Options for formatting BLAST results, clients should
use this only if applicable, otherwise they should be
ignored
-->
<!ELEMENT Blast4-queue-search-request (
Blast4-queue-search-request_program,
Blast4-queue-search-request_service,
Blast4-queue-search-request_queries,
Blast4-queue-search-request_subject,
Blast4-queue-search-request_paramset?,
Blast4-queue-search-request_algorithm-options?,
Blast4-queue-search-request_program-options?,
Blast4-queue-search-request_format-options?)>
<!ELEMENT Blast4-queue-search-request_program (#PCDATA)>
<!ELEMENT Blast4-queue-search-request_service (#PCDATA)>
<!--
If a PSSM is used (ie. for PSI-Blast), it must contain a "query"
for formatting purposes. Bioseq-set may contain any number of
queries, specified as data. Seq-loc-list may contain only the
"whole" or "interval" types. In the case of "whole", any number of
queries may be used; in the case of "interval", there should be
exactly one query. (This is limited by the BlastObject.)
-->
<!ELEMENT Blast4-queue-search-request_queries (Blast4-queries)>
<!ELEMENT Blast4-queue-search-request_subject (Blast4-subject)>
<!-- This field contains a task description -->
<!ELEMENT Blast4-queue-search-request_paramset (#PCDATA)>
<!ELEMENT Blast4-queue-search-request_algorithm-options (Blast4-parameters)>
<!ELEMENT Blast4-queue-search-request_program-options (Blast4-parameters)>
<!ELEMENT Blast4-queue-search-request_format-options (Blast4-parameters)>
<!-- Simplified search submission structure -->
<!ELEMENT Blast4-queue-search-request-lite (
Blast4-queue-search-request-lite_query,
Blast4-queue-search-request-lite_database-name,
Blast4-queue-search-request-lite_options)>
<!-- query sequence: provide a FASTA sequence, a gi number, or an accession -->
<!ELEMENT Blast4-queue-search-request-lite_query (#PCDATA)>
<!-- Name of BLAST database to search -->
<!ELEMENT Blast4-queue-search-request-lite_database-name (#PCDATA)>
<!-- BLAST options -->
<!ELEMENT Blast4-queue-search-request-lite_options (Blast4-options-lite)>
<!-- Request to retrieve the status of a given search -->
<!ELEMENT Blast4-get-search-status-request (
Blast4-get-search-status-request_request-id)>
<!ELEMENT Blast4-get-search-status-request_request-id (#PCDATA)>
<!-- Reply to retrieve the status of a given search -->
<!ELEMENT Blast4-get-search-status-reply (
Blast4-get-search-status-reply_status)>
<!ELEMENT Blast4-get-search-status-reply_status (#PCDATA)>
<!-- Fetch information about the search request. -->
<!ELEMENT Blast4-get-request-info-request (
Blast4-get-request-info-request_request-id)>
<!ELEMENT Blast4-get-request-info-request_request-id (#PCDATA)>
<!ELEMENT Blast4-get-request-info-reply (
Blast4-get-request-info-reply_database,
Blast4-get-request-info-reply_program,
Blast4-get-request-info-reply_service,
Blast4-get-request-info-reply_created-by,
Blast4-get-request-info-reply_queries,
Blast4-get-request-info-reply_algorithm-options,
Blast4-get-request-info-reply_program-options,
Blast4-get-request-info-reply_format-options?,
Blast4-get-request-info-reply_subjects?)>
<!ELEMENT Blast4-get-request-info-reply_database (Blast4-database)>
<!ELEMENT Blast4-get-request-info-reply_program (#PCDATA)>
<!ELEMENT Blast4-get-request-info-reply_service (#PCDATA)>
<!ELEMENT Blast4-get-request-info-reply_created-by (#PCDATA)>
<!--
If a PSSM is used (ie. for PSI-Blast), it must contain a "query"
for formatting purposes. Bioseq-set may contain any number of
queries, specified as data. Seq-loc-list may contain only the
"whole" or "interval" types. In the case of "whole", any number of
queries may be used; in the case of "interval", there should be
exactly one query. (This is limited by the BlastObject.)
-->
<!ELEMENT Blast4-get-request-info-reply_queries (Blast4-queries)>
<!ELEMENT Blast4-get-request-info-reply_algorithm-options (Blast4-parameters)>
<!ELEMENT Blast4-get-request-info-reply_program-options (Blast4-parameters)>
<!ELEMENT Blast4-get-request-info-reply_format-options (Blast4-parameters)>
<!ELEMENT Blast4-get-request-info-reply_subjects (Blast4-subject)>
<!-- Fetch the search strategy (i.e.: object used to submit the search) -->
<!ELEMENT Blast4-get-search-strategy-request (
Blast4-get-search-strategy-request_request-id)>
<!ELEMENT Blast4-get-search-strategy-request_request-id (#PCDATA)>
<!--
Return the search strategy (i.e.: Blast4-request containing a
Blast4-queue-search-request, an object used to submit the search)
-->
<!ELEMENT Blast4-get-search-strategy-reply (Blast4-request)>
<!-- Fetch sequence data from a BLAST database -->
<!ELEMENT Blast4-get-sequences-request (
Blast4-get-sequences-request_database,
Blast4-get-sequences-request_seq-ids,
Blast4-get-sequences-request_skip-seq-data?,
Blast4-get-sequences-request_target-only?)>
<!-- Name of the BLAST database from which to retrieve the sequence data -->
<!ELEMENT Blast4-get-sequences-request_database (Blast4-database)>
<!-- Sequence identifiers for the sequence to get -->
<!ELEMENT Blast4-get-sequences-request_seq-ids (Seq-id*)>
<!--
Determines whether the returned Bioseqs should contain the sequence data
or not
-->
<!ELEMENT Blast4-get-sequences-request_skip-seq-data EMPTY>
<!ATTLIST Blast4-get-sequences-request_skip-seq-data value ( true | false ) "false" >
<!--
Determines whether or not the defline of the returned Bioseqs should
contain only the requested seq id. This optional field only applies
to non-redundant BLAST database
-->
<!ELEMENT Blast4-get-sequences-request_target-only EMPTY>
<!ATTLIST Blast4-get-sequences-request_target-only value ( true | false ) #REQUIRED >
<!-- Fetch parts of sequences from a BLAST database -->
<!ELEMENT Blast4-get-seq-parts-request (
Blast4-get-seq-parts-request_database,
Blast4-get-seq-parts-request_seq-locations)>
<!-- Name of the BLAST database from which to retrieve the sequence data -->
<!ELEMENT Blast4-get-seq-parts-request_database (Blast4-database)>
<!--
Allows the specification of ranges of sequence data needed.
If the sequence(s) interval's end is 0, no data will be fetched.
If end is past the length of the sequence, it will be adjusted to the
end of the sequence (this allows fetching of the first chunk in
cases where the length is not yet known).
-->
<!ELEMENT Blast4-get-seq-parts-request_seq-locations (Seq-interval*)>
<!--
Replies
-->
<!ELEMENT Blast4-reply (
Blast4-reply_errors?,
Blast4-reply_body)>
<!ELEMENT Blast4-reply_errors (Blast4-error*)>
<!ELEMENT Blast4-reply_body (Blast4-reply-body)>
<!ELEMENT Blast4-reply-body (
Blast4-reply-body_finish-params |
Blast4-reply-body_get-databases |
Blast4-reply-body_get-matrices |
Blast4-reply-body_get-parameters |
Blast4-reply-body_get-paramsets |
Blast4-reply-body_get-programs |
Blast4-reply-body_get-search-results |
Blast4-reply-body_get-sequences |
Blast4-reply-body_queue-search |
Blast4-reply-body_get-queries |
Blast4-reply-body_get-request-info |
Blast4-reply-body_get-sequence-parts |
Blast4-reply-body_get-windowmasked-taxids)>
<!ELEMENT Blast4-reply-body_finish-params (Blast4-finish-params-reply)>
<!ELEMENT Blast4-reply-body_get-databases (Blast4-get-databases-reply)>
<!ELEMENT Blast4-reply-body_get-matrices (Blast4-get-matrices-reply)>
<!ELEMENT Blast4-reply-body_get-parameters (Blast4-get-parameters-reply)>
<!--
Note: Paramsets and tasks represent the same concept: a human readable
description that represents a set of parameters with specific values
to accomplish a given task
-->
<!ELEMENT Blast4-reply-body_get-paramsets (Blast4-get-paramsets-reply)>
<!ELEMENT Blast4-reply-body_get-programs (Blast4-get-programs-reply)>
<!ELEMENT Blast4-reply-body_get-search-results (Blast4-get-search-results-reply)>
<!ELEMENT Blast4-reply-body_get-sequences (Blast4-get-sequences-reply)>
<!ELEMENT Blast4-reply-body_queue-search (Blast4-queue-search-reply)>
<!ELEMENT Blast4-reply-body_get-queries (Blast4-get-queries-reply)>
<!ELEMENT Blast4-reply-body_get-request-info (Blast4-get-request-info-reply)>
<!ELEMENT Blast4-reply-body_get-sequence-parts (Blast4-get-seq-parts-reply)>
<!ELEMENT Blast4-reply-body_get-windowmasked-taxids (Blast4-get-windowmasked-taxids-reply)>
<!ELEMENT Blast4-finish-params-reply (Blast4-parameters)>
<!ELEMENT Blast4-get-windowmasked-taxids-reply (Blast4-get-windowmasked-taxids-reply_E*)>
<!ELEMENT Blast4-get-windowmasked-taxids-reply_E (%INTEGER;)>
<!ELEMENT Blast4-get-databases-reply (Blast4-database-info*)>
<!ELEMENT Blast4-get-matrices-reply (Blast4-matrix-id*)>
<!ELEMENT Blast4-get-parameters-reply (Blast4-parameter-info*)>
<!--
Note: Paramsets and tasks represent the same concept: a human readable
description that represents a set of parameters with specific values
to accomplish a given task
-->
<!ELEMENT Blast4-get-paramsets-reply (Blast4-task-info*)>
<!ELEMENT Blast4-get-programs-reply (Blast4-program-info*)>
<!ELEMENT Blast4-get-search-results-reply (
Blast4-get-search-results-reply_alignments?,
Blast4-get-search-results-reply_phi-alignments?,
Blast4-get-search-results-reply_masks?,
Blast4-get-search-results-reply_ka-blocks?,
Blast4-get-search-results-reply_search-stats?,
Blast4-get-search-results-reply_pssm?,
Blast4-get-search-results-reply_simple-results?)>
<!ELEMENT Blast4-get-search-results-reply_alignments (Seq-align-set)>
<!ELEMENT Blast4-get-search-results-reply_phi-alignments (Blast4-phi-alignments)>
<!--
Masking locations for the query sequence(s). Each element of this set
corresponds to a single query's translation frame as appropriate.
-->
<!ELEMENT Blast4-get-search-results-reply_masks (Blast4-mask*)>
<!ELEMENT Blast4-get-search-results-reply_ka-blocks (Blast4-ka-block*)>
<!ELEMENT Blast4-get-search-results-reply_search-stats (Blast4-get-search-results-reply_search-stats_E*)>
<!ELEMENT Blast4-get-search-results-reply_search-stats_E (#PCDATA)>
<!ELEMENT Blast4-get-search-results-reply_pssm (PssmWithParameters)>
<!-- Complete set of simple Blast results -->
<!ELEMENT Blast4-get-search-results-reply_simple-results (Blast4-simple-results)>
<!ELEMENT Blast4-get-sequences-reply (Bioseq*)>
<!--
Bundles Seq-ids and sequence data to fulfill requests of type
Blast4-get-seq-parts-request
-->
<!ELEMENT Blast4-seq-part-data (
Blast4-seq-part-data_id,
Blast4-seq-part-data_data)>
<!-- Sequence identifier -->
<!ELEMENT Blast4-seq-part-data_id (Seq-id)>
<!-- Its sequence data (may be partial) -->
<!ELEMENT Blast4-seq-part-data_data (Seq-data)>
<!ELEMENT Blast4-get-seq-parts-reply (Blast4-seq-part-data*)>
<!ELEMENT Blast4-queue-search-reply (
Blast4-queue-search-reply_request-id?)>
<!ELEMENT Blast4-queue-search-reply_request-id (#PCDATA)>
<!ELEMENT Blast4-get-queries-reply (
Blast4-get-queries-reply_queries)>
<!--
If a PSSM is used (ie. for PSI-Blast), it must contain a "query"
for formatting purposes. Bioseq-set may contain any number of
queries, specified as data. Seq-loc-list may contain only the
"whole" or "interval" types. In the case of "whole", any number of
queries may be used; in the case of "interval", there should be
exactly one query. (This is limited by the BlastObject.)
-->
<!ELEMENT Blast4-get-queries-reply_queries (Blast4-queries)>
<!--
Errors
-->
<!ELEMENT Blast4-error (
Blast4-error_code,
Blast4-error_message?)>
<!--
This is an integer to allow for flexibility, but the values assigned
should be of type Blast4-error-code
-->
<!ELEMENT Blast4-error_code (%INTEGER;)>
<!ELEMENT Blast4-error_message (#PCDATA)>
<!--
This enumeration defines values that are intended to be used with the
Blast4-error::code in a logical AND operation to easily determine whether a
given Blast4-error object contains either a warning or an error
-->
<!ELEMENT Blast4-error-flags %ENUM;>
<!ATTLIST Blast4-error-flags value (
warning |
error
) #REQUIRED >
<!--
Defines values for use in Blast4-error::code.
Note: warnings should have values greater than 1024 and less than 2048,
errors should have values greater than 2048.
-->
<!ELEMENT Blast4-error-code (%INTEGER;)>
<!--
conversion-warning - A conversion issue was found when converting to/from blast3 from/to
blast4 protocol in the blast4 server
internal-error - Indicates internal errors in the blast4 server
not-implemented - Request type is not implemented in the blast4 server
not-allowed - Request type is not allowed in the blast4 server
bad-request - Malformed/invalid requests (e.g.: parsing errors or invalid data in request)
bad-request-id - The RID requested is unknown or it has expired
search-pending - The search is pending
-->
<!ATTLIST Blast4-error-code value (
conversion-warning |
internal-error |
not-implemented |
not-allowed |
bad-request |
bad-request-id |
search-pending
) #IMPLIED >
<!--
Data types to be used in BLAST4 "Lite"
-->
<!ELEMENT Blast4-common-options-db-restriction-by-organism (
Blast4-common-options-db-restriction-by-organism_organism-restriction |
Blast4-common-options-db-restriction-by-organism_taxid-restriction)>
<!-- additional restriction on the database to search -->
<!ELEMENT Blast4-common-options-db-restriction-by-organism_organism-restriction (#PCDATA)>
<!-- same as above, specified with a taxid -->
<!ELEMENT Blast4-common-options-db-restriction-by-organism_taxid-restriction (%INTEGER;)>
<!ELEMENT Blast4-common-options-db-restriction (
Blast4-common-options-db-restriction_entrez-query?,
Blast4-common-options-db-restriction_organism?)>
<!-- entrez query restriction on the database to search -->
<!ELEMENT Blast4-common-options-db-restriction_entrez-query (#PCDATA)>
<!--
Data types to be used in BLAST4 "Lite"
-->
<!ELEMENT Blast4-common-options-db-restriction_organism (Blast4-common-options-db-restriction-by-organism)>
<!ELEMENT Blast4-common-options-repeats-filtering (
Blast4-common-options-repeats-filtering_organism-taxid?)>
<!-- defaults to human -->
<!ELEMENT Blast4-common-options-repeats-filtering_organism-taxid (%INTEGER;)>
<!ELEMENT Blast4-common-options-query-filtering (
Blast4-common-options-query-filtering_use-seg-filtering?,
Blast4-common-options-query-filtering_use-dust-filtering?,
Blast4-common-options-query-filtering_mask-for-lookup-table-only?,
Blast4-common-options-query-filtering_repeats-filtering?,
Blast4-common-options-query-filtering_user-specified-masks?,
Blast4-common-options-query-filtering_no-filtering?)>
<!-- use SEG filtering with default parameters -->
<!ELEMENT Blast4-common-options-query-filtering_use-seg-filtering EMPTY>
<!ATTLIST Blast4-common-options-query-filtering_use-seg-filtering value ( true | false ) #REQUIRED >
<!-- use DUST filtering with default parameters -->
<!ELEMENT Blast4-common-options-query-filtering_use-dust-filtering EMPTY>
<!ATTLIST Blast4-common-options-query-filtering_use-dust-filtering value ( true | false ) #REQUIRED >
<!-- mask for lookup table only (i.e.: soft masking) -->
<!ELEMENT Blast4-common-options-query-filtering_mask-for-lookup-table-only EMPTY>
<!ATTLIST Blast4-common-options-query-filtering_mask-for-lookup-table-only value ( true | false ) #REQUIRED >
<!ELEMENT Blast4-common-options-query-filtering_repeats-filtering (Blast4-common-options-repeats-filtering)>
<!-- user specified masking locations -->
<!ELEMENT Blast4-common-options-query-filtering_user-specified-masks (Blast4-mask*)>
<!-- This overrides all other filtering options -->
<!ELEMENT Blast4-common-options-query-filtering_no-filtering EMPTY>
<!ATTLIST Blast4-common-options-query-filtering_no-filtering value ( true | false ) #REQUIRED >
<!ELEMENT Blast4-common-options-discontiguous-megablast (
Blast4-common-options-discontiguous-megablast_template-type,
Blast4-common-options-discontiguous-megablast_template-length)>
<!ELEMENT Blast4-common-options-discontiguous-megablast_template-type (%INTEGER;)>
<!ELEMENT Blast4-common-options-discontiguous-megablast_template-length (%INTEGER;)>
<!ELEMENT Blast4-common-options-nucleotide-query (
Blast4-common-options-nucleotide-query_strand-type-list?,
Blast4-common-options-nucleotide-query_disco-megablast-options?)>
<!-- one per query -->
<!ELEMENT Blast4-common-options-nucleotide-query_strand-type-list (Blast4-strand-type*)>
<!ELEMENT Blast4-common-options-nucleotide-query_disco-megablast-options (Blast4-common-options-discontiguous-megablast)>
<!ELEMENT Blast4-common-options-scoring (
Blast4-common-options-scoring_matrix-name?,
Blast4-common-options-scoring_gap-opening-penalty?,
Blast4-common-options-scoring_gap-extension-penalty?,
Blast4-common-options-scoring_match-reward?,
Blast4-common-options-scoring_mismatch-penalty?)>
<!-- e.g.: BLOSUM62, PAM30, etc -->
<!ELEMENT Blast4-common-options-scoring_matrix-name (#PCDATA)>
<!ELEMENT Blast4-common-options-scoring_gap-opening-penalty (%INTEGER;)>
<!ELEMENT Blast4-common-options-scoring_gap-extension-penalty (%INTEGER;)>
<!ELEMENT Blast4-common-options-scoring_match-reward (%INTEGER;)>
<!ELEMENT Blast4-common-options-scoring_mismatch-penalty (%INTEGER;)>
<!ELEMENT Blast4-common-options (
Blast4-common-options_percent-identity?,
Blast4-common-options_evalue?,
Blast4-common-options_word-size?,
Blast4-common-options_hitlist-size?,
Blast4-common-options_db-restriction?,
Blast4-common-options_query-filtering?,
Blast4-common-options_nucl-query-options?,
Blast4-common-options_scoring-options?,
Blast4-common-options_phi-pattern?,
Blast4-common-options_eff-search-space?,
Blast4-common-options_comp-based-statistics?)>
<!-- percent identity of matches (0-100) -->
<!ELEMENT Blast4-common-options_percent-identity (%REAL;)>
<!-- e-value threshold -->
<!ELEMENT Blast4-common-options_evalue (%REAL;)>
<!-- word size to use in lookup table construction -->
<!ELEMENT Blast4-common-options_word-size (%INTEGER;)>
<!-- max number of database sequences to align -->
<!ELEMENT Blast4-common-options_hitlist-size (%INTEGER;)>
<!ELEMENT Blast4-common-options_db-restriction (Blast4-common-options-db-restriction)>
<!ELEMENT Blast4-common-options_query-filtering (Blast4-common-options-query-filtering)>
<!ELEMENT Blast4-common-options_nucl-query-options (Blast4-common-options-nucleotide-query)>
<!ELEMENT Blast4-common-options_scoring-options (Blast4-common-options-scoring)>
<!-- PHI-BLAST pattern -->
<!ELEMENT Blast4-common-options_phi-pattern (#PCDATA)>
<!-- effective search space -->
<!ELEMENT Blast4-common-options_eff-search-space (%REAL;)>
<!-- Composition based statistics -->
<!ELEMENT Blast4-common-options_comp-based-statistics (%INTEGER;)>
<!ELEMENT Blast4-options-lite (
Blast4-options-lite_task,
Blast4-options-lite_options?)>
<!ELEMENT Blast4-options-lite_task (#PCDATA)>
<!ELEMENT Blast4-options-lite_options (Blast4-common-options)>
<!--
Other types in alphabetical order
-->
<!ELEMENT Blast4-cutoff (
Blast4-cutoff_e-value |
Blast4-cutoff_raw-score)>
<!ELEMENT Blast4-cutoff_e-value (%REAL;)>
<!ELEMENT Blast4-cutoff_raw-score (%INTEGER;)>
<!ELEMENT Blast4-database (
Blast4-database_name,
Blast4-database_type)>
<!ELEMENT Blast4-database_name (#PCDATA)>
<!ELEMENT Blast4-database_type (Blast4-residue-type)>
<!-- Borrowed from seq.asn -->
<!ELEMENT Blast4-seqtech (%INTEGER;)>
<!--
standard - standard sequencing
est - Expressed Sequence Tag
sts - Sequence Tagged Site
survey - one-pass genomic sequence
genemap - from genetic mapping techniques
physmap - from physical mapping techniques
derived - derived from other data, not a primary entity
concept-trans - conceptual translation
seq-pept - peptide was sequenced
both - concept transl. w/ partial pept. seq.
seq-pept-overlap - sequenced peptide, ordered by overlap
seq-pept-homol - sequenced peptide, ordered by homology
concept-trans-a - conceptual transl. supplied by author
htgs-1 - unordered High Throughput sequence contig
htgs-2 - ordered High Throughput sequence contig
htgs-3 - finished High Throughput sequence
fli-cdna - full length insert cDNA
htgs-0 - single genomic reads for coordination
htc - high throughput cDNA
wgs - whole genome shotgun sequencing
other - use Source.techexp
-->
<!ATTLIST Blast4-seqtech value (
unknown |
standard |
est |
sts |
survey |
genemap |
physmap |
derived |
concept-trans |
seq-pept |
both |
seq-pept-overlap |
seq-pept-homol |
concept-trans-a |
htgs-1 |
htgs-2 |
htgs-3 |
fli-cdna |
htgs-0 |
htc |
wgs |
other
) #IMPLIED >
<!ELEMENT Blast4-database-info (
Blast4-database-info_database,
Blast4-database-info_description,
Blast4-database-info_last-updated,
Blast4-database-info_total-length,
Blast4-database-info_num-sequences,
Blast4-database-info_seqtech,
Blast4-database-info_taxid)>
<!ELEMENT Blast4-database-info_database (Blast4-database)>
<!ELEMENT Blast4-database-info_description (#PCDATA)>
<!ELEMENT Blast4-database-info_last-updated (#PCDATA)>
<!ELEMENT Blast4-database-info_total-length (%INTEGER;)>
<!ELEMENT Blast4-database-info_num-sequences (%INTEGER;)>
<!-- Borrowed from seq.asn -->
<!ELEMENT Blast4-database-info_seqtech (Blast4-seqtech)>
<!ELEMENT Blast4-database-info_taxid (%INTEGER;)>
<!ELEMENT Blast4-frame-type %ENUM;>
<!ATTLIST Blast4-frame-type value (
notset |
plus1 |
plus2 |
plus3 |
minus1 |
minus2 |
minus3
) #REQUIRED >
<!ELEMENT Blast4-ka-block (
Blast4-ka-block_lambda,
Blast4-ka-block_k,
Blast4-ka-block_h,
Blast4-ka-block_gapped)>
<!ELEMENT Blast4-ka-block_lambda (%REAL;)>
<!ELEMENT Blast4-ka-block_k (%REAL;)>
<!ELEMENT Blast4-ka-block_h (%REAL;)>
<!ELEMENT Blast4-ka-block_gapped EMPTY>
<!ATTLIST Blast4-ka-block_gapped value ( true | false ) #REQUIRED >
<!--
Masking locations for a query's frame. The locations field is a single
Seq-loc of type Packed-int, which contains all the masking locations for the
translation frame specified by the frame field.
Notes:
On input (i.e.: when the client specifies masking locations as a
Blast4-parameter), in the case of protein queries, the frame field must
always be notset, in the case of nucleotide queries (regardless of whether
the search will translate these or not), the frame must be plus1. Masking
locations in the translated encoding are not permitted.
On output (i.e.: when blast 4 server encodes these as part of the
Blast4-get-search-results-reply), the same conventions as above apply for
non-translated protein and nucleotide queries, but in the case of translated
nucleotide queries, the frame field can be specified in any of the
translation frames as appropriate.
-->
<!ELEMENT Blast4-mask (
Blast4-mask_locations,
Blast4-mask_frame)>
<!ELEMENT Blast4-mask_locations (Seq-loc*)>
<!ELEMENT Blast4-mask_frame (Blast4-frame-type)>
<!ELEMENT Blast4-matrix-id (
Blast4-matrix-id_residue-type,
Blast4-matrix-id_name)>
<!ELEMENT Blast4-matrix-id_residue-type (Blast4-residue-type)>
<!ELEMENT Blast4-matrix-id_name (#PCDATA)>
<!ELEMENT Blast4-parameter (
Blast4-parameter_name,
Blast4-parameter_value)>
<!ELEMENT Blast4-parameter_name (#PCDATA)>
<!ELEMENT Blast4-parameter_value (Blast4-value)>
<!ELEMENT Blast4-parameter-info (
Blast4-parameter-info_name,
Blast4-parameter-info_type)>
<!ELEMENT Blast4-parameter-info_name (#PCDATA)>
<!ELEMENT Blast4-parameter-info_type (#PCDATA)>
<!-- Self documenting task structure -->
<!ELEMENT Blast4-task-info (
Blast4-task-info_name,
Blast4-task-info_documentation)>
<!-- Name of this task -->
<!ELEMENT Blast4-task-info_name (#PCDATA)>
<!-- Description of the task -->
<!ELEMENT Blast4-task-info_documentation (#PCDATA)>
<!ELEMENT Blast4-program-info (
Blast4-program-info_program,
Blast4-program-info_services)>
<!ELEMENT Blast4-program-info_program (#PCDATA)>
<!ELEMENT Blast4-program-info_services (Blast4-program-info_services_E*)>
<!ELEMENT Blast4-program-info_services_E (#PCDATA)>
<!ELEMENT Blast4-residue-type %ENUM;>
<!ATTLIST Blast4-residue-type value (
unknown |
protein |
nucleotide
) #REQUIRED >
<!ELEMENT Blast4-strand-type %ENUM;>
<!ATTLIST Blast4-strand-type value (
forward-strand |
reverse-strand |
both-strands
) #REQUIRED >
<!ELEMENT Blast4-subject (
Blast4-subject_database |
Blast4-subject_sequences |
Blast4-subject_seq-loc-list)>
<!ELEMENT Blast4-subject_database (#PCDATA)>
<!ELEMENT Blast4-subject_sequences (Bioseq*)>
<!ELEMENT Blast4-subject_seq-loc-list (Seq-loc*)>
<!ELEMENT Blast4-parameters (Blast4-parameter*)>
<!ELEMENT Blast4-phi-alignments (
Blast4-phi-alignments_num-alignments,
Blast4-phi-alignments_seq-locs)>
<!ELEMENT Blast4-phi-alignments_num-alignments (%INTEGER;)>
<!ELEMENT Blast4-phi-alignments_seq-locs (Seq-loc*)>
<!ELEMENT Blast4-value (
Blast4-value_big-integer |
Blast4-value_bioseq |
Blast4-value_boolean |
Blast4-value_cutoff |
Blast4-value_integer |
Blast4-value_matrix |
Blast4-value_real |
Blast4-value_seq-align |
Blast4-value_seq-id |
Blast4-value_seq-loc |
Blast4-value_strand-type |
Blast4-value_string |
Blast4-value_big-integer-list |
Blast4-value_bioseq-list |
Blast4-value_boolean-list |
Blast4-value_cutoff-list |
Blast4-value_integer-list |
Blast4-value_matrix-list |
Blast4-value_real-list |
Blast4-value_seq-align-list |
Blast4-value_seq-id-list |
Blast4-value_seq-loc-list |
Blast4-value_strand-type-list |
Blast4-value_string-list |
Blast4-value_bioseq-set |
Blast4-value_seq-align-set |
Blast4-value_query-mask)>
<!-- scalar types -->
<!ELEMENT Blast4-value_big-integer (%INTEGER;)>
<!ELEMENT Blast4-value_bioseq (Bioseq)>
<!ELEMENT Blast4-value_boolean EMPTY>
<!ATTLIST Blast4-value_boolean value ( true | false ) #REQUIRED >
<!--
Other types in alphabetical order
-->
<!ELEMENT Blast4-value_cutoff (Blast4-cutoff)>
<!ELEMENT Blast4-value_integer (%INTEGER;)>
<!ELEMENT Blast4-value_matrix (PssmWithParameters)>
<!ELEMENT Blast4-value_real (%REAL;)>
<!ELEMENT Blast4-value_seq-align (Seq-align)>
<!ELEMENT Blast4-value_seq-id (Seq-id)>
<!ELEMENT Blast4-value_seq-loc (Seq-loc)>
<!ELEMENT Blast4-value_strand-type (Blast4-strand-type)>
<!ELEMENT Blast4-value_string (#PCDATA)>
<!-- lists of scalar types -->
<!ELEMENT Blast4-value_big-integer-list (Blast4-value_big-integer-list_E*)>
<!ELEMENT Blast4-value_big-integer-list_E (%INTEGER;)>
<!ELEMENT Blast4-value_bioseq-list (Bioseq*)>
<!ELEMENT Blast4-value_boolean-list (Blast4-value_boolean-list_E*)>
<!ELEMENT Blast4-value_boolean-list_E EMPTY>
<!ATTLIST Blast4-value_boolean-list_E value ( true | false ) #REQUIRED >
<!ELEMENT Blast4-value_cutoff-list (Blast4-cutoff*)>
<!ELEMENT Blast4-value_integer-list (Blast4-value_integer-list_E*)>
<!ELEMENT Blast4-value_integer-list_E (%INTEGER;)>
<!ELEMENT Blast4-value_matrix-list (PssmWithParameters*)>
<!ELEMENT Blast4-value_real-list (Blast4-value_real-list_E*)>
<!ELEMENT Blast4-value_real-list_E (%REAL;)>
<!ELEMENT Blast4-value_seq-align-list (Seq-align*)>
<!ELEMENT Blast4-value_seq-id-list (Seq-id*)>
<!ELEMENT Blast4-value_seq-loc-list (Seq-loc*)>
<!ELEMENT Blast4-value_strand-type-list (Blast4-strand-type*)>
<!ELEMENT Blast4-value_string-list (Blast4-value_string-list_E*)>
<!ELEMENT Blast4-value_string-list_E (#PCDATA)>
<!-- imported collection types -->
<!ELEMENT Blast4-value_bioseq-set (Bioseq-set)>
<!ELEMENT Blast4-value_seq-align-set (Seq-align-set)>
<!--
Intended to represent user-provided masking locations for a single query
sequence (name field in Blast4-parameter should be "LCaseMask").
Multiple Blast4-parameters of this type are needed to specify masking
locations for multiple queries.
-->
<!ELEMENT Blast4-value_query-mask (Blast4-mask)>
<!-- Complete set of simple Blast results -->
<!ELEMENT Blast4-simple-results (
Blast4-simple-results_all-alignments)>
<!ELEMENT Blast4-simple-results_all-alignments (Blast4-alignments-for-query*)>
<!-- Alignments for one query, compiled from the raw SeqAlign results -->
<!ELEMENT Blast4-alignments-for-query (
Blast4-alignments-for-query_query-id,
Blast4-alignments-for-query_alignments)>
<!--
Query sequence identifier
(present if query is not a local id in the SeqAlign)
-->
<!ELEMENT Blast4-alignments-for-query_query-id (#PCDATA)>
<!-- All the alignments for this query -->
<!ELEMENT Blast4-alignments-for-query_alignments (Blast4-simple-alignment*)>
<!-- A single alignment -->
<!ELEMENT Blast4-simple-alignment (
Blast4-simple-alignment_subject-id,
Blast4-simple-alignment_e-value,
Blast4-simple-alignment_bit-score,
Blast4-simple-alignment_num-identities?,
Blast4-simple-alignment_num-indels?,
Blast4-simple-alignment_full-query-range,
Blast4-simple-alignment_full-subject-range)>
<!--
Subject sequence identifier
(normally a GI from the SeqAlign)
-->
<!ELEMENT Blast4-simple-alignment_subject-id (#PCDATA)>
<!-- E-Value -->
<!ELEMENT Blast4-simple-alignment_e-value (%REAL;)>
<!-- Bit score -->
<!ELEMENT Blast4-simple-alignment_bit-score (%REAL;)>
<!-- Number of identities -->
<!ELEMENT Blast4-simple-alignment_num-identities (%INTEGER;)>
<!-- Number of insertions/deletions -->
<!ELEMENT Blast4-simple-alignment_num-indels (%INTEGER;)>
<!-- Full query range covered by this HSP -->
<!ELEMENT Blast4-simple-alignment_full-query-range (Blast4-range)>
<!-- Full subject range covered by this HSP -->
<!ELEMENT Blast4-simple-alignment_full-subject-range (Blast4-range)>
<!-- Range on a sequence - zero offset -->
<!ELEMENT Blast4-range (
Blast4-range_start?,
Blast4-range_end?,
Blast4-range_strand?)>
<!ELEMENT Blast4-range_start (%INTEGER;)>
<!ELEMENT Blast4-range_end (%INTEGER;)>
<!--
The frame of the range (absent for proteins; -1/1 for nucleotides;
-1,-2,-3,1,2,3 for translated sequences)
-->
<!ELEMENT Blast4-range_strand (%INTEGER;)>
|