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
|
<!-- header fragment for html documentation -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META NAME="description" CONTENT="Estimation of population parameters using genetic data usi
ng a maximum likelihood approach with Metropolis-Hastings Monte Carlo Markov chain importanc
e sampling">
<META NAME="keywords" CONTENT="MCMC, Markov chain, Monte Carlo, Metropolis-Hastings, populat
ion, parameters, migration rate, population size, recombination rate, growth rate, maximum likelihood">
<TITLE>LAMARC Documentation: XML data description</title>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<!-- coalescent, coalescence, Markov chain Monte Carlo simulation, migration rate, effective
population size, recombination rate, maximum likelihood -->
<P>(<A HREF="converter_cmd.html">Previous</A> | <A
HREF="index.html">Contents</A> | <A HREF="menu.html">Next</A>)</P>
<H2>XML Input Format for LAMARC</H2>
<P> You will probably not need to directly look at or edit LAMARC's XML
input files, because these are generated for you by our file conversion
programs. However, in rare cases, you may need or want to write or edit
these files by hand. Here is the necessary information for doing so.</P>
<P> We are not currently supporting all the nice abilities that would
really justify using XML, but we hope to do so in the future.</P>
<P> <B>Please</B> be careful not to save the XML file in Microsoft Word or
another word processor format. This will fill it with invisible
editing characters, and it will not work. Always use the "save
as plain text" option of your word processor. If a previously
successful input file stops working, check whether you
have accidentally saved it as formatted text. This is the #1
cause of input-file problems in both PHYLIP and LAMARC today.</P>
<P> Also, be aware that some word processors (including at least
one version of MS Word) will automatically parse XML text, reducing your
input data file to a disorganized heap of data. If this happens,
you can try giving your file an extension of .txt. If that doesn't
work, we have no suggestions other than using a different word processor. </P>
<H3> Index</H3>
<UL>
<LI><A HREF="xmlinput.html#overview">Overview</A></LI>
<LI><A HREF="xmlinput.html#data">Data Section</A></LI>
<LI><A HREF="xmlinput.html#datamodel">Data Models</A></LI>
<LI><A HREF="xmlinput.html#forces">Evolutionary Forces</A></LI>
<LI><A HREF="xmlinput.html#chains">Chain Control</A></LI>
<LI><A HREF="xmlinput.html#options">User Options</A></LI>
<LI><A HREF="xmlinput.html#mapping">Trait Mapping</A></LI>
</UL>
<H3><A NAME="overview"> Overview:</A></H3>
<P> XML is a very simple minded language, so you have to be methodical as it is easily confused. Best approach is to start with a functioning script, either the one generated for you by LAMARC or one of examples included in this web site. (If you find one that doesn't work, <A HREF="MAILTO:lamarc@u.washington.edu">
please tell us</A>. We've tested them, but they're easily broken.) Starting from an appropriate script, incrementally modify it to your needs, testing as you go.</p>
<p>Looking at our examples, you'll note that each level of tag is indented 4 spaces further than the next higher level tag. This not required by the XML compiler (it ignores all those spaces) but is invaluable when trying to debug a malfunctioning script. <u>We highly recommend</u> you follow this convention. It will save you many hours of pain (don't ask how we know that :-). One thing to particularly avoid is XML that is indented differently from its meaning. This leads to exceptionally hard-to-find errors. </p>
<p>If you are unfortunate enough to start with an XML script that is not properly indented, it is worth your time to go through and indent it properly. Not only will you understand it better, the indenting it will make modifications much easier.</p>
<p>Each bit of information in the input file is surrounded by
a beginning and ending tag. For example, the whole input
file is surrounded by <lamarc> and </lamarc>, and the data
section is surrounded by <data> and </data>. Tags must
come in <tag> </tag> pairs and must be strictly nested, so
these are legal:</P>
<P> <font color="#0000FF"><blue> </font> <font color="#FF0000"><red> </red> </font> <font color="#0000FF"></blue></font></P>
<P> <font color="#FF0000"><red> </red> </font><font color="#0000FF"> <blue> </blue></font></P>
<P> but this is illegal:</P>
<P><font color="#0000FF"> <blue> </font><font color="#FF0000"><red> </font><font color="#0000FF"></blue> </font><font color="#FF0000"></red></font></P>
<P> The symbol "<!--" starts a comment, and the symbol "-->" ends
it. Anything inside a comment is ignored. You can use comment
symbols to temporarily remove parts of your input file that you
don't want, as long as what remains is legal. </P>
<P> Some tags require additional information, such as the name of
a population. This is done with "attributes":</P>
<P> <population name="Washington DC"></P>
<P> The quotes are required.</P>
<H3><A NAME="data"> Data section </A></H3>
<P> The data section contains your actual molecular data, and additional
information used to interpret it. It is required to be present,
and is enclosed in <data> tags.</P>
<P> LAMARC divides molecular data into "regions". A region is all the
available genetic information that is closely linked on the same
chromosome and has a known map.
Use a single region for data which is one contiguous stretch, so that
it would be meaningful to calculate recombination rates along it.
Use multiple regions for data composed of several
disconnected bits or bits whose connections are not known. Regions
are enclosed in the <region> tag, and at least one must be present.
The region's name can be added in an optional name attribute.</P>
<P> The optional tag <effective-popsize> may be used to specify
a different relative effective population size for each <region>.
For example, data from nuclear chromosomes of a diploid organism reflect
an effective population size four times larger than data from the
mitochondrion of the same organism. Data from sex chromosomes also have
unique effective population sizes--the relative effective population size
ratios for a non-sex chromosome to an X chromosome to a Y chromosome is
4:3:1. Be aware that the parameter estimates produced by LAMARC will be
scaled proportional to an effective population size of 1. That is, if
you tell LAMARC that you have two regions, one with an effective population
size of 4 and one with an effective population size of 3, your final
overall estimate of Θ will be lowered to correspond to an
effective population size of 1. If you are combining mitochondrial
and autosomal data in diploids into a joint analysis, set your
relative effective population sizes to 0.25 and 1, respectively,
if you want the joint Θ estimate to be reported using the
autosomal scale; otherwise, set these to 1 and 4, respectively,
to obtain Θ using the mitochondrial scale.</P>
<P> Within a region there may be several "contiguous segments." Segments
are stretches of genetic information which are linked to one another
but need separate handling. For instance, if we have a stretch of
DNA (modelled by a nucleotide substitution model) and an adjacent
microsatellite (modelled by a stepwise model) they need to be in the
same region as they are linked, but cannot be in the same segment as
they require different mutational models. Information about the
relative position of segments is placed in a <spacing> tag.</P>
<P> Each segment is indicated by a <block> tag, which can
also give information about the position of the segment itself,
and (particularly for non-contiguous markers such as SNPs and
microsatellites) the positions of the markers within the segment.</P>
<P> Within <block>, the <length> tag indicates the total length
of the segment. This is important for SNPs in particular
because correct interpretation of the
markers requires knowledge of how many non-markers were surveyed.
The <map-position> tag gives the position of this segment on
an overall map of the region. The map position is the point at which
sequencing or scanning began, even if that is not the zero point of
your segment's internal numbering. For example, if you sequenced
a gene from upstream position -45 to downstream position 500,
your map position should tell where position -45 is on the overall
map of the region.
The <locations> tag
encloses a list of marker positions within the region; for example,
the tag <locations> -10 7 18 22 </locations> indicates
that the four markers are at positions -10, 7, 18 and 22 with respect
to the segment's numbering system. The <offset> tag
gives the origin of the segment's numbering system with respect
to the boundaries of the region. For example, if you began sequencing
at position -45 with regard to your chosen numbering system (perhaps
you have begun your numbering at a gene's start codon but obtained
upstream sequence), your <offset> would be -45. If no offset
is given, the offset is assumed to be zero. </P>
<P> Within each region you can list various populations. If you list
<population> tags under more than one region, they will be matched
by means of their name attributes, so the names are not optional.
Use of good names here will also make your output much
easier to interpret!</P>
<a name="panel-xml">
<P> If a <a href="panels.html">SNP panel</a> was used to generate your
input data, the panel size will be specified under the <population> tags.
Panel members are represented as additional tips in the coalescence tree that have unknown data.
All that is needed is the number of tips, though optionally one can name the panel.
Here is a fragment that shows the panel correction information for one of two populations.
</p></a>
<P><PRE>
<lamarc>
...
<data>
<region name="Alcohol dehydrogenase">
<population name="Seattle">
<panel name="adhpanel">
<panel-size> 6 </panel-size>
</panel>
<individual> ... </individual>
...
</population>
<population>
...
</population>
</region>
</data>
</PRE>
</P>
<P> Within each population you can list various individuals. An
individual represents all the data for that region that comes from
a single biological individual, which may be one, two, or more
sets of data depending on how you obtained your data. For
example, an individual might consist of one mtDNA sequence, or
two nuclear DNA sequences. Individuals can have a name attribute,
but it is optional; the <individual> tag itself is required.</P>
<P> Within each individual, you can have one or more <sample> tags
indicating the actual sequences. For example, an individual
with one mtDNA sequence would have a single <sample> tag for it,
which would contain this sequence. An individual with
two nuclear DNA sequences would contain two <sample> tags.
While the two sequences are treated as separate tips of the
tree, their identity as a single individual is important if haplotypes
are to be considered. </P>
<A NAME="phase"><P> Optionally, an individual can have a <phase> tag, indicating
uncertainty about the phase of certain sites. For example, if you
have only genotypic data, you will want to indicate uncertainty
about the phase of all sites. The <phase> tag has an obligatory
attribute, "type," which can be either "known" or "unknown." If
the type is "known," the list of sites which follows is the list
of all sites whose phase is known, and therefore need not be
reconsidered during the run. If the type is "unknown," the list
which follows is the list of all sites whose phase is unknown,
and thus should be reconsidered. A simple way to code a sequence
of genotypic data with no phase information is <phase type="known">
</phase>.
It is not necessary to specify homozygous sites as to their
phase-known or phase-unknown status, as they will not be reconsidered
anyway.</P>
<P>Valid values for the phase tag are site numbers between the value of the
offset for that segment (which defaults to 1) and the length of the segment
plus the offset. If the segment is longer than the number of markers you
have (as is the case for SNP data), valid values here are the same values
used for the 'locations' tag in the 'block' section (above). (Note that
versions of LAMARC prior to 2.1 did not use this numbering scheme, and
instead required you to indicate the particular marker number, starting from
0, that was phased or unphased. Old LAMARC infiles will give errors or fail
to run properly using the 2.1 system.)</P>
<P> The sequences themselves are enclosed in <datablock> tags,
one per segment per sample.
Currently we support DNA, RNA, SNP, and microsatellite data.
Each datablock must have an attribute indicating the type of data
it contains. Use type="DNA" for full DNA or RNA sequences,
type="SNP" for SNP sequences, and type="Microsat" for microsatellites.
Please do not mislabel SNPs as full DNA, because the estimates of
population size will become vastly overblown. </P>
<P> Sequence data must be aligned and of the same length for all
samples within a region. "Unknown nucleotide" codes (X, N or -) can
be used to fill in missing or unknown sequence. There is no point
in including individuals for whom the entire sequence is unknown,
as they add nothing to the analysis (and will slow it down).
The full IUPAC nucleotide ambiguity code is available, and DNA and
RNA are both accepted (and treated identically). Upper- and lowercase
nucleotide symbols are treated equivalently. Deletions should be
coded as unknown, and will be treated as unknown; no attempt is made to
model the insertion/deletion process.</P>
<P> Here is a minimal DNA data block describing a single region,
a single segment, a
single population, and two individuals with a single haplotype each.
Note that while the two blocks of data are differently formatted,
they contain the same number of bases; this is required since all
blocks corresponding to a single segment must contain the same
number of markers. If your
sequences for a given segment are of different lengths, they must be padded out with
unknown-nucleotide codes.</P>
<P>
<PRE>
<data>
<region name="Alcohol dehydrogenase">
<population name="Seattle">
<individual name="Mary">
<sample>
<datablock type="DNA">
CTTGTAACCTAATGGCTTCCGAGATGGACTAGTGAGCCGCTTTCTC
TACACCAACGCAGCACATGACGGTCTTACATGCGGAGCCCGCTCAA
</datablock>
</sample>
</individual>
<individual name="Jon">
<sample>
<datablock type="DNA">
CTTGTAACCTAATGGCTTCCGA
GATGGACTAGTGAGCCGCTTTCTC
TACACCAACGCAGCACATGACG
GTCTTACATGCGGAGCCCGCTCAA
</datablock>
</sample>
</individual>
</population>
</region>
</data>
</PRE> </P>
<P>Microsatellite data are coded as the number of repeats, with "?"
standing for unknown data. Successive microsatellites within the
same region are separated by blank spaces. Here is a microsatellite
data block which also illustrates the use of multiple samples per
individual. In this example, "Mary" is a heterozygote for the
second microsatellite and a homozygote for the other five.</P>
<P><PRE>
<data>
<region name="Alcohol dehydrogenase">
<population name="Seattle">
<individual name="Mary">
<sample>
<datablock type="Microsat">
7 8 14 7 9 21
</datablock>
</sample>
<sample>
<datablock type="Microsat">
7 9 14 7 9 21
</datablock>
</sample>
</individual>
<individual name="Jon">
<sample>
<datablock type="Microsat">
7 9 14 7 10 23
</datablock>
</sample>
<sample>
<datablock type="Microsat">
8 9 13 7 ? 23
</datablock>
</sample>
</individual>
</population>
</region>
</data>
</PRE> </P>
<H3><A NAME="datamodel"> Data Model</A> </H3>
<P> A <region> can contain models <model> to be used to interpret its
data. One model should be provided per segment within the region,
in the same order that the segments are listed.
You can also provide a global <model> (inside the <lamarc>
tag) which will be used for any region that does not provide
its own models. Only models in these two locations will be used by the program;
if both are present, the regional models will
be used in preference to the global one. The model chosen must
be appropriate for the data type chosen. If no model
is provided, then a default model of the appropriate datatype will be used by
the program--nucleotides use the Felsenstein '84 model, and microsatellites
use the Brownian motion model.
</P>
<P> Several tags are common to all models. </P>
<P> The <relative-murate> tag is used to specify segment-specific
mutation rates. This is essential if very different data types are
combined in one analysis. For example, including DNA and microsat
data without taking account of the fact that microsats mutate
thousands of times more rapidly than the single-base substitution
rate will lead to a nonsense overall estimate. If all of your
segments have the same expected mutation rate, this tag is not
needed. When it is needed, you should chose some data type as
the standard and set its relative rate to 1, and give all other
data types in relation to that standard. The estimated parameters
will then also be in terms of your standard.</P>
<P> Be aware that the parameter
estimates produced by LAMARC will be scaled proportional to a
segment of relative mutation rate 1, even if no such segment is
included in the data. That is, if you tell LAMARC that you have
two segments, one with a relative mutation rate of 5 and the other
with a relative mutation rate of 50, your final estimate of Θ
will describe a fictional segment with a relative mutation rate
of 1, and you will need to multiply by 5 or 50 to find the
Θ of your actual segments.</P>
<P> If you believe that your segments vary in mutation rate
according to a gamma distribution, you may wish to use the
gamma-estimation facilities of LAMARC instead of the
<relative-murate> tag. Relative mutation rate is designed
for the case where different segments or regions fall into
clearly distinct groups, known in advance, such as DNA versus
microsats or introns versus exons. </P>
<P> The <categories> tag encloses information about variable rate
categories per site (or microsat). Within it, <num-categories> gives
the number of rate categories, <rates> gives the relative mutation
rate of each category, and <probabilities> gives the probability
that a site is in each category. The <probabilities> must add
up to 1.0, and there must be a rate and a probability for each
category. The <autocorrelation> tag encloses information about the
average length of a run of sites (or microsats) with the same rate. For
example, if you believe your data consists of runs averaging
100 sites with the same rate, you would set it to 100.0.
If you wish to assume that there is no autocorrelation of rates,
set this value to 1.0. (We expect 1.0 to be an appropriate
value for microsatellites in most cases.) </P>
<A NAME="normalize"><P> The <normalize> tag </a> controls internal
normalization of data likelihood values. Data likelihoods can be extremely
small, and may be subject to underflow (that is, rounded down to zero,
resulting in a loss of information). Normalization attempts to buffer
them against underflow at the cost of making the program run more slowly.
Versions 1.2 and above of LAMARC turn on normalization automatically if they encounter
underflow, so this tag should almost always be set to "false," and we may
remove it in a future version. If you are sure your data set will need
normalization (extremely polymorphic data, especially microsatellites, or
extremely large data sets), then there is no harm in turning it on
to free the program from the task of diagnosing the need for normalization.</P>
<P> The remaining tags are specific to the particular data model. The
current selection of models is described below. </P>
<H4> Nucleotide models </H4>
<P> Lamarc offers a choice of two mutational models for DNA, RNA, and
SNP data. The simpler (and slightly quicker) model is the model
of Felsenstein 1984 (F84), which allows differing nucleotide frequencies
and differing rates of transition versus transversion. The more
general model is the General Time-Reversible model (GTR), which allows
every pair of nucleotides to have a characteristic mutation rate, as
well as allowing differing nucleotide frequencies.<P>
<P>Simpler models such as Jukes-Cantor or Kimura Two-Parameter
can be obtained by correct choice of parameters to the two models
given. If a model can be expressed as a simplification of F84, it
will run faster than the same model expressed as a simplification
of GTR.<P>
<P> The difference between F84 and GTR is that F84 expresses its
mutation rate information as a single parameter, the ttratio (ratio
of transitions to transversions) whereas GTR uses six parameters
(relative mutation rates between each pair of bases).
<P> Here is a sample F84 data model, which could appear either globally
or within a region.</P>
<P>
<PRE>
<model name="F84">
<base-freqs> 0.25 0.25 0.25 0.25 </base-freqs>
<per-base-error-rate> 0.001 </per-base-error-rate>
<ttratio> 2.0 </ttratio>
<categories>
<num-categories> 2 </num-categories>
<rates> 1.0 10.0 </rates>
<probabilities> 0.8 0.2 </probabilities>
<autocorrelation> 5.0 </autocorrelation>
</categories>
<normalize> false </normalize>
</model>
</PRE> </P>
<P> To change this to a GTR model, remove the ttratio, change the model
name, and add a line for the mutational rates. We recommend using
an external tool such as PAUP* with Modeltest to estimate appropriate
GTR rates.</P>
<P>
<PRE>
<model name="GTR">
<base-freqs> 0.25 0.25 0.25 0.25 </base-freqs>
<per-base-error-rate> 0.001 </per-base-error-rate>
<gtr-rates> 5.4050 147.7765 4.2745 3.5801 96.3678 1.0 </gtr-rates>
<categories>
<num-categories> 2 </num-categories>
<rates> 1.0 10.0 </rates>
<probabilities> 0.8 0.2 </probabilities>
<autocorrelation> 5.0 </autocorrelation>
</categories>
<normalize> false </normalize>
</model>
</PRE></P>
<P> The <base-freqs> tag sets the frequencies of the nucleotides
A, C, G, and T (or U) in that order. They must be strictly greater than zero,
and must add to 1. Alternatively, instead of four frequencies, you can
enter the keyword "calculated," which will cause the program to calculate
nucleotide frequencies based on your input data. This will not work if
one or more nucleotides are missing from your input data; you must explicitly
set four non-zero frequencies in such cases. We also recommend that
you always set the base frequencies explicitly when using the GTR model. </P>
<P> The <per-base-error-rate> tag gives the rate at which each individual
nucleotide should be assumed to have been miss-called. A value of 0 indicates
that all were sequenced correctly. A value of 0.001 indicates one in one
thousand is incorrect.
If not present, the value is assumed to be 0.
This functionality is in beta test as of December, 2009.
</P>
<P> The <ttratio> tag (F84 model only) gives the ratio of
transitions to transversions.
The Jukes-Cantor model (no transition bias) would correspond
to a <ttratio> of 0.5, but due to a limitation in the algorithm
this (and lower) values are illegal. If you wish to
use a Jukes-Cantor model, set <ttratio> to a very slightly
larger number such as 0.500001.</P>
<P> The <gtr-rates> tag (GTR model only) gives the
relative mutation rate of each
pair of nucleotides, in the order AC, AG, AT, CG, CT, GT. Only relative
values are important. These are rates as output by PAUP*, before
consideration of nucleotide frequencies. </P>
<H4> Microsatellite models </H4>
<P>For microsatellite data we offer four models: the stepwise model of
Beerli and Felsenstein (1999), the Brownian model of Beerli and Felsenstein
(in preparation), a simple K-Allele model similar in concept to the
Jukes-Cantor DNA model but for arbitrary K>1, and a mixed K-Allele/Stepwise
model where both stepwise and K-Allele-type mutations are allowed at a
relative ratio.</P>
<P>The stepwise model assumes that microsatellites evolve
via stepwise changes and are constrained not to go below one repeat.
This model currently has no unique user-settable parameters; it deduces
its required number of bins from the data, and always considers a
window of 10 steps on either side of the most extreme data elements
unless this is found to overlap zero.</P>
<P>Here is a sample data model which could appear either globally
or within a region:</P>
<P><PRE>
<model name="Stepwise">
<categories>
<num-categories> 2 </num-categories>
<rates> 1.0 10.0 </rates>
<probabilities> 0.8 0.2 </probabilities>
<autocorrelation> 1.0 </autocorrelation>
</categories>
<normalize> false </normalize>
</model>
</PRE></P>
<P>The Brownian model assumes that the changes in microsatellite
length can be approximated by a continuous distribution (we use a Normal).
This model currently has no unique user-settable parameters. It
is much faster than the stepwise model, and appears to work well,
except for genealogies with very short branches (such as those
associated with very small population sizes) on which it shows a significant
upward bias. When using this model, be on the lookout for data
log-likelihoods of zero in the runtime reports (these are labelled
"Data lnL"). If many of these
appear, they are an indication that your population sizes are too
small for safe use of the Brownian approximation.</P>
<P><PRE>
<model name="Brownian">
<categories>
<num-categories> 2 </num-categories>
<rates> 1.0 10.0 </rates>
<probabilities> 0.8 0.2 </probabilities>
<autocorrelation> 1.0 </autocorrelation>
</categories>
<normalize> false </normalize>
</model>
</PRE></P>
<P> The K-Allele model assumes that the observed alleles represent
all possible alleles and that mutation is equally likely among any
pair of alleles. It is probably not appropriate for most microsatellite
data, and is provided mainly for its ability to handle data types
otherwise not analyzable with Lamarc, such as elecrophoretic or
indel data.
The K-Allele model can also
be used to assess how severe an effect violation of the Stepwise
model's assumptions might have on the results, since it is essentially
the opposite of the Stepwise model. If both have similar results,
the results are probably quite insensitive to the details of the
microsatellite mutational process.</P>
<P> A K-Allele model block looks just like the Brownian one with
a different name:</P>
<P><PRE>
<model name="KAllele">
<categories>
<num-categories> 2 </num-categories>
<rates> 1.0 10.0 </rates>
<probabilities> 0.8 0.2 </probabilities>
<autocorrelation> 1.0 </autocorrelation>
</categories>
<normalize> false </normalize>
</model>
</PRE></P>
<P> The Mixed K-Allele/Stepwise considers both Stepwise mutational
possibilities and K-Allele mutational possibilities. The
relative weight of the two types of mutation is given by the
parameter 'percent_stepwise'.
The allele range considered for the K-Allele changes is the
same as that for the Stepwise model (that is, all alleles within
a certain range of any observed allele) and will therefore
include some alleles never observed in the data.
The
initial percent_stepwise is set by the user, and if the 'optimize' option
is set, it is reset at the end of every chain to its optimum
value based on the final genealogy of that chain,
as calculated using the bisection approach.</P>
<P>Because this model incorporates both a K-Allele and Stepwise approach,
it should only be used for data for which both of those models are
legal, namely microsatellite data.</P>
<P> A Mixed K-Allele/Stepwise model block includes two new tags, 'alpha'
(meaning the percent_stepwise parameter),
and 'optimize', which should be on the same level as 'categories' and
'normalize'.</P>
<P><PRE>
<model name="MixedKS">
<categories>
<num-categories> 2 </num-categories>
<rates> 1.0 10.0 </rates>
<probabilities> 0.8 0.2 </probabilities>
<autocorrelation> 1.0 </autocorrelation>
</categories>
<normalize> false </normalize>
<alpha> 0.3 </alpha>
<optimize> false </optimize>
</model>
</PRE></P>
<H3><A Name="forces"> Evolutionary Forces</A></H3>
<P> The <forces> tag encloses information about each evolutionary force
to be considered in the analysis. The <forces> section should not
specify forces that make no sense--for example, migration is not
allowed if there is only one population, and recombination is not
allowed if there is only one site.
</P>
<P> The force tags are <coalescence>, <migration>, <recombination>,
<growth>, <gamma-over-regions> and the pair <divergence-migration> and <divergence>. In this version of Lamarc.
<coalescence> is required, the others are optional (though if multiple populations
are specified, either <migration> or the <divergence-migration>, <divergence> pair is required).
</P>
<P>The gamma-over-regions "force" may only be applied
to data spread over multiple, unlinked genomic regions. This "force" assumes the
relative mutation rates over unlinked genomic regions are gamma-distributed, and
causes Lamarc to simultaneously infer the shape of the gamma distribution which best fits
the data. More information about this can be found <A HREF="gamma.html">here</A>.
Please note that Lamarc is unable to co-estimate the shape of the gamma distribution
and population growth rates. Lamarc will accept input files containing either the
tag <growth> or the tag <gamma-over-regions>, but not both.
</P>
<P> Divergence can only be defined if there are two or more populations in the data. If the user wishes to estimate Divergence, they must define the relationships between the populations in the input data by defining parents. This is most easily done in the <a href="converter.html">data file converter</a>, but can be done directly in the XML as shown <A HREF="xmlinput.html#divergence">below</A>.
</P>
<P>For each force tag, the following information can be included:
</P>
<P> <start-values> contains a space-delimited list of the starting
values of the parameters for that force. For example, in a
3-population case, you would provide 3 starting values for population
Thetas, and 9 starting values for immigration rates. In the migration
case, diagonal entries (meaningless values for migration from
a population to itself) can be indicated with dashes instead of
zeros, if desired.
</P>
<P> <method> indicates the algorithms for computing starting values for
each parameter. This can be "User," meaning that the user-specified
values should be used. Other options are "FST" to set migration
parameters using the <i>F<sub>ST</sub></i> algorithm, and "Watterson" to set Thetas using
the method of Watterson, We do not currently provide algorithms to
estimate starting recombination or growth rates, or a starting value
for the single parameter of the gamma-over-regions "force." (None of the available
algorithms seemed to perform well enough to be helpful.) If you are
going to specify any methods, you need to specify one for each parameter.
</P>
<P> It is sometimes helpful to set certain parameters to "User" even if
you mainly intend to use FST and Watterson. FST, in particular,
will fail in certain cases. We use an arbitrary default value when
FST fails, but you may be able to provide a better value than this
default.
</P>
<P> <max-events> gives a maximum for the number of events in the
tree that are generated by this force. For example, for the
migration force it gives the maximum total number of migrations.
If a tree violates any of these maxima, that tree will be discarded.
Discarded trees are noted in the runtime reports and, if verbose
output is requested, in the output file. This option is not useful
(though it is harmless) for coalescence, growth, and gamma-over-regions.</P>
<P> You may wish to set the maxima relatively low if the program is
running out of space or slowing down tremendously. However, if the
maxima are encountered often (look at the runtime report to check),
the estimate of parameters for that force will tend to be biased
downward.</P>
<P> <profiles> gives the type of profile likelihood to be computed for
each parameter. The options are "percentile," which will compute
profile likelihoods at selected percentiles of the distribution;
"fixed," which will compute profile likelihoods at fixed multiples
of the maximum-likelihood parameter value; and "none," which will
compute no profiles. The profiles of a given run may be a mix
of "percentile," "fixed," and "none," but you cannot
use both "percentile" and "fixed" percentiles for the same force.</P>
<P> In a likelihood analysis, percentile profiles are very time-consuming.
If you are not interested in a particular parameter, consider turning off
its profiling, and if the overall run is still too slow, consider fixed
rather than percentile profiles. If you are only interested in the 95%
support interval, you may also change the output file <A
HREF="#verbosity">verbosity</a> to 'concise', which causes only those
intervals to be calculated and output (decreasing the time spent profiling
by approximately a factor of 5). In a Bayesian analysis, profiling is simply a matter
of reading off values from the produced posterior probability curve, so the
more-informative percentile profiles should be the profile type of choice
for most users.</P>
<P> The profile line, if present, must have one entry per parameter for
that force (for example, a three-population case must have nine
entries for migration profiling). It does not matter what profile
type you specify for the "diagonal" migration rates.</P>
<P> An example <forces> block for a case with two populations and migration:</P>
<P>
<PRE>
<forces>
<coalescence>
<start-values> 0.01 0.03 </start-values>
<method> Watterson Watterson </method>
<profiles> fixed fixed </profiles>
</coalescence>
<migration>
<start-values> - 1.2 1.8 - </start-values>
<method> - FST User User - </method>
<max-events> 1000 </max-events>
<profiles> - none fixed - </profiles>
</migration>
<recombination>
<start-values> 0.04 </start-values>
<method> User </method>
<max-events> 1000 </max-events>
<profiles> none </profiles>
</recombination>
</forces>
</PRE> </P>
<H4><A Name="divergence">Divergence</A></H4>
<P> Divergence introduces population divergence into migration, so things get much more complex. The populations are combined pairwise, so if there are three measured populations, there will be two ancestors. Once the first ancestor is defined, migration cannot happen between the two populations subsumed into that ancestor and the third population, as those two populations no longer exist. This is shown graphically on the <a href="divergence.html">Divergence</a> page. As a result you need to define two forces <divergence> and <divergence-migration>. </P>
<P>Besides all the standard force tags <divergence> also specifies how the measured populations and their ancestors are related. This is done creating the <population-tree> which explicitly defines, using <epoch-boundary> tags, a pair of <new-populations> and their <ancestor>. That <ancestor> name can then be used as a <new-populations> member for an earlier <ancestor>.</P>
<P><divergence-migration> defines the migrations between the populations and ancestors (it has exactly the same format as <migration> but is, of course, much larger because of the additional rows and columns required to specify migration to and from the ancestor populations). Below is the XML for the 3 population example on the <a href="divergence.html">Divergence</a> page. </P>
<P> Note that in the example both <divergence> and <divergence-migration> have a <prior> defined. This is because Divergence only functions in Bayesian analysis currently. Likelihood analysis is not available.
</P>
<P>
<PRE>
<divergence>
<prior type="linear">
<paramindex> default </paramindex>
<lower> 0.0 </lower>
<upper> 0.01 </upper>
</prior>
<method> USER USER </method>
<start-values> 0.002000 0.004000 </start-values>
<population-tree>
<epoch-boundary>
<new-populations> North South </new-populations>
<ancestor> Parent_1 </ancestor>
</epoch-boundary>
<epoch-boundary>
<new-populations> East Parent_1 </new-populations>
<ancestor> Parent_2 </ancestor>
</epoch-boundary>
</population-tree>
</divergence>
<divergence-migration>
<start-values> 0 50.000000 50.000000 0 0 50.000000 0 50.000000 0 0
50.000000 50.000000 0 50.000000 0 0 0 50.000000 0 0 0 0 0 0 0 </start-values>
<method> USER USER USER USER USER USER USER USER USER USER USER
USER USER USER USER USER USER USER USER USER USER USER USER USER USER </method>
<max-events> 10000 </max-events>
<profiles> None None None None None None None None None None None
None None None None None None None None None None None None None None </profiles>
<constraints> Invalid Unconstrained Unconstrained Invalid Invalid
Unconstrained Invalid Unconstrained Invalid Invalid Unconstrained Unconstrained
Invalid Unconstrained Invalid Invalid Invalid Unconstrained Invalid Invalid
Invalid Invalid Invalid Invalid Invalid </constraints>
<prior type="linear">
<paramindex> default </paramindex>
<lower> 0.0 </lower>
<upper> 100.0 </upper>
</prior>
</divergence-migration>
</PRE>
</P>
<H3><A NAME="chains"> Chain Control </A></H3>
<P> The <chains> tag contains information controlling the search
strategy, such as number and length of chains, sampling interval,
heating, and rearrangement strategy. For details on selecting a
search strategy, see the file "Search Strategies." </P>
<P> Chains come in two kinds, "initial" and "final;" the program will
run the requested number of initial chains, and then the requested
number of final chains. It is often useful to make the initial
chains shorter, giving a quick-and-dirty estimate which the
final chains can refine, but the program does not dictate any
particular relationship between initial and final.</P>
<P> The <initial> and <final> tags lay out parameters for the two
chain types. Within them, <number> is the number of chains of
that type, <samples> is the number of genealogies that will be
sampled for parameter estimation, <interval> is the number of
genealogies generated for each one that is sampled, and <discard>
is the length of the burn-in period before any genealogies are
sampled. For example, if <samples> is 35, <interval> is 10, and
<discard> is 200, the program will first produce and discard
200 genealogies, and then produce 350 more, sampling every 10th
one for a total of 35 sampled genealogies.</P>
<P> If you wish, for some reason, to run only one chain, you can set
the samples of the other chain type to zero. For likelihood-based
parameter estimation we believe that one chain is always too few.
One chain is a reasonable choice for Bayesian analysis, however. (If only
one chain is run, burn-in should probably be quite long.)
</P>
<P> Note that this convention for indicating how many genealogies to
sample is the same as the one used in MIGRATE, but different from
the one used in COALESCE, FLUCTUATE, and RECOMBINE. The latter
three programs take the total number of genealogies to be produced,
not the number to be sampled. Be careful of this point when comparing
runs of the different programs.</P>
<P> The <replicates> tag gives the number of replications for each
chain (one or more). If more than one replicate is requested,
a joint parameter estimate over all replicates will be produced.</P>
<P> The <heating> tag controls the heating strategy. It must contain
two tags. <temperatures> gives a list of temperatures for the
various searches (the number of entries in this tag determines the
number of searches that will be run). The lowest temperature should
always be 1.0. (We know of no use for a chain colder than that.)
The <swap-interval> tag gives the number of chain steps that will
pass between each attempt to swap trees among the different
temperatures. 1 is a reasonable default; higher values may run a
little faster, but are less effective.</P>
<P> A third, optional tag <adaptive> can be used to turn on or
off "adaptive" heating, in which the program will adjust the temperatures
in use so as to try to optimize acceptance rates. Adaptive heating is
off by default. If you enable it (<adaptive> true </adaptive>),
keep a close eye on your searches
to make sure that they are performing well. In theory adaptive
heating should be superior to fixed-temperature heating, but we have
little experience with it so far.</P>
<P>The <strategy> tag indicates the rearrangement strategy. It contains
a relative frequency (a number between 0 and 1) for use of this
particular strategy; the frequencies of all strategies should add
up to 1.</P>
<P>In version 2.0, four strategies are possible. </P>
<P>The <resimulating> strategy
rearranges the genealogy. Every run must have a <resimulating>
strategy, since only this strategy allows free movement through the
genealogy search space. Its frequency should always be fairly
high; we recommend at least 80% in a likelihood run, and at least
40% in a Bayesian run.</P>
<P>The <haplotyping> strategy reconsiders
haplotype assignments. This is only useful if you have some phase-unknown
sites in your data, and will be silently disabled, even
if you specify it, on data with no phase-unknown sites. A
reasonable frequency for it, if it is needed, might be around 20%.</P>
<P>The <bayesian> strategy allows a Bayesian analysis to
search the space of population parameters. It is only useful in
a Bayesian run (including a Bayesian arranger will turn the
run into a Bayesian run). We have found setting its frequency
equal to the resimulating arranger's frequency to be satisfactory.
Please note that a Bayesian run with a 50/50 resimulating/Bayesian
arranger strategy will have to take twice as many steps to
consider as many trees as a pure likelihood run, and probably
should. Bayesian rearrangements are relatively quick, so this will
not slow the program inordinately.</P>
<P> The <trait-arranger> strategy is useful only when trying
to map a trait to a location on the chromosome using the "jumping"
algorithm. It allows the search to reconsider the location of the
trait, and should probably have a high frequency such as 30-50%.
It will be silently turned off if not needed.</P>
<P> Here is a sample search-strategy block.</P>
<P>
<PRE>
<chains>
<replicates>1</replicates>
<heating>
<temperatures>1.0</temperatures>
<swap-intervals>1 1</swap-intervals>
</heating>
<strategy>
<resimulating> 1.0 </resimulating>
</strategy>
<initial>
<number>5</number>
<samples>50</samples>
<discard>100</discard>
<interval>20</interval>
</initial>
<final>
<number>1</number>
<samples>100</samples>
<discard>100</discard>
<interval>20</interval>
</final>
</chains>
</PRE> </P>
<H3><A NAME="options"> User options</A> </H3>
<P> The <format> tag encloses various options for formatting and
detail level of results, as well as the random number seed.</P>
<P>The <convert-output-to-eliminate-zero> tag indicates whether you
think of your data in terms of it having a 'site 0' or not. The traditional
biologist assumption is that 'site 1' is right next to 'site -1', with
nothing inbetween. As you might imagine, such a scheme would cause no end
of trouble computationally, so a LAMARC input file scoots all such negative
numbers up by one such that 'site -1' becomes 0, 'site -2' become -1, and so
on. (The converter lam_conv does not make this assumption, but produces
LAMARC input files that do.) If you are using the mapping option, you will
see numbers for sites in both the menu and in the output file; this option
can be toggled ('true' or 'false') by hand here so that the data output will
match your expectations. See <A HREF="troubleshooting.html#Q14">"Does
LAMARC use 'site 0'?"</a> in the FAQ.</P>
<A NAME="verbosity"></a><P> The <verbosity> tag indicates how lengthy the output report should
be; options are concise, normal, and verbose. When in doubt, try
verbose--you can always discard unneeded parts later.</P>
<P> Similarly, the <progress-reports> tag indicates what kind of feedback
should be given while the program is running. Options are none,
concise, normal and verbose. For exploratory runs, we strongly
recommend verbose.</P>
<P> The <seed> tag initializes the random number generator. The
number provided should be an integer of the form 4N+1, such
as 101 or 105. If the program is run twice with the same
parameters, data, and seed, it will produce the same results.</P>
If no <seed> tag is given and no seed is set from the menu,
the program will try to use the system clock to seed the random
number generator. If your system is peculiar enough to have
no system clock, you'll want to prevent this by always specifying
a seed.</P>
<P> <results-file> gives the name of the file which will receive the
output report when the program finishes (destroying any previous
contents).</P>
<P> <use-in-summary-file> can be set to either "true" (if data reading
from a summary file is desired) or "false" (if not).
<in-summary-file> gives the name of the file from which to read in
data from a previous run of LAMARC.</P>
<P> <use-out-summary-file> can be set to either "true" (if data
writing to a summary file is desired) or "false" (if not).
<out-summary-file> gives the name of the file which will contain
the output summary file.</P>
<P> <use-curvefiles> can be set to "true" in a Bayesian run for
which curvefiles should be saved, or "false" otherwise.
<curvefile-prefix> gives a prefix which will form the first part
of the name of all such curvefiles (the remainder of the name is
formed from the name of the parameter whose curve is being recorded).</P>
<P> <use-reclocfile> can be set to "true" if you want to dump
out the locations of all recombination events in sampled trees in
the last final chain. This is "false" by default since
the files can be quite large.
<reclocfile-prefix> gives a prefix which will form the first
part of the name of all recombination location files.</P>
<P> <use-tracefile> can be set to "true" if Tracer-readable
summaries of the run are desired, or "false" otherwise.
<tracefile-prefix> gives a prefix which will form the first
part of the name of all Tracer files.</P>
<P> <use-newicktreefile> can be set to "true" if trees from
this run should be written out in Newick format, or "false"
otherwise. <newicktreefile-prefix> gives a prefix which
will form the first part of the name of all Newick-format tree
files.</P>
<P> <out-xml-file> gives the name of the file which will receive a
copy of the input file, as modified by options selected in the menu.</P>
<P> There is no entry for the name of the input data file, since
that's the file this XML is in.</P>
<P> Here is a sample <format> block: </P>
<P>
<PRE>
<format>
<verbosity>verbose</verbosity>
<progress-reports>normal</progress-reports>
<seed>1005</seed>
<use-in-summary-file>false</use-in-summary-file>
<in-summary-file>insumfile.xml</in-summary-file>
<use-out-summary-file>false</use-out-summary-file>
<out-summary-file>outsumfile.xml</out-summary-file>
<out-xml-file>menusettings_infile.xml</out-xml-file>
</format>
</PRE> </P>
<H3><A NAME="mapping"> Trait Mapping </A></H3>
<P> Trait mapping is enabled by presence of a <traits>
block nested within a <region>. Within it there
should be a <trait> block for each trait being mapped.
Although you are unlikely to need it, if you have multiple traits that map
to the same genomic region, you may map them simultaneously by giving each a
'trait' tag. The trait is assumed
to be located somewhere in this region; LAMARC will not
consider the possibility that it is elsewhere.</P>
<P> The trait is given a name with a <name> block,
and the type of analysis (floating or jumping) is given
with an <analysis> block whose legal values are
"float" or "jump".</P>
<P> If information is available about possible locations for
the trait, they can be indicated in a <possible-locations>
block containing one or more <range> blocks. Each
<range> should contain a <start> and an <end>
block giving the starting and ending sites of the range,
numbering the first site of the region as 1. At least one
site must be a legal location for the trait (and really, it is
silly to attempt mapping unless more than one site is legal).</P>
<P> The trait block may also contain an appropriate data model for trait
allele mutations, which must (at present) be a K-Allele model. It is
inappropriate to have multiple categories for a trait allele (since the
categories involve differences in mutation rate among markers, and there
will always be exactly one marker for trait alleles), and normalization can
usually be ignored, but you may want to input a relative mu rate. For
example, if you believe your alleles are the result of a dysfunctional gene,
and you are working with SNP data, you might estimate that there are
approximately 500 sites in an average gene that lead to that gene's
disruption, and observed SNPs approximately one every 100 sites, so you
would tell LAMARC that the relative mutation rate of your trait allele is 5
times more than that for your SNP data. (If you had DNA data instead, you
would put in '500' as the relative mutation rate.)
</P>
<P>As an example, here is XML input for the trait 'funny-nose', which we
know might be mappable to site 1 or somewhere within sites 35-68, and which
has a relative mutation rate of 5:
<PRE>
<data>
<region name="Region1">
<traits>
<trait>
<name> funny-nose </name>
<analysis> float </analysis>
<possible-locations>
<range>
<start> 1 </start>
<end> 1 </end>
</range>
<range>
<start> 35 </start>
<end> 68 </end>
</range>
</possible-locations>
<model name="KAllele">
<normalize>false</normalize>
<categories>
<num-categories>1</num-categories>
<rates> 1</rates>
<probabilities> 1</probabilities>
<autocorrelation>1</autocorrelation>
</categories>
<relative-murate>5</relative-murate>
</model>
</trait>
</traits>
</PRE>
<P> Additionally, within the <individual> tag of each
individual from whom data was sampled, you will need to include
a <genotype-resolutions> block specifying the possible
genotypes which could correspond to that individual's phenotype.
The first block within the <genotype-resolutions> block
should be a <trait-name> matching the name given earlier
for the trait. This is followed by a collection of
<haplotypes> blocks which give each haplotype possible
for that individual, and the penetrance. Be careful with
these penetrances! The penetrance of a haplotype is the
chance that, if the individual has this haplotype, they will
show the phenotype they did in fact show; it is <b>not</b>
the chance that the individual has this haplotype. Only
haplotypes which the individual could have should be listed.
The penetrance, which should be a number greater than 0 and
less than or equal to 1, goes in a <penetrance> tag
and the two alleles, in order, which make up the haplotype
go in a <alleles> tag.</P>
<P> Here is an example from an individual whose nose is bent. Based on our
previous analysis of this trait, we know that 100% of individuals who are
homozygous for the 'broken' allele have a bent nose, that 50% of individuals
who are heterozygous and have one 'broken' allele and one 'normal' allele
have a bent nose, and that no individual who is homozygous for the 'normal'
allele has a bent nose:
</P>
<P>
<PRE>
<individual name="Mary">
<genotype-resolutions>
<trait-name> funny-nose </trait-name>
<haplotypes>
<penetrance> 1 </penetrance>
<alleles> broken broken </alleles>
</haplotypes>
<haplotypes>
<penetrance> 0.5 </penetrance>
<alleles> normal broken </alleles>
</haplotypes>
<haplotypes>
<penetrance> 0.5 </penetrance>
<alleles> broken normal </alleles>
</haplotypes>
</genotype-resolutions>
</PRE></P>
<P>Note that we must include both 'normal broken' as well as 'broken normal'
for the heterozygote.</P>
<P> Every individual will require such a block giving all
possible haplotype resolutions of the trait data.</P>
<P>(<A HREF="converter_cmd.html">Previous</A> | <A
HREF="index.html">Contents</A> | <A HREF="menu.html">Next</A>)</P>
<!--
$Id: xmlinput.html,v 1.55 2012/05/29 18:59:45 ewalkup Exp $
-->
</BODY>
</HTML>
|