1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205
|
<HTML>
<HEAD>
<TITLE>
EMBOSS: banana
</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" text="#000000">
<table align=center border=0 cellspacing=0 cellpadding=0>
<tr><td valign=top>
<A HREF="/" ONMOUSEOVER="self.status='Go to the EMBOSS home page';return true"><img border=0 src="/images/emboss_icon.jpg" alt="" width=150 height=48></a>
</td>
<td align=left valign=middle>
<b><font size="+6">
banana
</font></b>
</td></tr>
</table>
<br>
<p>
<H2>
Wiki
</H2>
The master copies of EMBOSS documentation are available
at <a href="http://emboss.open-bio.org/wiki/Appdocs">
http://emboss.open-bio.org/wiki/Appdocs</a>
on the EMBOSS Wiki.
<p>
Please help by correcting and extending the Wiki pages.
<H2>
Function
</H2>
Plot bending and curvature data for B-DNA
<H2>
Description
</H2>
<p><b>banana</b> predicts bending of a normal (B) DNA double helix,
using the method of Goodsell & Dickerson, NAR 1994
11;22(24):5497-5503. The program calculates the magnitude of local
bending and macroscopic curvature at each point along an arbitrary
B-DNA sequence, using any desired bending model that specifies values
of twist, roll and tilt as a function of sequence. The program
outputs both a graphical display and a text file of the results.</p>
<p>The default model (model 'a' from the Goodsell & Dickerson paper)
is based on the nucleosome positioning data of Satchwell et al 1986
(J. Mol. Biol. 191, 659-675). It correctly predicts experimental
A-tract curvature as measured by gel retardation and cyclization
kinetics and successfully predicts curvature in regions containing
phased <tt>GGGCCC</tt> sequences. The model shows local bending at
mixed sequence DNA, strong bends at the sequence <tt>GGC</tt>, and
straight, rigid A-tracts. It is the only model out of the six
investigated that is consistent with both solution data from gel
retardation and cyclization kinetics and structural data from x-ray
crystallography.</p>
<H2>
Algorithm
</H2>
<p><b>banana</b> reads a sequence and a matrix of standard twist, roll
and tilt angles for each type of base pair step. The default matrix is
described below (see "Bending Model") but some other can be specified
(see "Data Files" below). The program creates a table or a graphical
image of the bending and the curvature at each base step.</p>
<p>The indicated twist, roll and tilt angles are applied at each step
along the sequence, and the resulting base pair normal vector
calculated. The first base pair is aligned normal to the z axis, with
a twist value of 0.0 degrees. The specified twist is applied to the
second base pair, and roll and tilt values are use to calculate its
normal vector relative to the first. If either roll or tilt is
non-zero, the new normal vector will be angled away from the z axis,
producing the first 'bend'. The process is continued along the
sequence, applying the appropriate twist, roll and tilt to each new
base pair relative to its predecessor. The result is a list of normal
vectors for all base pairs in the sequence.</p>
<p>Local bends are then calculated from the normal vectors. The bend
for base N is calculated across a window from N-1 to N+1.</p>
<p>Curvature is calculated in two steps. Base pair normals are first
averaged over a 10-base-pair window to filter out the local writhing
of the helix. The normals of the nine base pairs from N-4 to N+4, and
the two base pairs N-5 and N+5 at half weight, are averaged and
assigned to base pair N. Curvature then is calculated from these
averaged normal vector values, using a bracket value, nc, with a value
of 15. That is, the curvature at base pair N is the angle between
averaged normal vectors at base pairs N-nc and N+nc.</p>
<h3>Bending Model</h3>
<p><b>banana</b> reads by default a data file (Eangles_tri.dat) of
twist, roll and tilt angles, as in Goodsell & Dickerson, NAR 1994
11;22(24):5497-503 and Drew and Travers (1986) JMB 191, 659. The
roll-tilt-twist parameters of this bending model are objective and
unbiased. They are derived purely from experimental observations of
sequence location preferences of base trimers in small circles of DNA,
without reference to solution techniques that measure curvature per
se.</p>
<p>Satchwell, Drew and Travers studied the positioning of DNA
sequences wrappped around nucleosome cores, and in closed circles of
double-helical DNA of comparable size. From the sequence data they
calculated a fractional preference of each base pair triplet for a
position 'facing out', or with the major groove on the concave side of
the curved helix.</p>
<p>The sequence GGC, for example, has a 45% preference for locations
on a bent double helix in which its major groove faces inward and is
compressed by the curvature (tending towards positive roll), whereas
sequence AAA has a 36% preference for the opposite orientation, with
major groove facing outward and with minor groove facing inward and
compressed (tending toward negative roll).</p>
<p>These fractional variances are converted into roll angles in the
following manner: Because x-ray cyrstal structure analysis uniformly
indicates that AA steps are unbent, a zero roll is assigned to the AAA
triplet; an arbitrary maximum roll of 10 degrees is asigned to GGC,
and all other triplets are scaled in a lenear manner. Where % is the
percent-out figure, then:
Roll = 10 degrees * (% + 36)/(45 + 36)
</p>
<p>Changing the maximum roll value will scale the entire profile up or
down proportionately, but will not change the shape of the
profile. Peaks will remain peaks, and valleys, valleys. The absolute
magnitude of all the roll values is less important than their relative
magnitude, or the order of roll preference. Twist angles were set to
zero. Because these values correspond to base trimers, the values of
roll, tilt and twist were applied to the first two bases for the
calculation.</p>
<H2>
Usage
</H2>
Here is a sample session with <b>banana</b>
<p>
<p>
<table width="90%"><tr><td bgcolor="#CCFFFF"><pre>
% <b>banana -nooutfile -graph ps </b>
Plot bending and curvature data for B-DNA
Input nucleotide sequence: <b>tembl:u68037</b>
Created banana.ps
</pre></td></tr></table><p>
<p>
<a href="#input.1">Go to the input files for this example</a><br><a href="#output.1">Go to the output files for this example</a><p><p>
<p>
<b>Example 2</b>
<p>
<p>
<table width="90%"><tr><td bgcolor="#CCFFFF"><pre>
% <b>banana -graph data </b>
Plot bending and curvature data for B-DNA
Input nucleotide sequence: <b>tembl:u68037</b>
Created banana1.dat
Created banana2.dat
Created banana3.dat
Created banana4.dat
Created banana5.dat
Created banana6.dat
Created banana7.dat
Created banana8.dat
Created banana9.dat
</pre></td></tr></table><p>
<p>
<a href="#output.2">Go to the output files for this example</a><p><p>
<H2>
Command line arguments
</H2>
<table CELLSPACING=0 CELLPADDING=3 BGCOLOR="#f5f5ff" ><tr><td>
<pre>
Plot bending and curvature data for B-DNA
Version: EMBOSS:6.6.0.0
Standard (Mandatory) qualifiers:
[-sequence] sequence Nucleotide sequence filename and optional
format, or reference (input USA)
-graph graph [$EMBOSS_GRAPHICS value, or x11] Graph type
(ps, hpgl, hp7470, hp7580, meta, cps, x11,
tek, tekt, none, data, xterm, png, gif, pdf,
svg)
Additional (Optional) qualifiers:
-anglesfile datafile [Eangles_tri.dat] DNA base trimer roll
angles data file
-residuesperline integer [50] Number of residues to be displayed on
each line (Any integer value)
-outfile outfile [banana.profile] Output file name
Advanced (Unprompted) qualifiers: (none)
Associated qualifiers:
"-sequence" associated qualifiers
-sbegin1 integer Start of the sequence to be used
-send1 integer End of the sequence to be used
-sreverse1 boolean Reverse (if DNA)
-sask1 boolean Ask for begin/end/reverse
-snucleotide1 boolean Sequence is nucleotide
-sprotein1 boolean Sequence is protein
-slower1 boolean Make lower case
-supper1 boolean Make upper case
-scircular1 boolean Sequence is circular
-squick1 boolean Read id and sequence only
-sformat1 string Input sequence format
-iquery1 string Input query fields or ID list
-ioffset1 integer Input start position offset
-sdbname1 string Database name
-sid1 string Entryname
-ufo1 string UFO features
-fformat1 string Features format
-fopenfile1 string Features file name
"-graph" associated qualifiers
-gprompt boolean Graph prompting
-gdesc string Graph description
-gtitle string Graph title
-gsubtitle string Graph subtitle
-gxtitle string Graph x axis title
-gytitle string Graph y axis title
-goutfile string Output file for non interactive displays
-gdirectory string Output directory
"-outfile" associated qualifiers
-odirectory string Output directory
General qualifiers:
-auto boolean Turn off prompts
-stdout boolean Write first file to standard output
-filter boolean Read first file from standard input, write
first file to standard output
-options boolean Prompt for standard and additional values
-debug boolean Write debug output to program.dbg
-verbose boolean Report some/full command line options
-help boolean Report command line options and exit. More
information on associated and general
qualifiers can be found with -help -verbose
-warning boolean Report warnings
-error boolean Report errors
-fatal boolean Report fatal errors
-die boolean Report dying program messages
-version boolean Report version number and exit
</pre>
</td></tr></table>
<P>
<table border cellspacing=0 cellpadding=3 bgcolor="#ccccff">
<tr bgcolor="#FFFFCC">
<th align="left">Qualifier</th>
<th align="left">Type</th>
<th align="left">Description</th>
<th align="left">Allowed values</th>
<th align="left">Default</th>
</tr>
<tr bgcolor="#FFFFCC">
<th align="left" colspan=5>Standard (Mandatory) qualifiers</th>
</tr>
<tr bgcolor="#FFFFCC">
<td>[-sequence]<br>(Parameter 1)</td>
<td>sequence</td>
<td>Nucleotide sequence filename and optional format, or reference (input USA)</td>
<td>Readable sequence</td>
<td><b>Required</b></td>
</tr>
<tr bgcolor="#FFFFCC">
<td>-graph</td>
<td>graph</td>
<td>Graph type</td>
<td>EMBOSS has a list of known devices, including ps, hpgl, hp7470, hp7580, meta, cps, x11, tek, tekt, none, data, xterm, png, gif, pdf, svg</td>
<td><i>EMBOSS_GRAPHICS</i> value, or x11</td>
</tr>
<tr bgcolor="#FFFFCC">
<th align="left" colspan=5>Additional (Optional) qualifiers</th>
</tr>
<tr bgcolor="#FFFFCC">
<td>-anglesfile</td>
<td>datafile</td>
<td>DNA base trimer roll angles data file</td>
<td>Data file</td>
<td>Eangles_tri.dat</td>
</tr>
<tr bgcolor="#FFFFCC">
<td>-residuesperline</td>
<td>integer</td>
<td>Number of residues to be displayed on each line</td>
<td>Any integer value</td>
<td>50</td>
</tr>
<tr bgcolor="#FFFFCC">
<td>-outfile</td>
<td>outfile</td>
<td>Output file name</td>
<td>Output file</td>
<td>banana.profile</td>
</tr>
<tr bgcolor="#FFFFCC">
<th align="left" colspan=5>Advanced (Unprompted) qualifiers</th>
</tr>
<tr>
<td colspan=5>(none)</td>
</tr>
<tr bgcolor="#FFFFCC">
<th align="left" colspan=5>Associated qualifiers</th>
</tr>
<tr bgcolor="#FFFFCC">
<td align="left" colspan=5>"-sequence" associated sequence qualifiers
</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sbegin1<br>-sbegin_sequence</td>
<td>integer</td>
<td>Start of the sequence to be used</td>
<td>Any integer value</td>
<td>0</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -send1<br>-send_sequence</td>
<td>integer</td>
<td>End of the sequence to be used</td>
<td>Any integer value</td>
<td>0</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sreverse1<br>-sreverse_sequence</td>
<td>boolean</td>
<td>Reverse (if DNA)</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sask1<br>-sask_sequence</td>
<td>boolean</td>
<td>Ask for begin/end/reverse</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -snucleotide1<br>-snucleotide_sequence</td>
<td>boolean</td>
<td>Sequence is nucleotide</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sprotein1<br>-sprotein_sequence</td>
<td>boolean</td>
<td>Sequence is protein</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -slower1<br>-slower_sequence</td>
<td>boolean</td>
<td>Make lower case</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -supper1<br>-supper_sequence</td>
<td>boolean</td>
<td>Make upper case</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -scircular1<br>-scircular_sequence</td>
<td>boolean</td>
<td>Sequence is circular</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -squick1<br>-squick_sequence</td>
<td>boolean</td>
<td>Read id and sequence only</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sformat1<br>-sformat_sequence</td>
<td>string</td>
<td>Input sequence format</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -iquery1<br>-iquery_sequence</td>
<td>string</td>
<td>Input query fields or ID list</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -ioffset1<br>-ioffset_sequence</td>
<td>integer</td>
<td>Input start position offset</td>
<td>Any integer value</td>
<td>0</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sdbname1<br>-sdbname_sequence</td>
<td>string</td>
<td>Database name</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -sid1<br>-sid_sequence</td>
<td>string</td>
<td>Entryname</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -ufo1<br>-ufo_sequence</td>
<td>string</td>
<td>UFO features</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -fformat1<br>-fformat_sequence</td>
<td>string</td>
<td>Features format</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -fopenfile1<br>-fopenfile_sequence</td>
<td>string</td>
<td>Features file name</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td align="left" colspan=5>"-graph" associated graph qualifiers
</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gprompt</td>
<td>boolean</td>
<td>Graph prompting</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gdesc</td>
<td>string</td>
<td>Graph description</td>
<td>Any string</td>
<td>Bending and curvature plot</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gtitle</td>
<td>string</td>
<td>Graph title</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gsubtitle</td>
<td>string</td>
<td>Graph subtitle</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gxtitle</td>
<td>string</td>
<td>Graph x axis title</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gytitle</td>
<td>string</td>
<td>Graph y axis title</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -goutfile</td>
<td>string</td>
<td>Output file for non interactive displays</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -gdirectory</td>
<td>string</td>
<td>Output directory</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<td align="left" colspan=5>"-outfile" associated outfile qualifiers
</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -odirectory</td>
<td>string</td>
<td>Output directory</td>
<td>Any string</td>
<td> </td>
</tr>
<tr bgcolor="#FFFFCC">
<th align="left" colspan=5>General qualifiers</th>
</tr>
<tr bgcolor="#FFFFCC">
<td> -auto</td>
<td>boolean</td>
<td>Turn off prompts</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -stdout</td>
<td>boolean</td>
<td>Write first file to standard output</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -filter</td>
<td>boolean</td>
<td>Read first file from standard input, write first file to standard output</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -options</td>
<td>boolean</td>
<td>Prompt for standard and additional values</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -debug</td>
<td>boolean</td>
<td>Write debug output to program.dbg</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -verbose</td>
<td>boolean</td>
<td>Report some/full command line options</td>
<td>Boolean value Yes/No</td>
<td>Y</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -help</td>
<td>boolean</td>
<td>Report command line options and exit. More information on associated and general qualifiers can be found with -help -verbose</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -warning</td>
<td>boolean</td>
<td>Report warnings</td>
<td>Boolean value Yes/No</td>
<td>Y</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -error</td>
<td>boolean</td>
<td>Report errors</td>
<td>Boolean value Yes/No</td>
<td>Y</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -fatal</td>
<td>boolean</td>
<td>Report fatal errors</td>
<td>Boolean value Yes/No</td>
<td>Y</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -die</td>
<td>boolean</td>
<td>Report dying program messages</td>
<td>Boolean value Yes/No</td>
<td>Y</td>
</tr>
<tr bgcolor="#FFFFCC">
<td> -version</td>
<td>boolean</td>
<td>Report version number and exit</td>
<td>Boolean value Yes/No</td>
<td>N</td>
</tr>
</table>
<H2>
Input file format
</H2>
<b>banana</b> reads a single nucleotide sequences.
<p>
<p>
The output is a standard EMBOSS sequence file.
<p>
The results can be output in one of several styles by using the
command-line qualifier <tt>-osformat xxx</tt>, where 'xxx' is replaced by
the name of the required format. The available format names are: embl,
genbank, gff, pir, swiss, dasgff, debug, listfile, dbmotif, diffseq, excel,
feattable, motif, nametable, regions, seqtable, simple, srs, table, tagseq.
<p>
See:
<A href="http://emboss.sf.net/docs/themes/SequenceFormats.html">
http://emboss.sf.net/docs/themes/SequenceFormats.html</A>
for further information on sequence formats.
<p>
<p>
<a name="input.1"></a>
<h3>Input files for usage example </h3>
'tembl:u68037' is a sequence entry in the example nucleic acid database 'tembl'
<p>
<p><h3>Database entry: tembl:u68037</h3>
<table width="90%"><tr><td bgcolor="#FFCCFF">
<pre>
ID U68037; SV 1; linear; mRNA; STD; ROD; 1218 BP.
XX
AC U68037;
XX
DT 23-SEP-1996 (Rel. 49, Created)
DT 04-MAR-2000 (Rel. 63, Last updated, Version 2)
XX
DE Rattus norvegicus EP1 prostanoid receptor mRNA, complete cds.
XX
KW .
XX
OS Rattus norvegicus (Norway rat)
OC Eukaryota; Metazoa; Chordata; Craniata; Vertebrata; Euteleostomi; Mammalia;
OC Eutheria; Euarchontoglires; Glires; Rodentia; Sciurognathi; Muroidea;
OC Muridae; Murinae; Rattus.
XX
RN [1]
RP 1-1218
RA Abramovitz M., Boie Y.;
RT "Cloning of the rat EP1 prostanoid receptor";
RL Unpublished.
XX
RN [2]
RP 1-1218
RA Abramovitz M., Boie Y.;
RT ;
RL Submitted (26-AUG-1996) to the INSDC.
RL Biochemistry & Molecular Biology, Merck Frosst Center for Therapeutic
RL Research, P. O. Box 1005, Pointe Claire - Dorval, Quebec H9R 4P8, Canada
XX
DR Ensembl-GO; ENSRNOESTG00000830631; Rattus_norvegicus.
DR Ensembl-Gn; ENSRNOG00000004094; Rattus_norvegicus.
DR Ensembl-Gn; ENSRNOG00000017743; Rattus_norvegicus.
DR Ensembl-TO; ENSRNOESTT00000830623; Rattus_norvegicus.
DR Ensembl-Tr; ENSRNOT00000005470; Rattus_norvegicus.
DR Ensembl-Tr; ENSRNOT00000023860; Rattus_norvegicus.
XX
FH Key Location/Qualifiers
FH
FT source 1..1218
FT /organism="Rattus norvegicus"
FT /strain="Sprague-Dawley"
FT /mol_type="mRNA"
FT /db_xref="taxon:10116"
FT CDS 1..1218
FT /codon_start=1
FT /product="EP1 prostanoid receptor"
FT /note="family 1 G-protein coupled receptor"
FT /db_xref="GOA:P70597"
FT /db_xref="InterPro:IPR000276"
FT /db_xref="InterPro:IPR000708"
FT /db_xref="InterPro:IPR001244"
FT /db_xref="InterPro:IPR008365"
FT /db_xref="InterPro:IPR017452"
FT /db_xref="UniProtKB/Swiss-Prot:P70597"
FT /protein_id="AAB07735.1"
FT /translation="MSPYGLNLSLVDEATTCVTPRVPNTSVVLPTGGNGTSPALPIFSM
FT TLGAVSNVLALALLAQVAGRLRRRRSTATFLLFVASLLAIDLAGHVIPGALVLRLYTAG
FT RAPAGGACHFLGGCMVFFGLCPLLLGCGMAVERCVGVTQPLIHAARVSVARARLALALL
FT AAMALAVALLPLVHVGHYELQYPGTWCFISLGPPGGWRQALLAGLFAGLGLAALLAALV
FT CNTLSGLALLRARWRRRRSRRFRENAGPDDRRRWGSRGLRLASASSASSITSTTAALRS
FT SRGGGSARRVHAHDVEMVGQLVGIMVVSCICWSPLLVLVVLAIGGWNSNSLQRPLFLAV
FT RLASWNQILDPWVYILLRQAMLRQLLRLLPLRVSAKGGPTELSLTKSAWEASSLRSSRH
FT SGFSHL"
XX
SQ Sequence 1218 BP; 162 A; 397 C; 387 G; 272 T; 0 other;
atgagcccct acgggcttaa cctgagccta gtggatgagg caacaacgtg tgtaacaccc 60
agggtcccca atacatctgt ggtgctgcca acaggcggta acggcacatc accagcgctg 120
cctatcttct ccatgacgct gggtgctgtg tccaacgtgc tggcgctggc gctgctggcc 180
caggttgcag gcagactgcg gcgccgccgc tcgactgcca ccttcctgtt gttcgtcgcc 240
agcctgcttg ccatcgacct agcaggccat gtgatcccgg gcgccttggt gcttcgcctg 300
tatactgcag gacgtgcgcc cgctggcggg gcctgtcatt tcctgggcgg ctgtatggtc 360
ttctttggcc tgtgcccact tttgcttggc tgtggcatgg ccgtggagcg ctgcgtgggt 420
gtcacgcagc cgctgatcca cgcggcgcgc gtgtccgtag cccgcgcacg cctggcacta 480
gccctgctgg ccgccatggc tttggcagtg gcgctgctgc cactagtgca cgtgggtcac 540
tacgagctac agtaccctgg cacttggtgt ttcattagcc ttgggcctcc tggaggttgg 600
cgccaggcgt tgcttgcggg cctcttcgcc ggccttggcc tggctgcgct ccttgccgca 660
ctagtgtgta atacgctcag cggcctggcg ctccttcgtg cccgctggag gcggcgtcgc 720
tctcgacgtt tccgagagaa cgcaggtccc gatgatcgcc ggcgctgggg gtcccgtgga 780
ctccgcttgg cctccgcctc gtctgcgtca tccatcactt caaccacagc tgccctccgc 840
agctctcggg gaggcggctc cgcgcgcagg gttcacgcac acgacgtgga aatggtgggc 900
cagctcgtgg gcatcatggt ggtgtcgtgc atctgctgga gccccctgct ggtattggtg 960
gtgttggcca tcgggggctg gaactctaac tccctgcagc ggccgctctt tctggctgta 1020
cgcctcgcgt cgtggaacca gatcctggac ccatgggtgt acatcctgct gcgccaggct 1080
atgctgcgcc aacttcttcg cctcctaccc ctgagggtta gtgccaaggg tggtccaacg 1140
gagctgagcc taaccaagag tgcctgggag gccagttcac tgcgtagctc ccggcacagt 1200
ggcttcagcc acttgtga 1218
//
</pre>
</td></tr></table><p>
<H2>
Output file format
</H2>
The output is to both a graphical display and to a text file with the
default name 'banana.profile'.
<p>
The graphical display shows the sequence together with the local local
bending (solid line) and macroscopic curvature (dotted line).
<p>
<p>
The output is to the specified graphics device.
<p>
The results can be output in one of several formats by using the
command-line qualifier <b>-graph xxx</b>, where 'xxx' is replaced by
the name of the required device. Support depends on the availability
of third-party software packages.
<p>
The device names that output to a file are:
ps (postscript), cps (colourps), png, gif, pdf, svg, hpgl, hp7470,
hp7580, das, data.
<p> The other available device names are: meta, x11 (xwindows), tek
(tek4107t), tekt (tektronix), xterm, text.
<p>
Output can be turned off by specifying none (null).
<p>
See:
<A href="http://emboss.sf.net/docs/themes/GraphicsDevices.html">
http://emboss.sf.net/docs/themes/GraphicsDevices.html</A>
for further information on supported devices.
<p>
<p>
<a name="output.1"></a>
<h3>Output files for usage example </h3>
<p><h3>Graphics File: banana.ps</h3>
<p><img src="banana.1.banana.gif" alt="[banana results]">
<a name="output.2"></a>
<h3>Output files for usage example 2</h3>
<p><h3>File: banana.profile</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
Base Bend Curve
a 0.0 0.0
t 19.7 0.0
g 17.7 0.0
a 21.1 0.0
g 28.5 0.0
c 26.2 0.0
c 19.7 0.0
c 18.7 0.0
c 12.5 0.0
t 9.7 0.0
a 14.9 0.0
c 16.5 0.0
g 17.5 0.0
g 26.2 0.0
g 28.5 0.0
c 20.7 0.0
t 11.7 0.0
t 6.4 0.0
a 9.3 0.0
a 14.9 0.0
c 17.7 20.0
c 15.7 19.2
t 15.7 18.5
g 17.7 17.9
a 21.1 17.1
g 28.5 15.9
c 25.2 14.6
c 12.5 13.3
t 7.2 11.9
a 13.2 10.8
g 20.1 10.1
t 19.5 9.6
g 15.1 9.2
g 14.9 9.1
a 19.5 9.5
t 19.7 10.2
g 17.7 10.8
a 17.7 11.0
g 25.2 11.2
g 26.2 11.3
c 15.3 11.5
a 11.4 11.7
a 14.5 12.0
c 13.9 12.2
a 11.4 12.3
a 14.9 12.5
c 17.7 12.8
g 19.5 13.3
t 19.1 13.5
<font color=red> [Part of this file has been deleted for brevity]</font>
g 15.1 15.2
a 17.7 15.5
g 25.2 15.8
g 32.5 16.0
c 25.2 15.8
c 15.7 15.0
a 16.3 14.2
g 15.5 13.5
t 10.8 12.8
t 13.7 12.3
c 19.5 12.1
a 20.1 12.1
c 16.3 12.1
t 16.7 11.9
g 22.1 11.4
c 21.1 11.1
g 14.9 10.7
t 9.7 10.3
a 16.1 9.8
g 24.5 9.4
c 21.1 8.9
t 15.1 8.4
c 16.1 7.7
c 17.5 7.3
c 15.3 6.9
g 24.0 6.4
g 26.2 5.8
c 20.5 5.4
a 19.1 5.1
c 15.3 26.0
a 16.3 0.0
g 20.1 0.0
t 19.5 0.0
g 25.2 0.0
g 28.5 0.0
c 20.7 0.0
t 13.3 0.0
t 13.7 0.0
c 15.7 0.0
a 19.1 0.0
g 28.5 0.0
c 25.2 0.0
c 19.5 0.0
a 20.1 0.0
c 17.9 0.0
t 13.9 0.0
t 13.9 0.0
g 19.1 0.0
t 19.5 0.0
g 0.0 0.0
a 0.0 0.0
</pre>
</td></tr></table><p>
<p><h3>File: banana1.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Maintitle Bending and curvature plot of tembl-id:U68037
##Subtitle Mon 15 Jul 2013 12:00:00
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 3.500000 y1 66.743378 x2 4.500000 y2 66.039978 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 4.500000 y1 66.039978 x2 5.500000 y2 67.239143 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 5.500000 y1 67.239143 x2 6.500000 y2 69.829361 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 6.500000 y1 69.829361 x2 7.500000 y2 69.006195 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 7.500000 y1 69.006195 x2 8.500000 y2 66.739983 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 8.500000 y1 66.739983 x2 9.500000 y2 66.390877 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 9.500000 y1 66.390877 x2 10.500000 y2 64.256180 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 10.500000 y1 64.256180 x2 11.500000 y2 63.249973 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 11.500000 y1 63.249973 x2 12.500000 y2 65.068802 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 12.500000 y1 65.068802 x2 13.500000 y2 65.621445 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 13.500000 y1 65.621445 x2 14.500000 y2 65.974617 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
Text3 x1 15.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 14.500000 y1 65.974617 x2 15.500000 y2 69.006195 colour 0
Line x1 14.500000 y1 59.879997 x2 15.500000 y2 59.879997 colour 0
Text3 x1 16.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 15.500000 y1 69.006195 x2 16.500000 y2 69.829361 colour 0
Line x1 15.500000 y1 59.879997 x2 16.500000 y2 59.879997 colour 0
Text3 x1 17.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 16.500000 y1 69.829361 x2 17.500000 y2 67.101654 colour 0
Line x1 16.500000 y1 59.879997 x2 17.500000 y2 59.879997 colour 0
Text3 x1 18.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 17.500000 y1 67.101654 x2 18.500000 y2 63.978649 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 30.619974 x2 40.500000 y2 28.755508 colour 0
Line x1 39.700001 y1 23.003500 x2 40.299999 y2 23.142790 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 40.500000 y1 28.755508 x2 41.500000 y2 27.544254 colour 0
Line x1 40.700001 y1 23.142790 x2 41.299999 y2 23.373348 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 41.500000 y1 27.544254 x2 42.500000 y2 28.590874 colour 0
Line x1 41.700001 y1 23.373348 x2 42.299999 y2 23.594353 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 42.500000 y1 28.590874 x2 43.500000 y2 28.590874 colour 0
Line x1 42.700001 y1 23.594353 x2 43.299999 y2 23.768497 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 43.500000 y1 28.590874 x2 44.500000 y2 28.872763 colour 0
Line x1 43.700001 y1 23.768497 x2 44.299999 y2 23.897196 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 44.500000 y1 28.872763 x2 45.500000 y2 29.220501 colour 0
Line x1 44.700001 y1 23.897196 x2 45.299999 y2 23.947050 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 45.500000 y1 29.220501 x2 46.500000 y2 29.784340 colour 0
Line x1 45.700001 y1 23.947050 x2 46.299999 y2 23.960222 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 46.500000 y1 29.784340 x2 47.500000 y2 28.755508 colour 0
Line x1 46.700001 y1 23.960222 x2 47.299999 y2 23.933397 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 47.500000 y1 28.755508 x2 48.500000 y2 27.402788 colour 0
Line x1 47.700001 y1 23.933397 x2 48.299999 y2 23.842731 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 48.500000 y1 27.402788 x2 49.500000 y2 28.734222 colour 0
Line x1 48.700001 y1 23.842731 x2 49.299999 y2 23.635277 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 49.500000 y1 28.734222 x2 50.500000 y2 28.734224 colour 0
Line x1 49.700001 y1 23.635277 x2 50.299999 y2 23.355330 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 50.500000 y1 28.734224 x2 51.500000 y2 28.100136 colour 0
Line x1 50.700001 y1 23.355330 x2 51.299999 y2 23.095020 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 51.500000 y1 28.100136 x2 52.500000 y2 27.337486 colour 0
Line x1 51.700001 y1 23.095020 x2 52.299999 y2 22.881302 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana2.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 2.500000 y1 65.137489 x2 3.500000 y2 65.137489 colour 0
Line x1 2.700000 y1 60.681305 x2 3.300000 y2 60.544445 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 3.500000 y1 65.137489 x2 4.500000 y2 64.863533 colour 0
Line x1 3.700000 y1 60.544445 x2 4.300000 y2 60.511105 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 4.500000 y1 64.863533 x2 5.500000 y2 63.870514 colour 0
Line x1 4.700000 y1 60.511105 x2 5.300000 y2 60.594872 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 5.500000 y1 63.870514 x2 6.500000 y2 65.068802 colour 0
Line x1 5.700000 y1 60.594872 x2 6.300000 y2 60.754246 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 6.500000 y1 65.068802 x2 7.500000 y2 66.039978 colour 0
Line x1 6.700000 y1 60.754246 x2 7.300000 y2 60.980507 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 7.500000 y1 66.039978 x2 8.500000 y2 66.672760 colour 0
Line x1 7.700000 y1 60.980507 x2 8.300000 y2 61.280891 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 8.500000 y1 66.672760 x2 9.500000 y2 67.020500 colour 0
Line x1 8.700000 y1 61.280891 x2 9.300000 y2 61.626850 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 9.500000 y1 67.020500 x2 10.500000 y2 67.584343 colour 0
Line x1 9.700000 y1 61.626850 x2 10.300000 y2 61.980312 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 10.500000 y1 67.584343 x2 11.500000 y2 66.555504 colour 0
Line x1 10.700000 y1 61.980312 x2 11.300000 y2 62.251072 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 11.500000 y1 66.555504 x2 12.500000 y2 65.344254 colour 0
Line x1 11.700000 y1 62.251072 x2 12.300000 y2 62.421207 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 12.500000 y1 65.344254 x2 13.500000 y2 68.666405 colour 0
Line x1 12.700000 y1 62.421207 x2 13.300000 y2 62.520817 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 13.500000 y1 68.666405 x2 14.500000 y2 69.829361 colour 0
Line x1 13.700000 y1 62.520817 x2 14.300000 y2 62.609585 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 28.239981 x2 40.500000 y2 28.872763 colour 0
Line x1 39.700001 y1 25.297359 x2 40.299999 y2 25.211924 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 40.500000 y1 28.872763 x2 41.500000 y2 29.220501 colour 0
Line x1 40.700001 y1 25.211924 x2 41.299999 y2 25.157118 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 41.500000 y1 29.220501 x2 42.500000 y2 29.784338 colour 0
Line x1 41.700001 y1 25.157118 x2 42.299999 y2 25.166607 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 42.500000 y1 29.784338 x2 43.500000 y2 29.301651 colour 0
Line x1 42.700001 y1 25.166607 x2 43.299999 y2 25.246220 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 43.500000 y1 29.301651 x2 44.500000 y2 26.716318 colour 0
Line x1 43.700001 y1 25.246220 x2 44.299999 y2 25.346378 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 44.500000 y1 26.716318 x2 45.500000 y2 28.517347 colour 0
Line x1 44.700001 y1 25.346378 x2 45.299999 y2 25.396358 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 45.500000 y1 28.517347 x2 46.500000 y2 31.040909 colour 0
Line x1 45.700001 y1 25.396358 x2 46.299999 y2 25.410254 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 46.500000 y1 31.040909 x2 47.500000 y2 32.029354 colour 0
Line x1 46.700001 y1 25.410254 x2 47.299999 y2 25.458986 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 47.500000 y1 32.029354 x2 48.500000 y2 30.866402 colour 0
Line x1 47.700001 y1 25.458986 x2 48.299999 y2 25.576271 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 48.500000 y1 30.866402 x2 49.500000 y2 27.544254 colour 0
Line x1 48.700001 y1 25.576271 x2 49.299999 y2 25.788673 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 49.500000 y1 27.544254 x2 50.500000 y2 27.402788 colour 0
Line x1 49.700001 y1 25.788673 x2 50.299999 y2 26.104589 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 50.500000 y1 27.402788 x2 51.500000 y2 27.126644 colour 0
Line x1 50.700001 y1 26.104589 x2 51.299999 y2 26.532803 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 51.500000 y1 27.126644 x2 52.500000 y2 25.793066 colour 0
Line x1 51.700001 y1 26.532803 x2 52.299999 y2 26.954662 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana3.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 2.500000 y1 63.593067 x2 3.500000 y2 63.099991 colour 0
Line x1 2.700000 y1 64.754662 x2 3.300000 y2 65.133423 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 3.500000 y1 63.099991 x2 4.500000 y2 63.593067 colour 0
Line x1 3.700000 y1 65.133423 x2 4.300000 y2 65.494942 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 4.500000 y1 63.593067 x2 5.500000 y2 65.282478 colour 0
Line x1 4.700000 y1 65.494942 x2 5.300000 y2 65.884865 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 5.500000 y1 65.282478 x2 6.500000 y2 65.556931 colour 0
Line x1 5.700000 y1 65.884865 x2 6.300000 y2 66.289825 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 6.500000 y1 65.556931 x2 7.500000 y2 65.699013 colour 0
Line x1 6.700000 y1 66.289825 x2 7.300000 y2 66.623062 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 7.500000 y1 65.699013 x2 8.500000 y2 66.739983 colour 0
Line x1 7.700000 y1 66.623062 x2 8.300000 y2 66.775955 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 8.500000 y1 66.739983 x2 9.500000 y2 65.699013 colour 0
Line x1 8.700000 y1 66.775955 x2 9.300000 y2 66.715897 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 9.500000 y1 65.699013 x2 10.500000 y2 65.344254 colour 0
Line x1 9.700000 y1 66.715897 x2 10.300000 y2 66.529877 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 10.500000 y1 65.344254 x2 11.500000 y2 65.137489 colour 0
Line x1 10.700000 y1 66.529877 x2 11.300000 y2 66.281403 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 11.500000 y1 65.137489 x2 12.500000 y2 65.137489 colour 0
Line x1 11.700000 y1 66.281403 x2 12.300000 y2 65.988609 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 12.500000 y1 65.137489 x2 13.500000 y2 66.039978 colour 0
Line x1 12.700000 y1 65.988609 x2 13.300000 y2 65.580658 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 13.500000 y1 66.039978 x2 14.500000 y2 66.039986 colour 0
Line x1 13.700000 y1 65.580658 x2 14.300000 y2 65.121658 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 27.337502 x2 40.500000 y2 28.872778 colour 0
Line x1 39.700001 y1 23.195297 x2 40.299999 y2 23.514282 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 40.500000 y1 28.872778 x2 41.500000 y2 28.872780 colour 0
Line x1 40.700001 y1 23.514282 x2 41.299999 y2 23.725180 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 41.500000 y1 28.872780 x2 42.500000 y2 29.439163 colour 0
Line x1 41.700001 y1 23.725180 x2 42.299999 y2 23.913563 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 42.500000 y1 29.439163 x2 43.500000 y2 30.619995 colour 0
Line x1 42.700001 y1 23.913563 x2 43.299999 y2 24.094639 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 43.500000 y1 30.619995 x2 44.500000 y2 29.027782 colour 0
Line x1 43.700001 y1 24.094639 x2 44.299999 y2 24.189131 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 44.500000 y1 29.027782 x2 45.500000 y2 30.461620 colour 0
Line x1 44.700001 y1 24.189131 x2 45.299999 y2 24.257393 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 45.500000 y1 30.461620 x2 46.500000 y2 32.029377 colour 0
Line x1 45.700001 y1 24.257393 x2 46.299999 y2 24.323923 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 46.500000 y1 32.029377 x2 47.500000 y2 30.619995 colour 0
Line x1 46.700001 y1 24.323923 x2 47.299999 y2 24.341715 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 47.500000 y1 30.619995 x2 48.500000 y2 30.619995 colour 0
Line x1 47.700001 y1 24.341715 x2 48.299999 y2 24.317759 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 48.500000 y1 30.619995 x2 49.500000 y2 30.619993 colour 0
Line x1 48.700001 y1 24.317759 x2 49.299999 y2 24.263830 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 49.500000 y1 30.619993 x2 50.500000 y2 30.619995 colour 0
Line x1 49.700001 y1 24.263830 x2 50.299999 y2 24.170185 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 50.500000 y1 30.619995 x2 51.500000 y2 29.439163 colour 0
Line x1 50.700001 y1 24.170185 x2 51.299999 y2 24.108047 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 51.500000 y1 29.439163 x2 52.500000 y2 28.872780 colour 0
Line x1 51.700001 y1 24.108047 x2 52.299999 y2 24.028463 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana4.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 2.500000 y1 66.672783 x2 3.500000 y2 66.534241 colour 0
Line x1 2.700000 y1 61.828465 x2 3.300000 y2 61.655922 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 3.500000 y1 66.534241 x2 4.500000 y2 65.900146 colour 0
Line x1 3.700000 y1 61.655922 x2 4.300000 y2 61.406979 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 4.500000 y1 65.900146 x2 5.500000 y2 65.137497 colour 0
Line x1 4.700000 y1 61.406979 x2 5.300000 y2 61.120132 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 5.500000 y1 65.137497 x2 6.500000 y2 64.712364 colour 0
Line x1 5.700000 y1 61.120132 x2 6.300000 y2 60.966145 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 6.500000 y1 64.712364 x2 7.500000 y2 65.621460 colour 0
Line x1 6.700000 y1 60.966145 x2 7.300000 y2 61.082634 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 7.500000 y1 65.621460 x2 8.500000 y2 65.068817 colour 0
Line x1 7.700000 y1 61.082634 x2 8.300000 y2 61.373489 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 8.500000 y1 65.068817 x2 9.500000 y2 63.249977 colour 0
Line x1 8.700000 y1 61.373489 x2 9.300000 y2 61.680435 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 9.500000 y1 63.249977 x2 10.500000 y2 65.487457 colour 0
Line x1 9.700000 y1 61.680435 x2 10.300000 y2 61.938332 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 10.500000 y1 65.487457 x2 11.500000 y2 69.829376 colour 0
Line x1 10.700000 y1 61.938332 x2 11.300000 y2 62.114067 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 11.500000 y1 69.829376 x2 12.500000 y2 69.006210 colour 0
Line x1 11.700000 y1 62.114067 x2 12.300000 y2 62.217670 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 12.500000 y1 69.006210 x2 13.500000 y2 65.974632 colour 0
Line x1 12.700000 y1 62.217670 x2 13.300000 y2 62.395550 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 13.500000 y1 65.974632 x2 14.500000 y2 66.827782 colour 0
Line x1 13.700000 y1 62.395550 x2 14.300000 y2 62.722477 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 27.337498 x2 40.500000 y2 27.337502 colour 0
Line x1 39.700001 y1 23.704887 x2 40.299999 y2 23.752375 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 40.500000 y1 27.337502 x2 41.500000 y2 27.544268 colour 0
Line x1 40.700001 y1 23.752375 x2 41.299999 y2 23.564182 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 41.500000 y1 27.544268 x2 42.500000 y2 27.544266 colour 0
Line x1 41.700001 y1 23.564182 x2 42.299999 y2 23.118820 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 42.500000 y1 27.544266 x2 43.500000 y2 27.337500 colour 0
Line x1 42.700001 y1 23.118820 x2 43.299999 y2 22.534410 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 43.500000 y1 27.337500 x2 44.500000 y2 27.337498 colour 0
Line x1 43.700001 y1 22.534410 x2 44.299999 y2 22.310282 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 44.500000 y1 27.337498 x2 45.500000 y2 28.239996 colour 0
Line x1 44.700001 y1 22.310282 x2 45.299999 y2 22.911077 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 45.500000 y1 28.239996 x2 46.500000 y2 28.239996 colour 0
Line x1 45.700001 y1 22.911077 x2 46.299999 y2 23.363279 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 46.500000 y1 28.239996 x2 47.500000 y2 27.268816 colour 0
Line x1 46.700001 y1 23.363279 x2 47.299999 y2 23.501680 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 47.500000 y1 27.268816 x2 48.500000 y2 26.070522 colour 0
Line x1 47.700001 y1 23.501680 x2 48.299999 y2 23.429630 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 48.500000 y1 26.070522 x2 49.500000 y2 27.063545 colour 0
Line x1 48.700001 y1 23.429630 x2 49.299999 y2 23.272100 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 49.500000 y1 27.063545 x2 50.500000 y2 30.866421 colour 0
Line x1 49.700001 y1 23.272100 x2 50.299999 y2 23.060772 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 50.500000 y1 30.866421 x2 51.500000 y2 32.029373 colour 0
Line x1 50.700001 y1 23.060772 x2 51.299999 y2 22.790617 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 51.500000 y1 32.029373 x2 52.500000 y2 30.619993 colour 0
Line x1 51.700001 y1 22.790617 x2 52.299999 y2 22.560194 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana5.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 2.500000 y1 68.419998 x2 3.500000 y2 69.829384 colour 0
Line x1 2.700000 y1 60.360195 x2 3.300000 y2 60.585083 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 3.500000 y1 69.829384 x2 4.500000 y2 68.666420 colour 0
Line x1 3.700000 y1 60.585083 x2 4.300000 y2 61.013474 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 4.500000 y1 68.666420 x2 5.500000 y2 65.344269 colour 0
Line x1 4.700000 y1 61.013474 x2 5.300000 y2 61.481312 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 5.500000 y1 65.344269 x2 6.500000 y2 65.344269 colour 0
Line x1 5.700000 y1 61.481312 x2 6.300000 y2 61.902317 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 6.500000 y1 65.344269 x2 7.500000 y2 68.666420 colour 0
Line x1 6.700000 y1 61.902317 x2 7.300000 y2 62.285797 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 7.500000 y1 68.666420 x2 8.500000 y2 69.829376 colour 0
Line x1 7.700000 y1 62.285797 x2 8.300000 y2 62.709629 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 8.500000 y1 69.829376 x2 9.500000 y2 67.239166 colour 0
Line x1 8.700000 y1 62.709629 x2 9.300000 y2 63.136963 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 9.500000 y1 67.239166 x2 10.500000 y2 65.068817 colour 0
Line x1 9.700000 y1 63.136963 x2 10.300000 y2 63.549591 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 10.500000 y1 65.068817 x2 11.500000 y2 63.870525 colour 0
Line x1 10.700000 y1 63.549591 x2 11.300000 y2 63.774986 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 11.500000 y1 63.870525 x2 12.500000 y2 65.221176 colour 0
Line x1 11.700000 y1 63.774986 x2 12.300000 y2 63.695034 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 12.500000 y1 65.221176 x2 13.500000 y2 67.584358 colour 0
Line x1 12.700000 y1 63.695034 x2 13.300000 y2 63.577522 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 13.500000 y1 67.584358 x2 14.500000 y2 67.101669 colour 0
Line x1 13.700000 y1 63.577522 x2 14.300000 y2 63.684277 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 25.650585 x2 40.500000 y2 25.862219 colour 0
Line x1 39.700001 y1 26.883873 x2 40.299999 y2 26.705715 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 40.500000 y1 25.862219 x2 41.500000 y2 27.268816 colour 0
Line x1 40.700001 y1 26.705715 x2 41.299999 y2 26.361605 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 41.500000 y1 27.268816 x2 42.500000 y2 29.439163 colour 0
Line x1 41.700001 y1 26.361605 x2 42.299999 y2 25.989441 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 42.500000 y1 29.439163 x2 43.500000 y2 29.784357 colour 0
Line x1 42.700001 y1 25.989441 x2 43.299999 y2 25.613720 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 43.500000 y1 29.784357 x2 44.500000 y2 27.899023 colour 0
Line x1 43.700001 y1 25.613720 x2 44.299999 y2 25.178097 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 44.500000 y1 27.899023 x2 45.500000 y2 27.544266 colour 0
Line x1 44.700001 y1 25.178097 x2 45.299999 y2 24.749300 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 45.500000 y1 27.544266 x2 46.500000 y2 28.239996 colour 0
Line x1 45.700001 y1 24.749300 x2 46.299999 y2 24.392624 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 46.500000 y1 28.239996 x2 47.500000 y2 28.239998 colour 0
Line x1 46.700001 y1 24.392624 x2 47.299999 y2 24.093620 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 47.500000 y1 28.239998 x2 48.500000 y2 27.337500 colour 0
Line x1 47.700001 y1 24.093620 x2 48.299999 y2 23.838955 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 48.500000 y1 27.337500 x2 49.500000 y2 27.693478 colour 0
Line x1 48.700001 y1 23.838955 x2 49.299999 y2 23.746645 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 49.500000 y1 27.693478 x2 50.500000 y2 28.174627 colour 0
Line x1 49.700001 y1 23.746645 x2 50.299999 y2 23.926151 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 50.500000 y1 28.174627 x2 51.500000 y2 29.456642 colour 0
Line x1 50.700001 y1 23.926151 x2 51.299999 y2 24.253151 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 51.500000 y1 29.456642 x2 52.500000 y2 29.797428 colour 0
Line x1 51.700001 y1 24.253151 x2 52.299999 y2 24.528040 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana6.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 2.500000 y1 67.597427 x2 3.500000 y2 66.674149 colour 0
Line x1 2.700000 y1 62.328041 x2 3.300000 y2 62.416805 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 3.500000 y1 66.674149 x2 4.500000 y2 66.743393 colour 0
Line x1 3.700000 y1 62.416805 x2 4.300000 y2 62.254288 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 4.500000 y1 66.743393 x2 5.500000 y2 65.970032 colour 0
Line x1 4.700000 y1 62.254288 x2 5.300000 y2 61.970638 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 5.500000 y1 65.970032 x2 6.500000 y2 65.899994 colour 0
Line x1 5.700000 y1 61.970638 x2 6.300000 y2 61.661148 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 6.500000 y1 65.899994 x2 7.500000 y2 67.597427 colour 0
Line x1 6.700000 y1 61.661148 x2 7.300000 y2 61.432491 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 7.500000 y1 67.597427 x2 8.500000 y2 68.840935 colour 0
Line x1 7.700000 y1 61.432491 x2 8.300000 y2 61.330074 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 8.500000 y1 68.840935 x2 9.500000 y2 69.829376 colour 0
Line x1 8.700000 y1 61.330074 x2 9.300000 y2 61.328548 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 9.500000 y1 69.829376 x2 10.500000 y2 68.261620 colour 0
Line x1 9.700000 y1 61.328548 x2 10.300000 y2 61.365147 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 10.500000 y1 68.261620 x2 11.500000 y2 65.199997 colour 0
Line x1 10.700000 y1 61.365147 x2 11.300000 y2 61.341957 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 11.500000 y1 65.199997 x2 12.500000 y2 68.261627 colour 0
Line x1 11.700000 y1 61.341957 x2 12.300000 y2 61.208698 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 12.500000 y1 68.261627 x2 13.500000 y2 69.829376 colour 0
Line x1 12.700000 y1 61.208698 x2 13.300000 y2 61.004723 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 13.500000 y1 69.829376 x2 14.500000 y2 68.419998 colour 0
Line x1 13.700000 y1 61.004723 x2 14.300000 y2 60.776646 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 27.337502 x2 40.500000 y2 25.932964 colour 0
Line x1 39.700001 y1 26.760599 x2 40.299999 y2 26.561569 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 40.500000 y1 25.932964 x2 41.500000 y2 23.838167 colour 0
Line x1 40.700001 y1 26.561569 x2 41.299999 y2 26.351309 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 41.500000 y1 23.838167 x2 42.500000 y2 22.519539 colour 0
Line x1 41.700001 y1 26.351309 x2 42.299999 y2 26.186653 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 42.500000 y1 22.519539 x2 43.500000 y2 26.406086 colour 0
Line x1 42.700001 y1 26.186653 x2 43.299999 y2 26.055756 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 43.500000 y1 26.406086 x2 44.500000 y2 28.943394 colour 0
Line x1 43.700001 y1 26.055756 x2 44.299999 y2 25.993536 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 44.500000 y1 28.943394 x2 45.500000 y2 28.239994 colour 0
Line x1 44.700001 y1 25.993536 x2 45.299999 y2 25.990919 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 45.500000 y1 28.239994 x2 46.500000 y2 28.872778 colour 0
Line x1 45.700001 y1 25.990919 x2 46.299999 y2 26.011547 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 46.500000 y1 28.872778 x2 47.500000 y2 28.872778 colour 0
Line x1 46.700001 y1 26.011547 x2 47.299999 y2 25.996109 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 47.500000 y1 28.872778 x2 48.500000 y2 28.590891 colour 0
Line x1 47.700001 y1 25.996109 x2 48.299999 y2 25.948637 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 48.500000 y1 28.590891 x2 49.500000 y2 31.206211 colour 0
Line x1 48.700001 y1 25.948637 x2 49.299999 y2 25.882650 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 49.500000 y1 31.206211 x2 50.500000 y2 33.419994 colour 0
Line x1 49.700001 y1 25.882650 x2 50.299999 y2 25.782412 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 50.500000 y1 33.419994 x2 51.500000 y2 30.866421 colour 0
Line x1 50.700001 y1 25.782412 x2 51.299999 y2 25.683743 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 51.500000 y1 30.866421 x2 52.500000 y2 27.544268 colour 0
Line x1 51.700001 y1 25.683743 x2 52.299999 y2 25.548004 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana7.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 2.500000 y1 65.344269 x2 3.500000 y2 66.555527 colour 0
Line x1 2.700000 y1 63.348003 x2 3.300000 y2 63.123909 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 3.500000 y1 66.555527 x2 4.500000 y2 68.419998 colour 0
Line x1 3.700000 y1 63.123909 x2 4.300000 y2 62.875870 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 4.500000 y1 68.419998 x2 5.500000 y2 67.239166 colour 0
Line x1 4.700000 y1 62.875870 x2 5.300000 y2 62.678192 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 5.500000 y1 67.239166 x2 6.500000 y2 67.665863 colour 0
Line x1 5.700000 y1 62.678192 x2 6.300000 y2 62.539165 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 6.500000 y1 67.665863 x2 7.500000 y2 67.665863 colour 0
Line x1 6.700000 y1 62.539165 x2 7.300000 y2 62.422817 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 7.500000 y1 67.665863 x2 8.500000 y2 66.672775 colour 0
Line x1 7.700000 y1 62.422817 x2 8.300000 y2 62.339989 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 8.500000 y1 66.672775 x2 9.500000 y2 66.672775 colour 0
Line x1 8.700000 y1 62.339989 x2 9.300000 y2 62.321426 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 9.500000 y1 66.672775 x2 10.500000 y2 66.390892 colour 0
Line x1 9.700000 y1 62.321426 x2 10.300000 y2 62.246059 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 10.500000 y1 66.390892 x2 11.500000 y2 69.006210 colour 0
Line x1 10.700000 y1 62.246059 x2 11.300000 y2 61.992630 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 11.500000 y1 69.006210 x2 12.500000 y2 69.006210 colour 0
Line x1 11.700000 y1 61.992630 x2 12.300000 y2 61.625458 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 12.500000 y1 69.006210 x2 13.500000 y2 67.090805 colour 0
Line x1 12.700000 y1 61.625458 x2 13.300000 y2 61.247803 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 13.500000 y1 67.090805 x2 14.500000 y2 66.674149 colour 0
Line x1 13.700000 y1 61.247803 x2 14.300000 y2 60.848763 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Line x1 39.500000 y1 28.239996 x2 40.500000 y2 27.544268 colour 0
Line x1 39.700001 y1 23.841951 x2 40.299999 y2 24.126341 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 40.500000 y1 27.544268 x2 41.500000 y2 26.352673 colour 0
Line x1 40.700001 y1 24.126341 x2 41.299999 y2 24.351051 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 41.500000 y1 26.352673 x2 42.500000 y2 26.992168 colour 0
Line x1 41.700001 y1 24.351051 x2 42.299999 y2 24.436800 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 42.500000 y1 26.992168 x2 43.500000 y2 28.099997 colour 0
Line x1 42.700001 y1 24.436800 x2 43.299999 y2 24.436804 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 43.500000 y1 28.099997 x2 44.500000 y2 27.266476 colour 0
Line x1 43.700001 y1 24.436804 x2 44.299999 y2 24.455681 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 44.500000 y1 27.266476 x2 45.500000 y2 27.337500 colour 0
Line x1 44.700001 y1 24.455681 x2 45.299999 y2 24.478352 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 45.500000 y1 27.337500 x2 46.500000 y2 27.544266 colour 0
Line x1 45.700001 y1 24.478352 x2 46.299999 y2 24.473017 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 46.500000 y1 27.544266 x2 47.500000 y2 27.544266 colour 0
Line x1 46.700001 y1 24.473017 x2 47.299999 y2 24.396658 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 47.500000 y1 27.544266 x2 48.500000 y2 27.337502 colour 0
Line x1 47.700001 y1 24.396658 x2 48.299999 y2 24.241009 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 48.500000 y1 27.337502 x2 49.500000 y2 27.337500 colour 0
Line x1 48.700001 y1 24.241009 x2 49.299999 y2 24.069206 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 49.500000 y1 27.337500 x2 50.500000 y2 28.239994 colour 0
Line x1 49.700001 y1 24.069206 x2 50.299999 y2 23.893618 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 50.500000 y1 28.239994 x2 51.500000 y2 28.590889 colour 0
Line x1 50.700001 y1 23.893618 x2 51.299999 y2 23.721315 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 51.500000 y1 28.590889 x2 52.500000 y2 28.590889 colour 0
Line x1 51.700001 y1 23.721315 x2 52.299999 y2 23.592623 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana8.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 2.500000 y1 66.390892 x2 3.500000 y2 66.743393 colour 0
Line x1 2.700000 y1 61.392624 x2 3.300000 y2 61.275398 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 3.500000 y1 66.743393 x2 4.500000 y2 67.439995 colour 0
Line x1 3.700000 y1 61.275398 x2 4.300000 y2 61.149536 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 4.500000 y1 67.439995 x2 5.500000 y2 66.743401 colour 0
Line x1 4.700000 y1 61.149536 x2 5.300000 y2 61.106289 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 5.500000 y1 66.743401 x2 6.500000 y2 66.390892 colour 0
Line x1 5.700000 y1 61.106289 x2 6.300000 y2 61.153755 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 6.500000 y1 66.390892 x2 7.500000 y2 66.390892 colour 0
Line x1 6.700000 y1 61.153755 x2 7.300000 y2 61.233425 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 7.500000 y1 66.390892 x2 8.500000 y2 66.672783 colour 0
Line x1 7.700000 y1 61.233425 x2 8.300000 y2 61.397869 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 8.500000 y1 66.672783 x2 9.500000 y2 66.534241 colour 0
Line x1 8.700000 y1 61.397869 x2 9.300000 y2 61.571949 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 9.500000 y1 66.534241 x2 10.500000 y2 64.926659 colour 0
Line x1 9.700000 y1 61.571949 x2 10.300000 y2 61.715958 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 10.500000 y1 64.926659 x2 11.500000 y2 64.079994 colour 0
Line x1 10.700000 y1 61.715958 x2 11.300000 y2 61.911022 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 11.500000 y1 64.079994 x2 12.500000 y2 64.926659 colour 0
Line x1 11.700000 y1 61.911022 x2 12.300000 y2 62.111980 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 12.500000 y1 64.926659 x2 13.500000 y2 66.604996 colour 0
Line x1 12.700000 y1 62.111980 x2 13.300000 y2 62.277496 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 13.500000 y1 66.604996 x2 14.500000 y2 66.674149 colour 0
Line x1 13.700000 y1 62.277496 x2 14.300000 y2 62.375381 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
<font color=red> [Part of this file has been deleted for brevity]</font>
Text3 x1 39.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 38.500000 y1 30.619995 x2 39.500000 y2 29.439163 colour 0
Line x1 38.700001 y1 26.183289 x2 39.299999 y2 25.984795 colour 0
Line x1 38.500000 y1 22.079996 x2 39.500000 y2 22.079996 colour 0
Text3 x1 40.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 39.500000 y1 29.439163 x2 40.500000 y2 27.337500 colour 0
Line x1 39.700001 y1 25.984795 x2 40.299999 y2 25.732313 colour 0
Line x1 39.500000 y1 22.079996 x2 40.500000 y2 22.079996 colour 0
Text3 x1 41.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 40.500000 y1 27.337500 x2 41.500000 y2 27.693478 colour 0
Line x1 40.700001 y1 25.732313 x2 41.299999 y2 25.440315 colour 0
Line x1 40.500000 y1 22.079996 x2 41.500000 y2 22.079996 colour 0
Text3 x1 42.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 41.500000 y1 27.693478 x2 42.500000 y2 28.174629 colour 0
Line x1 41.700001 y1 25.440315 x2 42.299999 y2 25.244444 colour 0
Line x1 41.500000 y1 22.079996 x2 42.500000 y2 22.079996 colour 0
Text3 x1 43.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 42.500000 y1 28.174629 x2 43.500000 y2 27.399994 colour 0
Line x1 42.700001 y1 25.244444 x2 43.299999 y2 25.109406 colour 0
Line x1 42.500000 y1 22.079996 x2 43.500000 y2 22.079996 colour 0
Text3 x1 44.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 43.500000 y1 27.399994 x2 44.500000 y2 30.461620 colour 0
Line x1 43.700001 y1 25.109406 x2 44.299999 y2 24.874926 colour 0
Line x1 43.500000 y1 22.079996 x2 44.500000 y2 22.079996 colour 0
Text3 x1 45.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 44.500000 y1 30.461620 x2 45.500000 y2 31.206211 colour 0
Line x1 44.700001 y1 24.874926 x2 45.299999 y2 24.621588 colour 0
Line x1 44.500000 y1 22.079996 x2 45.500000 y2 22.079996 colour 0
Text3 x1 46.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 45.500000 y1 31.206211 x2 46.500000 y2 29.220516 colour 0
Line x1 45.700001 y1 24.621588 x2 46.299999 y2 24.433865 colour 0
Line x1 45.500000 y1 22.079996 x2 46.500000 y2 22.079996 colour 0
Text3 x1 47.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 46.500000 y1 29.220516 x2 47.500000 y2 28.734238 colour 0
Line x1 46.700001 y1 24.433865 x2 47.299999 y2 24.306046 colour 0
Line x1 46.500000 y1 22.079996 x2 47.500000 y2 22.079996 colour 0
Text3 x1 48.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 47.500000 y1 28.734238 x2 48.500000 y2 27.402800 colour 0
Line x1 47.500000 y1 22.079996 x2 48.500000 y2 22.079996 colour 0
Text3 x1 49.000000 y1 18.299995 colour 0 size 9.600000 c
Line x1 48.500000 y1 27.402800 x2 49.500000 y2 27.756945 colour 0
Line x1 48.500000 y1 22.079996 x2 49.500000 y2 22.079996 colour 0
Text3 x1 50.000000 y1 18.299995 colour 0 size 9.600000 a
Line x1 49.500000 y1 27.756945 x2 50.500000 y2 29.081196 colour 0
Line x1 49.500000 y1 22.079996 x2 50.500000 y2 22.079996 colour 0
Text3 x1 51.000000 y1 18.299995 colour 0 size 9.600000 g
Line x1 50.500000 y1 29.081196 x2 51.500000 y2 28.872778 colour 0
Line x1 50.500000 y1 22.079996 x2 51.500000 y2 22.079996 colour 0
Text3 x1 52.000000 y1 18.299995 colour 0 size 9.600000 t
Line x1 51.500000 y1 28.872778 x2 52.500000 y2 30.866421 colour 0
Line x1 51.500000 y1 22.079996 x2 52.500000 y2 22.079996 colour 0
</pre>
</td></tr></table><p>
<p><h3>File: banana9.dat</h3>
<table width="90%"><tr><td bgcolor="#CCFFCC">
<pre>
##Graphic
##Screen x1 -1.000000 y1 0.000000 x2 60.000000 y2 80.000000
Text3 x1 3.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 2.500000 y1 68.666420 x2 3.500000 y2 69.829376 colour 0
Line x1 2.500000 y1 59.879997 x2 3.500000 y2 59.879997 colour 0
Text3 x1 4.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 3.500000 y1 69.829376 x2 4.500000 y2 67.101669 colour 0
Line x1 3.500000 y1 59.879997 x2 4.500000 y2 59.879997 colour 0
Text3 x1 5.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 4.500000 y1 67.101669 x2 5.500000 y2 64.516327 colour 0
Line x1 4.500000 y1 59.879997 x2 5.500000 y2 59.879997 colour 0
Text3 x1 6.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 5.500000 y1 64.516327 x2 6.500000 y2 64.659561 colour 0
Line x1 5.500000 y1 59.879997 x2 6.500000 y2 59.879997 colour 0
Text3 x1 7.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 6.500000 y1 64.659561 x2 7.500000 y2 65.344269 colour 0
Line x1 6.500000 y1 59.879997 x2 7.500000 y2 59.879997 colour 0
Text3 x1 8.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 7.500000 y1 65.344269 x2 8.500000 y2 66.555519 colour 0
Line x1 7.500000 y1 59.879997 x2 8.500000 y2 59.879997 colour 0
Text3 x1 9.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 8.500000 y1 66.555519 x2 9.500000 y2 69.829376 colour 0
Line x1 8.500000 y1 59.879997 x2 9.500000 y2 59.879997 colour 0
Text3 x1 10.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 9.500000 y1 69.829376 x2 10.500000 y2 68.666420 colour 0
Line x1 9.500000 y1 59.879997 x2 10.500000 y2 59.879997 colour 0
Text3 x1 11.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 10.500000 y1 68.666420 x2 11.500000 y2 66.672775 colour 0
Line x1 10.500000 y1 59.879997 x2 11.500000 y2 59.879997 colour 0
Text3 x1 12.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 11.500000 y1 66.672775 x2 12.500000 y2 66.881195 colour 0
Line x1 11.500000 y1 59.879997 x2 12.500000 y2 59.879997 colour 0
Text3 x1 13.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 12.500000 y1 66.881195 x2 13.500000 y2 66.110931 colour 0
Line x1 12.500000 y1 59.879997 x2 13.500000 y2 59.879997 colour 0
Text3 x1 14.000000 y1 56.099998 colour 0 size 9.600000 c
Line x1 13.500000 y1 66.110931 x2 14.500000 y2 64.720856 colour 0
Line x1 13.500000 y1 59.879997 x2 14.500000 y2 59.879997 colour 0
Text3 x1 15.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 14.500000 y1 64.720856 x2 15.500000 y2 64.720856 colour 0
Line x1 14.500000 y1 59.879997 x2 15.500000 y2 59.879997 colour 0
Text3 x1 16.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 15.500000 y1 64.720856 x2 16.500000 y2 66.534241 colour 0
Line x1 15.500000 y1 59.879997 x2 16.500000 y2 59.879997 colour 0
Text3 x1 17.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 16.500000 y1 66.534241 x2 17.500000 y2 66.672775 colour 0
Line x1 16.500000 y1 59.879997 x2 17.500000 y2 59.879997 colour 0
Text3 x1 18.000000 y1 56.099998 colour 0 size 9.600000 t
Line x1 17.500000 y1 66.672775 x2 18.500000 y2 59.879997 colour 0
Line x1 17.500000 y1 59.879997 x2 18.500000 y2 59.879997 colour 0
Text3 x1 19.000000 y1 56.099998 colour 0 size 9.600000 g
Line x1 18.500000 y1 59.879997 x2 19.500000 y2 59.879997 colour 0
Line x1 18.500000 y1 59.879997 x2 19.500000 y2 59.879997 colour 0
Text3 x1 20.000000 y1 56.099998 colour 0 size 9.600000 a
Line x1 19.500000 y1 59.879997 x2 20.500000 y2 59.879997 colour 0
</pre>
</td></tr></table><p>
<p>
The data file consists of three columns separated by blanks or tab
characters.
<p>
The first column is the sequence.
<br>
The second column is the local bending.
<br>
The third is the curvature.
<H2>
Data files
</H2>
<b>banana</b> requires a data file in the EMBOSS data directory
containing the twist, roll and tilt angles. By
default <tt>Eangles_tri.dat</tt> is used, as in Goodsell & Dickerson,
NAR 1994 11;22(24):5497-503 and Drew and Travers (1986) JMB 191, 659.
Some other file may be specified with the <tt>-anglesfile</tt> option.
<p>
The description of this bending model is as follows:
<p>
The roll-tilt-twist parameters of this model are derived purely from
experimental observations of sequence location preferences of base
trimers in small circles of DNA, without reference to solution
techniques that measure curvature <i>per se</i>. For this reason,
they may be the most objective and unbiased parameters of all.
Satchwell, Drew and Travers studied the positioning of DNA sequences
wrappped around nucleosome cores, and in closed circles of
double-helical DNA of comparable size. From the sequence data they
calculated a fractional preference of each base pair triplet for a
position 'facing out', or with the major groove on the concave side of
the curved helix. The sequence GGC, for example, has a 45% preference
for locations on a bent double helix in which its major groove faces
inward and is compressed by the curvature (tending towards positive
roll), whereas sequence AAA has a 36% preference for the opposite
orientation, with major groove facing outward and with minor groove
facing inward and compressed (tending toward negative roll). These
fractional variances have been converted into roll angles in the
following manner: Because x-ray cyrstal structure analysis uniformly
indicates that AA steps are unbent, a zero roll is assigned to the AAA
triplet; an arbitrary maximum roll of 10 degrees is asigned to GGC,
and all other triplets are scaled in a lenear manner. Where % is the
percent-out figure, then:
<p>
<pre>
Roll = 10 degrees * (% + 36)/(45 + 36)
</pre>
<p>
Changing the maximum roll value will scale the entire profile up or
down proportionately, but will not change the shape of the profile.
Peaks will remain peaks, and valleys, valleys. The absolute magnitide
of all the roll values is less important than their relative
magnitude, or the order of roll preference. Twist angles were set to
zero. Because these values correspond to base trimers, the values of
roll, tilt and twist were applied to the first two bases for the
calculation.
<H2>
Notes
</H2>
<p>DNA bending is vital for the winding of DNA in nucleosomes, and the
recognition of particular DNA loci by restriction enzymes, repressors
and other control proteins. For example, the binding of the catabolite
gene activator protein and of the TATA-box recognition protein to a
double DNA helix both rely on major bends in the helix induced at
specific sequence loci. Whether the particular recognition sequences
are bent even in the absence of proteins is not always clear: a
preformed bend in the DNA would form a custom site for protein
binding, or an enhanced bendability of a given sequence would
facilitate protein-induced bending. Sadly, the rules of
sequence-dependent DNA bending remain elusive.</p>
<p>Two models of sequence-dependent bending in free DNA have been
proposed. Nearest neighbor models propose that large-scale measurable
curvature may arise by the accumulation of many small local
deformations in helical twist, roll, tilt and slide at individual
steps between base pairs. In contrast, junction models propose that
bending occurs at the interface between two different structural
variants of the B-DNA double helix.</p>
<p>In both models, sequences which are anisotropically bendable - for
instance, sequences with steps that preferentially bend only to
compress the major groove - will lead to an average structure which is
similar to a sequence with a rigid, intrinsic bend. The default
bending model (see below) used by <b>banana</b> does not distinguish
between these two possibilities.</p>
<p>B-DNA has the special property of having its base pairs very nearly
perpendicular to the overall helix axis. Hence the normal vector to
each base pair can be taken as representing the local helix at that
point, and curvature and bending can be studied simply by observing
the behaviour of the normal vectors from one base to another along the
helix. This is both easy to calculate and simple to interpret. This
program display the magnitude of bending and curvature at each point
along the sequence. It is not intended as a substitute for more
elaborate three-dimensional trajectory calculations, but only to
express bending tendencies as a function of sequence. This affords
easy screening for regions of a given DNA sequence where phased local
bends add constructively to form an overall curve.</p>
<p>The terms bending and curvature are used in a restricted sense
here. Bending of DNA describes the tendency for successive base pairs
to be non-parallel in an additive manner over several base pair
steps. Bending most commonly is produced by a rolling of adjacent base
pairs over one another about thir long axis, although in principle,
tilting of base pairs about their short axis could make a
contribution. In contrast curvature of DNA represents the tendency of
the helix axis to follow a non-linear pathway over an appreciable
length, in a manner that contributes to macroscopic behaviour such as
gel retardation or ease of cyclization into DNA minicircles.</p>
<p>The distinction between local bending and macroscopic curvature is
illustrated (poorly) in the following figure (see figure 1 of the
Goodsell & Dickerson paper for a better view).</p>
<pre>
bend bend bend
- - -
uncurved / \ / \ / \
-----/ \-/ \-/ \-----
bend bend
bend bend
/-------\
/ \
curved |bend |bend
| |
| |
</pre>
<p>X-ray crystal structure analysis cannot show curvature, but can and
often does show local bending. Conversely, gel electrophoresis and
cyclization kinetics can detect macroscopic curvature, but not
bending. A complete knowledge of local bending would permit the
precise calculation of curvature, but a knowledge of macroscopic
curvature alone does not allow one to specify precisely the local
bending elements that produce it. This paradox has plagued the DNA
conformation field resembles the familiar problem of classical
statistical mechanics, where a complete knowledge of positions and
velocities of all molecules of a gas would allow one to calculate bulk
properties such as temperature, pressure and volume, but knowledge of
bulk properties cannot lead one to precise molecular positions. Many
molecular arrangements can produce identical bulk properties, and in
the present case, many bending combinations can produce identical
macroscopic curvature.</p>
<p>The consensus sequence for DNA bending is 5 As and 5 non-As
alternating. "N" is an ambiguity code for any base, and "B" is the
ambiguity code for "not A" so "BANANA" is itself a bent sequence -
hence the name of this program.</p>
<H2>
References
</H2>
<ol>
<li> Goodsell, D.S. & Dickerson, R.E. (1994) "Bending and Curvature
Calculations in B-DNA" Nucl. Acids. Res. 22, 5497-5503.
<li>Drew and
Travers (1986) JMB 191, 659
</ol>
<H2>
Warnings
</H2>
Only ACTG allowed, if sequence contains a non ACTG character then the
program will exit with a fatal error message.
<H2>
Diagnostic Error Messages
</H2>
None.
<H2>
Exit status
</H2>
0 if successful.
<H2>
Known bugs
</H2>
None.
<h2><a name="See also">See also</a></h2>
<table border cellpadding=4 bgcolor="#FFFFF0">
<tr><th>Program name</th>
<th>Description</th></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="chaos.html">chaos</a></td>
<td>Draw a chaos game representation plot for a nucleotide sequence</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="dan.html">dan</a></td>
<td>Calculate nucleic acid melting temperature</td>
</tr>
<tr>
<td><a href="density.html">density</a></td>
<td>Draw a nucleic acid density plot</td>
</tr>
<tr>
<td><a href="einverted.html">einverted</a></td>
<td>Find inverted repeats in nucleotide sequences</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="isochore.html">isochore</a></td>
<td>Plot isochores in DNA sequences</td>
</tr>
<tr>
<td><a href="sirna.html">sirna</a></td>
<td>Find siRNA duplexes in mRNA</td>
</tr>
<tr>
<td><a href="wordcount.html">wordcount</a></td>
<td>Count and extract unique words in molecular sequence(s)</td>
</tr>
</table>
<H2>
Author(s)
</H2>
Ian Longden formerly at:
<br>
Sanger Institute, Wellcome Trust Genome Campus, Hinxton,
Cambridge, CB10 1SA, UK.
<p>
Please report all bugs to the EMBOSS bug team (emboss-bug © emboss.open-bio.org) not to the original author.
<H2>
History
</H2>
The original program ('BEND') is described in the Goodsell & Dickerson paper.
Created 1999/06/09.
<H2>
Target users
</H2>
This program is intended to be used by everyone and everything, from naive users to embedded scripts.
<H2>
Comments
</H2>
None
</BODY>
</HTML>
|