changeset 15:61e311c4d2d0

Updated test-data
author george-weingart
date Mon, 19 May 2014 02:28:59 -0400
parents a206555874ee
children 7d25ecd225dd
files README.txt micropita.xml src/ConstantsMicropita.pyc src/__init__.pyc src/breadcrumbs/__init__.pyc src/breadcrumbs/src/AbundanceTable.pyc src/breadcrumbs/src/CClade.pyc src/breadcrumbs/src/ConstantsBreadCrumbs.pyc src/breadcrumbs/src/KMedoids.pyc src/breadcrumbs/src/MLPYDistanceAdaptor.pyc src/breadcrumbs/src/Metric.pyc src/breadcrumbs/src/SVM.pyc src/breadcrumbs/src/UtilityMath.pyc src/breadcrumbs/src/ValidateData.pyc src/breadcrumbs/src/__init__.pyc test-data/micropita_input test-data/micropita_output
diffstat 17 files changed, 243 insertions(+), 185 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt	Wed May 07 22:12:31 2014 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,185 +0,0 @@
-# Using microPITA commandline #
-
-These common commands can be used on the default data set obtained when downloading microPITA, simply cut and paste them into a commandline in the downloaded microPITA directory.
-
-
-## Expected input file. ##
-
-I. PCL file or BIOM file
-
-BIOM file definition:
-For BIOM file definition please see http://biom-format.org/
-
-PCL file definition:
-Although some defaults can be changed, microPITA expects a PCL file as an input file. Several PCL files are supplied by default in the input directory. A PCL file is a TEXT delimited file similar to an excel spread sheet with the following characteristics.
-
-1. Rows represent metadata and features (bugs), columns represent samples.
-2. The first row by default should be the sample ids.
-3. Metadata rows should be next.
-4. Lastly, rows containing features (bugs) measurements (like abundance) should be after metadata rows.
-5. The first column should contain the ID describing the column. For metadata this may be, for example, "Age" for a row containing the age of the patients donating the samples. For measurements, this should be the feature name (bug name).
-5. By default the file is expected to be TAB delimited.
-6. If a consensus lineage or hierarchy of taxonomy is contained in the feature name, the default delimiter between clades is the pipe ("|").
-
-II. Targeted feature file
-If using the targeted feature methodology, you will need to provide a txt file listing the feature(s) of interest. Each feature should be on it's own line and should be written as found in the input PCL file.
-
-
-## Basic unsupervised methods ##
-Please note, all calls to microPITA should work interchangeably with PCL or BIOM files. BIOM files do not require the --lastmeta or --id arguments.
-
-There are four unsupervised methods which can be performed:
-diverse (maximum diversity), extreme (most dissimilar), representative (representative dissimilarity) and features (targeted feature).
-
-The first three methods are performed as follows (selecting a default 10 samples):
-
-> python MicroPITA.py --lastmeta Label -m representative input/Test.pcl output.txt
-> python MicroPITA.py -m representative input/Test.biom output.txt
-
-> python MicroPITA.py --lastmeta Label -m diverse input/Test.pcl output.txt
-> python MicroPITA.py -m diverse input/Test.biom output.txt
-
-> python MicroPITA.py --lastmeta Label -m extreme input/Test.pcl output.txt
-> python MicroPITA.py -m extreme input/Test.biom output.txt
-
-Each of the previous methods are made up of the following pieces:
-1. python MicroPITA.py to call the microPITA script.
-2. --lastmeta which indicates the keyword (first column value) of the last row that contains metadata (PCL input only).
-3. -m which indicates the method to use in selection.
-4. input/Test.pcl or input/Test.biom which is the first positional argument indicating an input file
-5. output.txt which is the second positional argument indicating the location to write to the output file.
-
-Selecting specific features has additional arguments to consider --targets (required) and --feature_method (optional).
-
-> python MicroPITA.py --lastmeta Label -m features --targets input/TestFeatures.taxa input/Test.pcl output.txt
-> python MicroPITA.py -m features --targets input/TestFeatures.taxa input/Test.biom output.txt
-
-> python MicroPITA.py --lastmeta Label -m features --feature_method abundance --targets input/TestFeatures.taxa input/Test.pcl output.txt
-> python MicroPITA.py -m features --feature_method abundance --targets input/TestFeatures.taxa input/Test.biom output.txt
-
-These additional arguments are described as:
-1. --targets The path to the file that has the features (bugs or clades) of interest. Make sure they are written as they appear in your input file!
-2. --feature_method is the method of selection used and can be based on ranked abundance ("rank") or abundance ("abundance"). The default value is rank.
-To differentiate the methods, rank tends to select samples in which the feature dominates the samples regardless of it's abundance.
-Abundance tends to select samples in which the feature is most abundant without a guarantee that the feature is the most abundant feature in the sample. 
-
-
-## Basic supervised methods ##
-
-Two supervised methods are also available:
-distinct and discriminant
-
-These methods require an additional argument --label which is the first column keyword of the row used to classify samples for the supervised methods.
-These methods can be performed as follows:
-
-> python MicroPITA.py --lastmeta Label --label Label -m distinct input/Test.pcl output.txt
-> python MicroPITA.py --label Label -m distinct input/Test.biom output.txt
-
-> python MicroPITA.py --lastmeta Label --label Label -m discriminant input/Test.pcl output.txt
-> python MicroPITA.py --label Label -m discriminant input/Test.biom output.txt
-
-
-## Custom alpha- and beta-diversities ##
-
-The default alpha diversity for the maximum diversity sampling method is inverse simpson; the default beta-diversity for representative and most dissimilar
-selection is bray-curtis dissimilarity. There are several mechanisms that allow one to change this. You may: 
-
-1. Choose from a selection of alpha-diveristy metrics.
-Note when supplying an alpha diversity. This will affect the maximum diveristy sampling method only. Please make sure to use a diversity metric where the larger number indicates a higher diversity. If this is not the case make sure to use the -f or --invertDiversity flag to invert the metric. The inversion is multiplicative (1/alpha-metric).
-
-> python MicroPITA.py --lastmeta Label -m diverse -a simpson input/Test.pcl output.txt
-> python MicroPITA.py -m diverse -a simpson input/Test.biom output.txt
-
-A case where inverting the metric is needed.
-
-> python MicroPITA.py --lastmeta Label -m diverse -a dominance -f input/Test.pcl output.txt
-> python MicroPITA.py -m diverse -a dominance -f input/Test.biom output.txt
-
-2. Choose from a selection of beta-diversity metrics.
-Note when supplying a beta-diversity. This will effect both the representative and most dissimilar sampling methods. The metric as given will be used for the representative method while 1-beta-metric is used for the most dissimilar.
-
-> python MicroPITA.py --lastmeta Label -m representative -b euclidean input/Test.pcl output.txt
-> python MicroPITA.py -m representative -b euclidean input/Test.biom output.txt
-
-> python MicroPITA.py --lastmeta Label -m extreme -b euclidean input/Test.pcl output.txt
-> python MicroPITA.py -m extreme -b euclidean input/Test.biom output.txt
-
-Note for using Unifrac. Both Weighted and Unweighted unifrac are available for use. Make sure to supply the associated tree (-o, --tree) and environment files 
-(-i,--envr) as well as indicate using Unifrac with (-b,--beta)
-
-> python MicroPITA.py --lastmeta Label -m extreme -b unifrac_weighted -o input/Test.tree -i input/Test-env.txt input/Test.pcl output.txt
-> python MicroPITA.py -m extreme -b unifrac_weighted -o input/Test.tree -i input/Test-env.txt input/Test.biom output.txt
-> python MicroPITA.py --lastmeta Label -m extreme -b unifrac_unweighted -o input/Test.tree -i input/Test-env.txt input/Test.pcl output.txt
-> python MicroPITA.py -m extreme -b unifrac_unweighted -o input/Test.tree -i input/Test-env.txt input/Test.biom output.txt
-> python MicroPITA.py --lastmeta Label -m representative -b unifrac_weighted -o input/Test.tree -i input/Test-env.txt input/Test.pcl output.txt
-> python MicroPITA.py -m representative -b unifrac_weighted -o input/Test.tree -i input/Test-env.txt input/Test.biom output.txt
-> python MicroPITA.py --lastmeta Label -m representative -b unifrac_unweighted -o input/Test.tree -i input/Test-env.txt input/Test.pcl output.txt
-> python MicroPITA.py -m representative -b unifrac_unweighted -o input/Test.tree -i input/Test-env.txt input/Test.biom output.txt
-
-3. Supply your own custom alpha-diversity per sample as a metadata (row) in your pcl file.
-
-> python MicroPITA.py --lastmeta Label -m diverse -q alpha_custom input/Test.pcl output.txt
-> python MicroPITA.py -m diverse -q alpha_custom input/Test2.biom output.txt
-
-4. Supply your own custom beta diversity as a matrix (provided in a seperate file).
-
-> python MicroPITA.py --lastmeta Label -m representative -x input/Test_Matrix.txt input/Test.pcl output.txt
-> python MicroPITA.py -m representative -x input/Test_Matrix.txt input/Test.biom output.txt
-> python MicroPITA.py --lastmeta Label -m extreme -x input/Test_Matrix.txt input/Test.pcl output.txt
-> python MicroPITA.py -m extreme -x input/Test_Matrix.txt input/Test.biom output.txt
-
-
-## Changing defaults ##
-
-Sample Selection:
-To change the number of selected samples for any method use the -n argument. This example selects 6 representative samples instead of the default 10.
-
-> python MicroPITA.py --lastmeta Label -m representative -n 6 input/Test.pcl output.txt
-> python MicroPITA.py -m representative -n 6 input/Test.biom output.txt
-
-When using a supervised method this indicates how many samples will be selected per class of sample. For example if you are performing supervised selection of 6 samples (-n 6) on a dataset with 2 classes (values) in it's label row, you will get 6 x 2 = 12 samples. If a class does not have 6 samples in it, you will get the max possible for that class. In a scenario where you are selecting 6 samples (-n 6) and have two classes but one class has only 3 samples then you will get 6 + 3 = 9 selected samples.
-
-Stratification:
-To stratify any method use the --stratify argument which is the first column keyword of the metadata row used to stratify samples before selection occurs. (Selection will occur independently within each strata). This example stratifies diverse selection by the "Label".
-
-> python MicroPITA.py --lastmeta Label --stratify Label -m representative input/Test.pcl output.txt
-> python MicroPITA.py --stratify Label -m representative input/Test.biom output.txt
-
-> python MicroPITA.py --lastmeta Label --label Label --stratify StratifyLabel -m distinct input/Test.pcl output.txt
-> python MicroPITA.py --label Label --stratify StratifyLabel -m distinct input/Test2.biom output.txt 
-
-Changing PCL file defaults:
-Some PCL files have feature metadata. These are columns of data that comment on bug features (rows) in the file. An example of this could be a certain taxonomy clade for different bug features. If this type of data exists please use -w or --lastFeatureMetadata to indicate the last column of feature metadata before the first column which is a sample. For an example please look in docs for PCL-Description.txt. This only applys to PCL files.
-
-> python MicroPITA.py --lastmeta Label -m representative -w taxonomy_5 input/FeatureMetadata.pcl output.txt
-
-MicroPITA assumes the first row of the input file is the sample IDs, if it is not you may use --id to indicate the row.
---id expects the entry in the first column of your input file that matches the row used as Sample Ids. See the input file and the following command as an example.
-This only applys to PCL files.
-
-> python MicroPITA.py --id Sample --lastmeta Label -m representative input/Test.pcl output.txt
-
-MicroPITA assumes the input file is TAB delimited, we strongly recommend you use this convention. If not, you can use --delim to change the delimiter used to read in the file.
-Here is an example of reading the comma delimited file micropita/input/CommaDelim.pcl
-This only applys to PCL files.
-
-> python MicroPITA.py --delim , --lastmeta Label -m representative input/CommaDelim.pcl output.txt
-
-MicroPITA assumes the input file has feature names in which, if the name contains the consensus lineage or full taxonomic hierarchy, it is delimited with a pipe "|". We strongly recommend you use this default. The delimiter of the feature name can be changed using --featdelim. Here is an example of reading in a file with periods as the delimiter.
-This only applys to PCL files.
-
-> python MicroPITA.py --featdelim . --lastmeta Label -m representative input/PeriodDelim.pcl output.txt
-
-
-## Dependencies ##
-Please note the following dependencies need to be installed for micropita to run.
-1. Python 2.x		http://www.python.org/download/
-2. blist		http://pypi.python.org/pypi/blist/
-3. NumPy		http://numpy.scipy.org/
-4. SciPy		http://www.scipy.org/
-5. PyCogent		http://pycogent.sourceforge.net/install.html
-6. mlpy			http://mlpy.sourceforge.net/
-7. mpi4py		http://mpi4py.scipy.org/
-8. biome support 	http://biom-format.org/
-
-This covers how to use microPITA. Thank you for using this software and good luck with all your endeavors!
--- a/micropita.xml	Wed May 07 22:12:31 2014 -0400
+++ b/micropita.xml	Mon May 19 02:28:59 2014 -0400
@@ -73,6 +73,19 @@
   <requirements>
     <requirement type="set_environment">micropita_SCRIPT_PATH</requirement>
   </requirements>
+  <tests>
+       <test>
+             <param name="inp_data" value="micropita_input"  ftype="micropita"  />
+             <param name="cls_x" value="5" />
+             <param name="cls_s" value="5" />
+             <param name="selected_samples" value="10" />
+             <param name="cond.method_sel" value="representative" />
+             <output name="out_file1" file="micropita_output"  />
+                <assert_contents>
+                   <has_text text="representative	Sample_22_R	Sample_20_R" />
+                </assert_contents>
+       </test>
+   </tests>
   <help>
 	  
 
Binary file src/ConstantsMicropita.pyc has changed
Binary file src/__init__.pyc has changed
Binary file src/breadcrumbs/__init__.pyc has changed
Binary file src/breadcrumbs/src/AbundanceTable.pyc has changed
Binary file src/breadcrumbs/src/CClade.pyc has changed
Binary file src/breadcrumbs/src/ConstantsBreadCrumbs.pyc has changed
Binary file src/breadcrumbs/src/KMedoids.pyc has changed
Binary file src/breadcrumbs/src/MLPYDistanceAdaptor.pyc has changed
Binary file src/breadcrumbs/src/Metric.pyc has changed
Binary file src/breadcrumbs/src/SVM.pyc has changed
Binary file src/breadcrumbs/src/UtilityMath.pyc has changed
Binary file src/breadcrumbs/src/ValidateData.pyc has changed
Binary file src/breadcrumbs/src/__init__.pyc has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/micropita_input	Mon May 19 02:28:59 2014 -0400
@@ -0,0 +1,229 @@
+ID	Sample_0_D	Sample_1_D	Sample_2_D	Sample_3_D	Sample_4_D	Sample_5_D	Sample_6_D	Sample_7_D	Sample_8_D	Sample_9_D	Sample_10_D	Sample_11_D	Sample_12_D	Sample_13_D	Sample_14_D	Sample_15_D	Sample_16_R	Sample_17_R	Sample_18_R	Sample_19_R	Sample_20_R	Sample_21_R	Sample_22_R	Sample_23_R	Sample_24_R	Sample_25_R	Sample_26_R	Sample_27_R	Sample_28_R	Sample_29_R	Sample_30_E	Sample_31_E	Sample_32_E	Sample_33_E	Sample_34_E	Sample_35_E	Sample_36_E	Sample_37_E	Sample_38_E	Sample_39_E	Sample_40_E	Sample_41_E	Sample_42_E	Sample_43_E	Sample_44_T	Sample_45_T	Sample_46_T	Sample_47_T
+Sample	Sample_0_D	Sample_1_D	Sample_2_D	Sample_3_D	Sample_4_D	Sample_5_D	Sample_6_D	Sample_7_D	Sample_8_D	Sample_9_D	Sample_10_D	Sample_11_D	Sample_12_D	Sample_13_D	Sample_14_D	Sample_15_D	Sample_16_R	Sample_17_R	Sample_18_R	Sample_19_R	Sample_20_R	Sample_21_R	Sample_22_R	Sample_23_R	Sample_24_R	Sample_25_R	Sample_26_R	Sample_27_R	Sample_28_R	Sample_29_R	Sample_30_E	Sample_31_E	Sample_32_E	Sample_33_E	Sample_34_E	Sample_35_E	Sample_36_E	Sample_37_E	Sample_38_E	Sample_39_E	Sample_40_E	Sample_41_E	Sample_42_E	Sample_43_E	Sample_44_T	Sample_45_T	Sample_46_T	Sample_47_T
+Group	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Complex	Moderate_Dissimilarity_Feature	Moderate_Dissimilarity_Feature	Moderate_Dissimilarity_Feature	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	Moderate_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity_Feature	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	High_Dissimilarity	Targeted_Feature	Targeted_Feature	Targeted_Feature	Targeted_Feature
+StratifyLabel	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2	1	2
+Label	Class-Two	Class-One	Class-Two	Class-One	Class-One	Class-One	Class-One	Class-Two	Class-Two	Class-One	Class-Two	Class-One	Class-One	Class-Two	Class-Two	Class-Two	Class-Two	Class-Two	Class-Two	Class-Two	Class-One	Class-One	Class-One	Class-One	Class-One	Class-Two	Class-One	Class-Two	Class-Two	Class-One	Class-Two	Class-Two	Class-Two	Class-Two	Class-One	Class-One	Class-One	Class-One	Class-One	Class-Two	Class-One	Class-Two	Class-Two	Class-One	Class-Two	Class-Two	Class-Two	Class-Two
+Root|Taxa_0	0	0.132639108	51.67205155	0	0	0	51.7444670649	0	0	0	0	0	51.2083349844	52.1495033914	0	54.2809813981	51.6829297536	0	0.3123676392	0	0	0	0	0	0.2166953032	0	0.2411828448	0	0	0	0	0	0	0.3122296644	0	0	0	0	0	0	0	0	0	0	0	0	0	0.1772302872
+Root|Taxa_1	54.0993873098	0	0.441962075	0	0	0	50.6647838005	53.447223597	50.5817481168	0	53.5412967792	0	0	0	0	0	54.5327122192	0	0	0	0	0	0	0	0	0	0	0	0.3066743566	0	0.4312838574	0	0.3731209223	0	0	0	0	0	0	0	0	0	0	0	0	0.1274865184	0	0
+Root|Taxa_2	51.461026897	0	0	0	0	53.0265676376	0	0	0	0	54.047444278	0	52.5264375555	0	0	0	54.9402852499	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4223345514	0	0	0	0	0.4607446961	0	0.3442454432	0	0	0	0	0	0	0	0
+Root|Taxa_3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	53.7506605469	0	0.4148157079	0	0	0	0.2685767173	0	0	0	0	0	0.3663062251	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	50.5269874981	51.8543446876	53.7681811219	52.6344247487
+Root|Taxa_4	50.2405694418	51.7777654529	0	54.8458795552	0	0	0	0	0	0	0	53.8808302665	0	0	0	0	50.0282264237	0	0	0	0.0980723897	0	0.3886813644	0	0	0	0	0	0.4286598254	0	0	0	0.4731642927	0	0	0	0	0.1568392012	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_5	0	0	0	0	0	51.9510168529	0.2296159024	52.9698629485	0	0	0	52.1974377835	0	0	0.2252690679	0	53.653338634	0	0	0	0	0	0	0	0	0.3963056725	0	0	0.0678330435	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_6	0	0	0	0	0	54.5673895399	0	0	0	0	51.1909575326	0.2522232281	0	52.4007159288	54.537199915	0	51.3239204408	0	0	0	0	0	0	0	0	0	0	0	0	0.174038431	0	0	0	0	0	0	0	0	0	0	0	0.0525796302	0	0	0	0	0	0
+Root|Taxa_7	0	0	54.88999104	50.5925030784	0	0	0	54.6763349395	0.1189223448	50.2393175313	0	0	0	0	0	0	54.6969237057	0	0	0.2640195362	0	0	0	0	0	0.0939317767	0	0	0	0.0068426746	0	0	0	0.1884530288	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_8	50.1672106262	0	52.3303780427	0	0	0	0	0.2608503236	51.234970106	53.8379188167	0	0	0	0	0	0	50.1581385397	0.0006708697	0	0	0	0	0	0	0	0	0	0	0	0	102.3508238	0	0	0	0	0	0	0.2592061142	0.2733698621	0	0	0	0	0	0	0	0	0
+Root|Taxa_9	0	0	54.2954191601	0.3900482594	53.497720447	0	52.8536155873	0	0	0	0	0	0	53.0705186084	53.9973207505	52.56799841	52.4336682846	0	0.4420715363	0	0	0	0	0	0	0	0.206258829	0	0.2217424642	0	102.360729463	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_10	0	52.0300437903	0	0	50.8347498672	0	54.6878325497	0	52.7748472684	0	0.1728499078	0	0	0.3494023242	0	53.2923245881	52.0944101248	0	0	0	0	0	0	0	0	0	0	0	0	0	103.408803256	0	0	0	0	0	0	0	0	0.2798474092	0	0	0	0	0	0	0	0
+Root|Taxa_11	0	0	0	0	0	50.2266430142	0	0	0	0	54.8005510793	0	0	0.2614548375	54.6340123255	0	53.3054007305	0	0	0	0	0	0	0	0	0	0	0	0	0	104.297495933	0.4147771248	0	0	0	0	0	0	0	0	0	0	0	0.2095019599	0.2636646004	0	0.14962244	0
+Root|Taxa_12	0	51.2451248947	0	0	52.1894997513	0	0	0	0.1485402206	0	0	51.4578345044	0	0	0	53.7144038587	52.4887800004	0	0.4912827723	0	0	0.0408387312	0	0.1298874355	0	0	0	0	0.406059988	0	100.324803499	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.1119222201	0	0
+Root|Taxa_13	0.3049766554	0	0	0	0	0.2577053654	0	0.0339606845	54.7690836618	50.697970653	0	0	53.8640699725	0	52.0035776407	0	53.6428696687	0	0	0	0	0	0	0	0.4254096216	0.2249415069	0	0.1878483248	0	0	102.107460191	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_14	0	52.2259912051	0	50.2457134484	0	0	0	50.1864151028	0	0	0	0	0	0	0	0	50.9709023399	0.2492557784	0	0	0	0	0	0	0	0	0	0	0	0	101.397444005	0	0	0	0	0	0	0	0	0	0	0	0	0.1555731341	0	0	0	0
+Root|Taxa_15	0	0	0	51.4281949608	52.6962274694	0	0.3201392865	0	0	54.7756797792	0	50.5018107598	54.1937447792	53.2064670747	0	0	54.2549432464	0	0	0	0	0	0	0	0	0	0	0	0	0	102.286601935	0	0	0	0	0	0	0	0.4705889836	0	0	0	0	0	0	0	0	0
+Root|Taxa_16	51.0029739062	0	0	0	51.0607335169	53.2862118709	0	0	0	51.9134794272	54.854099933	0	0	0	54.0630985892	54.5356379274	0	50.5822786088	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_17	0	0	0	0	0	0	0.2048863855	0	0	0	0	0	0	0	0	0	0	53.088151158	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0350232592	0	0	0	0.3510405665	0	0	0	0	0	0	0	0
+Root|Taxa_18	0	51.9909876648	54.2742154768	53.1653297993	0	0	50.8771925078	50.9077149464	54.9729403134	0	0.1353582563	0	0	50.2703191505	0	0	0	53.4546555778	0	0	0	0	0	0	0	0	0	0	0	0	0	0.1975913675	0	0	0	0	0	0	0.252506998	0	0	0	0	0	0	0	0	0.3668075477
+Root|Taxa_19	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	53.2084286662	0.0317855187	0	0	0	0	0.0731542793	0	0.279365334	0	0	0	0.3232868601	0	0	0	0	0	0	0	0	0	0	0	0	0	0	51.3273493399	51.7950595639	51.5148741732	50.1446039379
+Root|Taxa_20	0	0	0	54.2901512603	0	52.5606309423	52.3731376332	54.4526691389	0	0	0	0	0	0	52.0984154658	0	0	51.7513288419	0	0	0	0.3622193485	0	0	0	0	0	0	0	0	0.1691945034	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_21	50.2825468404	0	0	0	0	0	50.9821712326	0	0	0	0	51.3809679697	0	52.2721137248	0	0	0	50.870859988	0	0	0.1977675671	0	0	0	0	0	0.4552416279	0	0	0	0	0.3435864481	0	0	0.4880371356	0	0.0536765879	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_22	0	0	0	0	52.3029086027	52.5983394759	54.5052639743	0	0	54.1888891315	50.0266182403	50.2221118781	50.6633223951	51.3579357417	0	52.1345899387	0	53.3732609456	0	0	0	0	0	0.3609204935	0	0	0	0.4993218153	0	0	0	0	0	0	0	0	0	0	0.1591353836	0	0	0	0	0	0	0	0	0
+Root|Taxa_23	54.6156171564	0.4886273801	0	0	0	0	0	52.5107503356	52.9460850983	0	0.3957098383	0	0	0	0	0	0	52.6539251409	0	0	0	0	0	0	0	0	0	0	0	0.2303307173	0.2311735324	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0630202217
+Root|Taxa_24	52.5265835651	0	0	0	0	0	0	51.6181213067	0	52.5277460465	52.5621645367	0.4212381405	0	0	0	0	0	50.0368297309	0	0	0	0	0	0	0	0	0	0	0	0	0	102.75434916	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_25	0	0	0	0	0	0	0	0.1372806711	0	0	0	52.0166897294	0	0	0	0	0	53.9284449204	0	0	0	0.2143980699	0	0	0	0	0	0	0	0	0.4006338331	100.175399372	0	0	0	0	0	0	0	0.460244722	0	0	0	0	0	0	0	0
+Root|Taxa_26	0	54.7808897118	0	0	0	0	0	0.2249763103	0	0.4844513576	0	0	0	0	50.6980071274	0	0	51.8963562506	0	0	0	0	0	0	0	0	0	0	0	0	0	104.480318071	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_27	0	52.1818437283	0	0.0091068777	0	0	0	0	0	0	0	0	0	0	0	0	0	52.0711732439	0.3445929637	0	0	0	0	0	0	0	0	0	0	0	0	101.492137287	0	0	0.2358311064	0	0	0.3478219918	0	0	0	0	0.0292885238	0	0	0	0	0
+Root|Taxa_28	0	0	52.0901812605	52.2730517877	50.0978668154	0	0	0	0	0	0	0	51.1042973997	50.3396791485	0	51.8579185538	0	54.1478490943	0	0	0	0	0	0.1924004269	0	0	0	0	0	0	0	103.860589722	0	0	0	0	0.2958273103	0	0	0	0	0	0	0	0	0.2432510884	0	0
+Root|Taxa_29	0	0	50.6253941664	0	0	0	0	0	51.4636945289	0	0	0	0	0	0	0	0	52.4434570833	0	0	0	0	0	0	0	0	0.0206172628	0	0.4787711449	0	0	103.664216721	0	0	0	0	0	0.0896190717	0.0482937601	0.3775884668	0	0	0	0	0	0	0	0
+Root|Taxa_30	0	0	0	53.2702698702	0	50.9530439909	0.3906002073	0	52.564962527	0	0	0	50.5342042489	0	0	53.3525431291	0.3955450675	52.1377811142	0	0	0	0	0	0	0	0	0	0	0	0	0	104.569105127	0	0	0	0	0	0.0711511496	0	0	0	0.2969135198	0	0	0	0	0.0820027166	0
+Root|Taxa_31	0	53.4160907647	50.2412640143	0	52.7503772737	0.266001	0	0	0	51.4156779274	52.3495772244	50.4296303411	53.0746552584	0.2312726671	50.1591453136	0	0	52.6740375005	0.0684119121	0.3554946578	0.22106748	0	0	0	0	0	0	0	0	0.4044619717	0	103.683580625	0	0	0	0.1031302462	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_32	0	50.5756083483	0	0	52.0313756582	53.7110562743	52.3907208953	53.8846639811	0	0	0.0046756583	0	52.4749313611	0.2397819191	0	54.0544476992	0	0	54.8355397676	0.1297890121	0	0	0	0	0	0	0.4593982017	0	0	0	0	0	0	0	0	0.3506631122	0.4629464165	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_33	0	0	0	50.878130145	0.4999058566	0	0	0	0	51.3518277314	0.3761236625	0.3944068153	0	0	0	0	0	0	50.3174548238	0	0	0.1504482951	0	0.127140027	0	0	0	0	0	0	0	0	0	0.2548248911	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_34	53.3206087196	0	0	0	0	53.3594257978	54.7550426596	0	0	0	0.2037470024	54.1086095437	0	0	0	0	0	0	54.1113517717	0.3138467421	0	0	0	0	0	0	0	0	0	0	0	0.3490515927	0	0	0	0	0.1981740901	0	0	0.1208211414	0	0	0	0	0	0	0	0
+Root|Taxa_35	51.5748239395	51.8559498273	0	54.0804785553	0	0	0	0	0	0	54.739358927	53.3751470718	53.0003988321	50.9511660413	0	0	0	0.4262712797	51.4526566441	0	0	0	0	0	0	0.2979733489	0	0	0.4111736556	0	0	0	0	0	0	0	0	0.0689009855	0	0	0	0	0	0.380858705	0.3682137697	0	0.346123284	0
+Root|Taxa_36	0	0	0	0	51.7955322468	50.7825938818	0.0748252557	0	0	54.9524236749	0	0.3548118535	51.8703689184	0	0	51.0568246533	0	0	53.3875472963	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0529775051	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_37	0	0	52.9933793712	0	0	0	54.6905079521	0	52.7922091401	0	0	0	0	0	50.3044859311	0	0	0	54.747541461	0	0	0	0	0	0	0.0457887715	0.3809741474	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2279874575	0	0	0	0	0	0
+Root|Taxa_38	0	0	51.4270643055	0	54.6785989992	0	54.8206987373	0	53.9385865565	0	0	0	0	51.4129548343	53.1265043809	0	0	0	54.0071260493	0	0	0	0	0.0939906902	0.3673230157	0	0	0	0	0	0	0	0	0	0	0	0.4789676492	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_39	0	0	0	0	0	0	0	0	0	0.2387940384	0	0	0	0	0	0	0	0	54.1627418823	0	0	0	0	0	0	0.2795966978	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_40	0	0	0	50.0210852211	0	0	0	0	0.2150901129	0	0	0	0	52.1867569927	53.6264651202	0	0	0	52.9491874829	0	0	0	0	0	0	0	0	0.2507515189	0	0	0	0	100.862557832	0	0	0	0	0	0	0	0	0	0	0	0	0	0.210881571	0
+Root|Taxa_41	51.4977031121	52.9164968998	0.3534159391	0	0	0.1157486694	0	0	51.7018934192	0.1345887328	0	51.9984923274	0.3081525427	0	0.0615519713	0	0	0	53.3008194045	0	0	0	0	0	0	0	0	0	0	0	0	0	104.430795814	0	0	0	0	0	0	0.2867404482	0	0	0	0	0	0	0	0
+Root|Taxa_42	0	0	0	0	0	0	0	50.1007007713	0	54.9461220565	0	0	0	0	0	0	0	0	53.0375057479	0	0	0	0.4319383958	0	0.171622271	0	0	0	0	0	0	0	102.196402398	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_43	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	51.0446210947	0	0	0	0	0	0	0	0.0792792689	0	0	0	0	0	104.880373605	0	0	0	0	0	0	0	0	0	0	0	51.3715760597	52.9044112969	51.740910549	50.5004381267
+Root|Taxa_44	0	53.9514218116	53.7974560811	0	0	0.2172397029	0	54.4604334223	0	0	54.6862061224	0	0	0	0	0	0	0	53.1944500806	0	0.1702076899	0	0	0	0	0	0	0	0.1000241075	0	0	0.4379056345	102.222128629	0	0	0	0	0	0	0	0	0.0702419447	0	0	0	0	0	0
+Root|Taxa_45	0.4414396255	0	0	0	0	53.3442434459	0	0	52.0433499114	0	0	0	0	0	0	0	0	0	51.0099383616	0	0	0	0	0	0	0	0	0	0	0	0	0	102.926221483	0	0	0	0	0	0	0	0	0.0083155843	0	0	0	0	0	0
+Root|Taxa_46	50.8759769798	0	53.2075254666	50.6746294731	51.236316237	0.0529739748	0	0	0	51.7118414842	52.4785335361	0	0	0	52.8668573736	52.6248831998	0	0	53.2532692581	0	0	0	0.2068341838	0	0.0509557931	0	0	0	0	0	0	0	101.581986405	0	0	0.3929810805	0	0	0	0	0.4084069824	0	0	0	0	0	0	0
+Root|Taxa_47	0	0	0	0	0	0	0	51.7620853649	0	0	51.3185303073	50.1321408484	51.7645853205	53.2729757957	0	53.2368893169	0	0	54.6339039774	0	0	0	0	0	0.2721644329	0	0	0	0	0	0	0.1529640426	102.170619684	0	0	0	0	0	0	0	0.4808707791	0	0	0	0.0259939588	0	0	0
+Root|Taxa_48	52.4267089962	0	0	54.1214115467	50.0928272167	0	53.4772363871	54.7860576144	0	0	0	51.9697613142	0	0	0	0	0.2912755603	0	0	52.4029555007	0	0	0	0	0	0	0	0	0	0	0	0	0.1730979361	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_49	0	54.141972569	0	0	0	0.3109906772	0	0.2574068121	0	0	0	0	51.8320818925	0	0	0	0	0	0	54.6830485117	0.2736483385	0	0	0.1530487213	0	0	0	0	0	0	0	0	0	0	0	0.4823438429	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_50	0	0.4124418207	52.6693177921	0	0.4591352641	0	0	50.0076295469	0	0	0	0	0	0	0	0	0.0891656276	0	0	52.060661218	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.456119945	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_51	0	0	0.4290217531	0.3651461426	0	52.193712592	0	0	0	0	0	54.8820040231	50.9889836189	0	0	0	0	0	0	53.729079995	0	0	0	0	0	0	0.1077332822	0	0	0	0	0	0.2396906645	0	0	0	0	0.1208910872	0	0	0	0	0	0	0	0.1170604419	0	0
+Root|Taxa_52	54.8376652197	0	50.6807988659	0	0	0	50.2423356742	0	0	53.1215806153	0	0	53.0799270537	0	0	0	0	0	0	51.035020958	0	0	0	0	0	0	0	0.2183915943	0	0.0377484647	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_53	0.4082266649	53.8883783744	0.4415559686	0	0	54.6386307308	0	0	51.2693532809	0	54.6221640864	0	0	0	0	0	0.3041499927	0	0.3724731651	54.412795112	0.1367159827	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3980338784	0	0	0	0	0	0
+Root|Taxa_54	0.3273113474	0	0	54.926390833	0	0	0	0	0	0.3088645786	0	0	0	0.0605177339	0	50.044487362	0	0	0	54.6371458056	0	0	0	0	0	0	0.4771918399	0.2768604633	0	0	0	0	0	0	0	0	0	0.0335516302	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_55	0	0	50.0656052232	0	0	0.0179441975	0	0	0	0	0	0	0	0	0.138961788	54.9330831299	0	0	0	52.5769169001	0	0	0	0	0	0	0	0.1782178292	0	0	0	0	0.3407637923	0	0	0	0	0	0	0	0.4782188759	0.4542681566	0	0	0	0.4875039412	0	0
+Root|Taxa_56	54.5989539227	0	0	0	53.2426950573	50.250740261	0	0	0	53.9546687981	0	0	0	53.8898181275	52.0200822419	0	0	0	0	50.1281331335	0	0	0	0.3264303961	0.2427488814	0	0	0	0	0	0	0	0.2980135425	102.341991379	0	0	0	0	0	0	0	0.2057570112	0.1926807528	0	0	0	0	0
+Root|Taxa_57	0	51.354416492	0	0	0	50.4552746731	0	0	53.9138353446	53.4965113987	0	0	0.4402856364	0	50.9875219614	0	0	0.2843309221	0	52.8337602214	0	0	0	0	0	0	0	0	0	0	0	0	0	100.009745288	0	0	0	0	0	0	0	0	0	0	0	0.484674028	0	0
+Root|Taxa_58	0.4370935688	0	0	0	0	0	0	53.5695657696	53.5922767311	0	52.4207781953	0	0.0828238371	54.0436231227	0	54.1439337916	0	0	0	53.6109641407	0	0	0.247319441	0	0	0	0	0	0.1293668424	0	0	0	0	102.817247688	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_59	54.1877803261	54.8734852288	51.9631978735	0	53.7893179854	0	0	0	0	0	0	52.9662052797	0.3843803475	0	0	0	0	0	0	50.5938366041	0	0	0	0	0	0	0	0	0	0	0	0	0	103.811586753	0	0	0	0	0	0	0	0.1697259821	0	0	0.4337967626	0	0	0
+Root|Taxa_60	0	0	0	51.6462568319	0	0	52.1950606158	52.2145629515	53.8111850302	54.6277290472	0	0	0	0.4097991131	0	0	0	0	0	54.4787895985	0	0	0	0	0	0	0	0	0	0	0	0	0	100.148275143	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_61	0	0	0	0	0	0.2040732361	0	0	0	0.2783150788	0	0	0	50.5350340247	51.0309419327	0	0	0	0	51.8822943576	0	0	0	0	0	0	0	0	0	0	0	0.0622838924	0.3612372393	102.431353618	0	0	0	0	0.1492745202	0	0	0	0	0	0	0.1621554116	0	0.4346019485
+Root|Taxa_62	0	0	0	50.6703344071	0	0	54.4857512291	0	0	0	54.0871158771	50.599265154	53.7767317456	0	0	51.3898411169	0	0	0	50.3643983668	0	0	0	0	0	0	0	0	0	0.4853324113	0	0.4473445252	0	102.425622639	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_63	0.4529478175	0	0	0	54.2379721914	0	0	0	0	0	53.7525110896	0	0.4360800234	53.3175262291	54.2646984279	0	0	0	0	54.0018428816	0	0	0	0	0	0	0	0	0	0	0	0	0	103.879540704	0	0	0	0	0	0	0	0	0	0	0.200286561	0	0	0
+Root|Taxa_64	0	0	0	0	0	0	0	51.0672277557	52.7285706827	0	0	0	0	0	0	0	0	0	0	0	53.3133856033	0	0	0	0	0.122468849	0	0	0	0.2195248661	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4512989848	0	0
+Root|Taxa_65	0	0	0	0	0	54.2826532163	0.0546722913	50.5873967928	0	0	0	0	50.7408726249	51.9223310392	0	51.4656070102	0	0	0	0	50.605962135	0	0	0	0	0	0	0	0	0	0	0.0313052349	0	0.0248505033	0	0	0	0	0.1801267876	0	0	0	0	0	0	0	0	0
+Root|Taxa_66	0	0	0	0	50.1694459571	0	0.2098148433	0	54.8130942577	52.1816782427	0	0	0	0	0	0.0087912135	0	0	0	0	52.4555738805	0	0.1946081847	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.231151394	0	0	0	0	0
+Root|Taxa_67	53.0846900346	54.412517058	54.5238051166	0	0	0	0	0	0	54.595576556	0	0	0	0	0	0	0	0.2415041929	0	0	54.7069813167	0.2996548558	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0425357392	0	0	0	0.4645055552	0	0	0	0
+Root|Taxa_68	51.3995469362	0	0	50.331795309	51.0448312155	53.6201946543	0	0	53.4099339516	0	50.770176676	54.2683984233	0	52.1643426732	54.0442901397	0.1032379248	0	0	0.3522214367	0	54.4540657102	0	0.110175445	0	0	0	0	0	0	0	0	0	0	0.433013846	0	0	0	0	0.1886158766	0	0	0	0	0	0	0	0	0
+Root|Taxa_69	50.9648348214	53.6736175822	51.590495556	51.8412088782	0	54.2987533453	52.3634972313	0	0	0	51.151811413	53.7359358267	0	0	54.7917255302	0	0.4325211547	0	0	0	53.3545695108	0	0	0	0	0	0	0.069227689	0	0	0	0	0	0.3882377702	0	0	0	0	0.2976571254	0	0	0	0.0263550726	0	0	0	0	0
+Root|Taxa_70	0	0	0	0	50.7217921254	0	54.7066155956	0	0	0	0	0	0	0	0	0	0	0	0	0	50.6315693012	0	0	0	0	0	0	0	0.3724946615	0	0.2673542736	0	0	0.3328376298	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_71	0.1620439572	0.0674540068	0.0359000069	0	0	52.036928436	0	0	0	0	53.2771147688	0	0	50.2197978468	0	0.1980547765	0	0	0	0	52.6803755712	0	0	0	0.4341710263	0	0	0	0	0	0	0	0	0.2646443485	0	0	0	0	0	0	0.1923538669	0	0	0	0	0	0	0.0887843003
+Root|Taxa_72	0	0	0	0.208477186	0.191122797	0	53.3877940796	0	0	0	0	54.8605306811	52.8806578443	0.4634942747	0	53.7859248539	0	0	0	0	54.0390981091	0	0	0	0.2015376913	0	0	0	0	0	0	0	0	0	104.81826701	0	0	0	0	0	0	0	0.470124035	0	0	0	0	0
+Root|Taxa_73	0	0	54.0543538675	0	0	0	0	0	0	0	0	0	52.5074922807	0	51.8833322526	0	0	0	0	0	50.7807937909	0	0	0.232942393	0	0	0.1220451999	0	0	0	0	0	0	0.2828927528	100.872762323	0	0	0	0	0	0	0	0	0.4539101431	0.443320587	0	0.1132961507	0.3185656437
+Root|Taxa_74	0	0	54.3809381001	0	0	0	0	0	0	0	0	0.2304558325	0.3130208717	0	0	0	0	0	0	0	53.825957476	0	0	0.0572096867	0	0	0	0	0	0	0	0	0.0168392183	0	103.904238553	0.311377563	0	0	0	0	0.4866264421	0	0	0	0	0.3384127287	0	0
+Root|Taxa_75	0.4307504192	51.7633538316	0	0	51.4215501537	0	0	53.6131499522	0.0308805275	0	0	0	52.3514348753	0	0	0	0	0.1696651501	0	0	53.9066979693	0	0	0.1281638803	0	0	0	0	0	0	0	0	0	0	102.958441755	0	0	0	0.0609186756	0	0	0	0	0	0	0	0	0.0993970743
+Root|Taxa_76	0	0	0	0	0	0	0	0.1206515095	0	51.8281885745	0.1220819529	0	0	0	0	50.8290781889	0	0	0	0	54.9709648675	0	0	0	0	0	0	0	0	0	0	0	0	0.4297384241	104.083448416	0	0	0	0	0	0	0	0	0	0	0.3426330327	0	0
+Root|Taxa_77	0	0	0.3601206776	53.0516805067	0	0	0	0	0	0	52.427138658	53.0537708068	0	0	51.9809609217	51.4358398959	0	0	0	0	53.8140262772	0	0.2518970133	0	0	0	0	0	0	0.4379598295	0	0	0	0	101.154787919	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_78	0	50.9977659171	0.205815553	50.3018855792	0.2485134475	0	54.8612742676	0	0	54.7417532517	0	0	0	0	0	0	0	0	0	0	53.2633197891	0	0	0	0	0	0	0	0	0	0	0.1158681467	0	0	103.568400155	0	0	0	0.2837734628	0	0	0	0	0	0	0	0	0
+Root|Taxa_79	53.2388661668	0	0	0	0	0	0	54.4991602286	52.8373936886	0	0	0	0	50.3435784568	0	0	0	0	0	0	53.1761666666	0.179916926	0	0	0	0	0.3216605414	0.0902658359	0	0	0	0	0	0	102.053964001	0	0	0	0.3941161454	0	0.4024567987	0	0	0	0	0	0	0
+Root|Taxa_80	54.7892618987	54.5318181169	0	0	52.5024244557	0	0.2824605846	54.1520416938	0	51.6347900016	54.2899104182	52.9606082444	51.9671909833	0	0	53.5378565436	0	0	0	0.1663700836	0	50.401981588	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_81	0	51.8337862969	54.4049970921	0	51.8557420992	52.5229095783	0.0436287387	0	54.5758600794	0	0	0.191168701	0.0239379812	51.9482488619	0	0	0	0	0.4139979892	0	0	52.9118524132	0	0	0	0	0	0	0	0.366252635	0	0	0	0	0	0	0	0	0	0	0	0	0.3986870557	0	0	0	0	0
+Root|Taxa_82	0	0	0	0	0	0	50.3984918842	0	0	0	54.4976071698	0	0	0	51.0106416962	0	0	0	0	0	0	52.0283746591	0	0	0	0	0	0	0	0	0.1361657687	0	0	0	0	0	0	0	0	0	0	0	0	0.0758464948	0	0	0	0
+Root|Taxa_83	0	0	0	50.3794761616	0	52.7343387153	53.0193553248	51.2257869732	0.0006319949	0	0	0.2720348266	52.9907821351	0	0	0	0	0.2233355579	0	0	0.1050158817	54.9458704446	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2172519645	0	0	0	0	0	0
+Root|Taxa_84	0	0	0	0	0	0	0	0	54.1408497487	52.8337996475	0	0	0	0	0	0	0	0	0	0	0	51.6022529984	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_85	0	52.3235728903	0	0	0.3320989701	0.4248255219	0	0	51.7466072582	50.4503592933	0	54.5914510381	0	0	0	0	0	0	0	0	0	52.4345973615	0	0	0	0	0	0	0	0	0	0	0	0.2927939436	0	0	0	0	0	0	0	0	0	0	0	0.0847785671	0	0
+Root|Taxa_86	0	0	0	0	0	0	0	50.8900286515	0	0	0	0	0	0	0	0	0	0	0	0	0	54.7211930279	0	0	0	0.1860511137	0	0	0	0	0.4099157235	0	0.2539220727	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_87	54.1801851168	0.2755052968	54.4929431324	53.8377295485	0	0	0	52.4040288729	0	0	0	54.7801295644	54.0400263047	0	0	0.1966747301	0	0	0	0	0	51.8162873023	0	0	0	0	0	0	0	0	0	0	0.4679406891	0	0	0	0.2959793419	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_88	0	0	0	53.9390998937	0	51.5633425952	51.2958523861	0	0	53.5152813263	0	0	0	0	54.4016767058	53.2390333136	0.4146855389	0	0	0	0	54.4130820735	0	0	0	0	0	0	0	0	0	0	0	0	0.0204961504	101.326823224	0	0	0	0	0	0	0	0	0	0.1066233614	0.0363300378	0
+Root|Taxa_89	53.0543892529	0	0	0	0	0	53.674266645	0	0	0	0	50.7712795605	0	0	0.1019179568	0	0	0	0	0	0	53.7975387016	0	0.0977898128	0	0	0	0	0	0.0993452942	0	0	0	0	0	100.997769091	0.3619621508	0	0	0	0.3904948159	0	0	0.0872044741	0	0	0	0
+Root|Taxa_90	0	0	50.8115416489	0	50.754506055	0	0	0	52.3941131969	0	0	0	51.8243341099	0	0	51.3772399507	0	0	0	0	0	52.4678412328	0	0	0	0	0	0	0	0	0	0	0	0	0	100.520314429	0	0	0.2133005765	0.1264533195	0	0.1775747368	0	0	0	0	0	0
+Root|Taxa_91	0	0.1440747388	0	52.2420346752	0	0	0	0	0	0	51.306304352	0	0	54.5023389653	51.6143705277	0	0	0	0	0	0	53.2618330615	0	0	0	0	0	0	0	0	0	0	0	0	0	103.306676868	0	0	0	0	0	0	0	0	0	0	0.2591604764	0
+Root|Taxa_92	0	54.6210630241	0	0	53.5305422245	0	0	0	0	0	54.3568545147	0	0.3760358617	53.614501565	0	0	0	0	0	0	0	50.1740916731	0	0	0	0	0.1862491638	0	0	0	0	0	0	0	0	102.868597317	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_93	0	0	52.1871299484	0	0	0	0	0.4391172051	0	0	0	0.376050992	0	0	0	0	0	0	0	0.2089241073	0.1723162287	51.9279788044	0	0	0	0	0	0	0	0	0	0	0	0	0	103.481228475	0	0	0.2200556727	0	0	0	0	0	0	0	0	0
+Root|Taxa_94	0	0	0	0	0	0	0	0	0.3256636158	0	0	0	0	0.364965086	0	0	0	0	0	0	0	53.1229798984	0	0	0	0.1559587637	0.4001034299	0	0	0	0.3262818835	0	0	0.2076639482	0	101.02718778	0	0	0	0	0.2707225645	0.417074225	0	0	0	0	0	0
+Root|Taxa_95	50.6928865646	0	0	0	0	53.8301341769	0	0	0.0103564044	0.3986304957	0	0	0	54.2377241737	52.3696486305	53.0287787824	0	0	0	0.0081133227	0	51.3118465046	0	0	0	0	0	0	0	0	0	0	0	0	0	100.436094872	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_96	0	0	0	0.0306082277	0	0	53.4258105193	0	0	53.4595268013	0	0	54.111068736	0	0	0	0	0	0	0	0	0	51.1151885409	0	0	0	0	0	0	0	0	0.0718316031	0	0	0	0.0856188686	0	0	0	0	0	0	0	0	0	0.1088778111	0	0
+Root|Taxa_97	54.0131831358	0.3162587064	0	0	0	0	0	0	53.5541897884	0	50.8535862291	0	0	0	52.5365058191	0	0.1993715632	0	0	0	0	0	51.2674686071	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3301504415	0	0	0	0	0	0	0
+Root|Taxa_98	0	0	53.7149011582	0.4173513921	51.1073102759	52.9646951786	50.2964122406	50.8655941987	0	0	50.6709458088	0	0	52.5329187655	0	0	0	0	0.1295957195	0	0	0	50.697495499	0	0	0	0	0	0	0	0	0	0.4731593744	0	0	0.1248322964	0	0	0	0	0	0	0	0.2822300821	0	0	0	0.4313599044
+Root|Taxa_99	0	0	0	0	53.9606157979	0	0	0	53.2300749713	0	0	53.3830729082	0	0	0	0	0	0	0	0.2475868847	0	0	52.8931864333	0	0	0.4867202557	0	0	0	0	0	0	0	0	0	0.3688932196	0.0563714613	0	0	0	0	0	0	0	0	0	0.3712734193	0.4418757976
+Root|Taxa_100	50.056868693	53.8826557038	51.7558450346	0	0	0	0	0	52.1246108797	0	0	0	52.5289140861	0	0	0.1157214473	0	0	0	0	0	0	54.1241903946	0	0	0	0	0	0	0	0	0	0	0	0.2108212732	0	0	0	0	0.0601948469	0	0	0	0	0	0	0	0
+Root|Taxa_101	0	53.2749401798	0.3457314983	0	0	54.4227088415	0	0	0	0	52.6300612332	0	54.4154008017	0	0.0671882326	0	0	0	0	0	0	0	53.1007193022	0	0	0	0	0	0	0	0	0	0	0	0.0900018692	0	0.175114791	0.473746692	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_102	52.6950430067	0	0.4354763357	0	54.9986822481	0.053637061	0.3994923336	0	0	0	0	51.4154828937	0.4664348065	53.2002848034	51.817857542	0.2712106096	0	0	0	0	0	0	54.8655468121	0	0.3710474144	0	0	0	0	0	0	0	0	0.3822684551	0	0	0.006423485	0	0	0	0	0	0	0.0162876791	0	0	0.1017937381	0
+Root|Taxa_103	0.3425931453	52.9993627033	0	0	0	0	0	0	0	0	0	52.3092110352	0	0	0.2767992224	0	0	0	0	0	0	0	50.5254117447	0	0	0	0	0	0	0	0	0	0.015074463	0	0	0	0	0	0	0	0.3959814799	0	0	0.1943574615	0	0	0	0
+Root|Taxa_104	0	0	0	53.4713033884	54.3579475688	52.6955685823	50.7596515057	0	0.1731414916	52.1442151554	0	0	0	50.3835988803	0	0	0	0	0	0.4060476246	0	0	50.733284076	0	0	0	0	0	0	0	0	0	0	0	0	0	104.214620416	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_105	0	54.7806460339	0	0	0	54.0826678158	0	0	0.0672647388	52.1675841037	0	0	0	53.9554537185	0	52.4303251482	0	0	0	0.2334350482	0	0.4098819176	54.7028473218	0	0.2667853728	0	0	0	0	0	0	0	0	0	0	0	101.795431091	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_106	0	0	52.5565456759	0	0	0	0	0	0	53.6619334569	0	0	0	0	0	51.3961540827	0	0.2140895941	0	0	0.2995571882	0.221779498	52.5708897858	0	0	0	0	0	0	0	0	0.1233866431	0	0	0	0	102.570605443	0	0	0	0	0	0.4118529029	0	0.3766700102	0	0	0
+Root|Taxa_107	54.5303707299	0	0	51.0579585274	0	0	0	0	0	0	52.9392581011	0	0	0	54.6683053936	0.3356273709	0	0.4393523569	0	0	0	0	53.8546643238	0	0	0.490563499	0	0	0	0	0	0.1035835818	0	0	0	0	101.68701225	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_108	0	0.0831253556	0	50.9377309168	0	0	0	53.5728270552	0	0	0	0	0	0	0	0	0	0	0	0.4250388828	0	0	50.474152487	0	0	0	0	0	0	0	0	0	0	0	0	0	101.552599433	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_109	0	0	0	50.7291731582	0.1487014569	0	50.3194645485	54.8863005781	51.0698065958	0	0	0.3224429939	54.070754096	0	0	52.748043897	0	0	0.2273795381	0	0	0	54.8240827687	0	0	0	0	0	0	0	0	0	0	0	0	0	104.106043157	0	0.4804401716	0	0	0	0	0	0	0	0	0
+Root|Taxa_110	0	0.2551561223	52.683061103	0	0	0	0	0	0.3193054438	0.2135924862	0	52.2430501794	0	0	51.1526587024	50.841997407	0	0	0	0	0	0	50.4151489286	0.1306208862	0	0	0.218684585	0	0	0.4787247711	0	0	0	0	0	0	102.8864492	0	0.2203846269	0.2282855691	0	0	0	0	0.0824536039	0	0	0.1350548782
+Root|Taxa_111	0	0	0	0.4533598523	0	0	0	54.0952514858	0	0.246414477	0	0	0	0	0	0.2734378482	0	0	0	0	0	0	54.3493366089	0	0	0	0	0	0	0	0	0	0	0	0	0	100.442925155	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_112	52.8796511547	0	0	0	0	0	0	0	52.8431676735	52.5435996612	0	0	0.25953187	52.1281290498	0	50.3434325139	0	0.2009750675	0.2712162231	0	0	0	0	52.6989684504	0.3289420094	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.1775970696	0	0	0	0	0.2978109744	0	0	0
+Root|Taxa_113	0	0	0	0	53.8573505274	54.100587941	0	0	0	0	0	0	0.4647473082	0.0778451335	0	0	0	0	0	0	0	0	0	50.8835256873	0	0	0	0	0	0.0377493305	0	0	0	0	0	0.2198580664	0	0	0	0	0	0	0	0	0	0.0487963934	0	0
+Root|Taxa_114	0	0	0	51.3010891504	50.6235825947	0	0	0	54.3294385847	0	52.4915264128	0	50.2204943195	0	54.672706648	0	0.102503602	0	0	0	0	0.4953540541	0	53.5948742929	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2376060834	0	0	0	0	0	0
+Root|Taxa_115	0	50.3846457133	0.0453624707	52.2810809921	0	0	0	0	0	0	0.2962109532	52.356551925	0	0	0	53.2473750995	0	0	0	0	0	0	0	50.4842530361	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_116	0	0	50.7893793239	0	0	0	0	0	0	50.3047078447	52.7281058343	0	0	0	53.1172663716	0	0	0	0	0	0	0	0	51.5151956714	0	0	0	0	0	0	0.4667210276	0	0	0	0	0	0	0.0901319476	0	0	0	0	0	0	0	0	0.4911531549	0
+Root|Taxa_117	54.4214998557	51.706627646	0	52.7351162212	0	0	53.5635180636	50.6309452706	0	0	0	50.3299983355	0	0	0	0	0	0	0	0	0	0	0	50.3673919695	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0622798374	0	0	0
+Root|Taxa_118	0	0	0	50.050071526	51.2057127172	0.3221579782	0	0	54.6853641877	0	0	53.1801030862	0.3483857771	0	0	0	0	0	0.0251496664	0	0	0.4456743928	0.1322548859	50.3810409073	0.3577083992	0	0	0.1275077605	0	0	0	0	0	0	0	0.0602159539	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_119	51.922082888	0	0	0	0	54.6252344439	51.1848430863	0	0	52.4525135577	0.0056796712	52.6744844414	54.9720726431	0	0	54.1421484212	0	0	0	0	0	0	0	53.3926322948	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0022038827	0	0	0	0	0	0.1747333445	0	0	0	0
+Root|Taxa_120	0	0.0535385325	0	0	0	0	53.9885983831	51.1715526045	0	50.7359508767	0	0	0	0.057468086	0	0	0	0	0	0	0.1300280471	0	0	51.1346821396	0.0705595777	0	0	0	0	0	0	0	0	0	0.125181148	0	0	101.991997388	0	0	0.1003367696	0	0	0	0	0	0	0
+Root|Taxa_121	0.0008154986	0	0.3280314362	0	0.1820039777	0	0	0	0.4577127314	0	54.1095884096	0	53.524176304	0	0	0	0	0	0	0	0	0	0	50.2073699901	0	0	0	0	0	0	0.1840049668	0	0	0	0	0	0	102.909580903	0	0	0.181993672	0	0	0	0	0	0	0
+Root|Taxa_122	50.8681143585	0	51.320734447	0.0095748392	0	53.3636168816	0	0	0	0	0	0	52.1852430741	51.262329877	0	0	0	0.0622433267	0	0	0	0	0	53.7047465055	0	0	0	0	0	0	0	0	0	0	0	0	0	100.034546601	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_123	0	0	0	0	0	0	0	0	0.0133316433	0	50.8087609677	0	0.2245461255	0	0	0	0	0.4556854398	0	0	0	0	0	54.3209051793	0	0.3736911327	0	0	0	0	0	0	0	0	0	0	0	104.076577343	0	0	0	0	0	0	0	0.1563644404	0	0.1938368617
+Root|Taxa_124	0	54.159458256	0	0	0	0	0	0	52.4862177718	0	0	0	0	52.496544274	0	54.9051403008	0	0	0	0.4490948229	0	0	0	52.2518193792	0	0	0	0	0	0.0384124203	0.0511539478	0	0	0	0	0	0	101.020590712	0	0	0	0	0	0	0.3109116096	0	0	0
+Root|Taxa_125	0	0	54.433585035	0	0	0.4950654415	54.7477615553	0	0	0	0	0	0	53.1122769028	54.023921379	0	0	0	0	0	0	0	0	53.1890587578	0.4471825391	0	0	0	0	0	0	0	0	0	0	0	0	101.147356821	0	0.2035924438	0	0	0	0	0	0	0	0.1910229169
+Root|Taxa_126	0	52.1375779443	52.1865837244	0	0	52.1370101292	0.2221869542	54.704837352	0	0	0	0.2606668186	0	0	52.935749446	0	0.456212443	0	0	0	0.059009802	0	0	53.5136073383	0	0	0	0	0	0.2580221564	0	0	0	0	0	0	0	101.602167074	0	0	0	0	0.0384759088	0	0	0	0.0426162704	0
+Root|Taxa_127	0	0	0	0	51.6721722493	0	0	50.0454865499	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	51.0920304632	0	0	0	0	0	0	0	0	0	0	0	0	0	104.950389985	0	0	0	0	0.1667482347	0	0	0	0	0
+Root|Taxa_128	0.1331336535	0	0	0	0	0	0	0	53.1804152394	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	50.4100979573	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4921252139	0	0	0	0
+Root|Taxa_129	0	0	0	0	0	0	0	0	0	0	0	0	53.299465996	0	50.8592848841	0	0	0	0	0	0	0	0	0	53.3264729709	0.0137091047	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4537700047	0	0	0	0	0	0.2579709315
+Root|Taxa_130	0	50.2573135552	54.3323301317	0	0	0	53.3188760975	52.486926787	0	52.1968656152	0	51.7574049244	0	52.9868373017	0	0	0	0	0	0.4673611098	0	0	0	0	53.0377205693	0	0	0	0.016580682	0	0	0	0	0	0	0	0.0335388511	0	0	0	0	0	0	0.1914559368	0	0	0	0
+Root|Taxa_131	52.0537010278	0	0	0	0.3107571236	0	0	53.7766034349	51.1158811827	0	50.8621611349	0	0	0	0	54.4723584233	0	0	0	0	0	0	0	0	54.7479994972	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4448196373	0	0	0	0
+Root|Taxa_132	0	0	0	0	0	0.172789176	0	50.8806545977	0	51.4070126504	0	0	51.5052899747	0	0	50.3473589335	0	0	0	0	0	0	0	0	53.4325984047	0	0	0	0	0.3105304607	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2583166482	0
+Root|Taxa_133	0	52.7654105634	0	50.0632713856	0	52.0514206023	50.6029858176	50.7861005586	0	52.4097818001	0	51.7341909396	0	52.0623266294	51.8588365816	53.9426808897	0	0	0	0	0	0	0	0	50.2340335763	0	0	0	0	0	0	0	0.2940476931	0	0	0	0	0.2795160082	0	0	0	0	0.4342558817	0	0	0	0	0
+Root|Taxa_134	54.276968809	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.237846912	0	0	0	0	52.4128774358	0	0	0.2731953573	0	0	0	0	0	0	0	0	0	0	0	0.0488747015	0	0	0.076239614	0	0	0	0	0
+Root|Taxa_135	0	0	52.7355757954	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.1575747261	0	0	0	0	0	53.4331203286	0	0	0	0	0	0	0	0	0	0	0.4680498471	0	0	0	0	0	0	0	0	0.2991610257	0	0	0
+Root|Taxa_136	50.1663935409	50.8493833059	0	52.9072919333	0	0	0	0	0	0	52.6624415517	0	52.909339742	52.3463756458	0	0	0	0	0	0	0	0	0	0	52.9310570222	0	0	0	0.0192803969	0.1048063969	0	0	0	0	0	0	0	0	103.643993471	0.3463790228	0	0	0	0	0	0	0	0.4044988888
+Root|Taxa_137	0	0	50.3271812384	54.6107876926	54.705408862	0	53.3726497122	0.4384243337	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	54.8353816372	0	0	0	0	0	0	0	0	0	0	0	0	0	104.59642024	0	0	0	0	0	0	0	0	0
+Root|Taxa_138	0	0	0	0	50.3508366293	53.6026619085	0.2754542254	0	0	0	0	50.1171609828	50.1887506526	0.3372854117	0	0	0	0	0	0.111696425	0	0	0	0	53.1285946944	0	0	0	0	0	0	0	0	0	0	0	0.1244802407	0	102.391488906	0	0	0	0	0	0	0	0	0
+Root|Taxa_139	0	0	0	50.0851651917	53.0605762996	0	0	0	0	0.129094429	0	0	0	52.6006306021	0	0	0	0	0	0	0	0	0	0	54.3550166147	0	0	0	0	0	0	0	0	0	0	0	0	0	102.410658174	0	0	0	0.1707530269	0	0	0	0	0
+Root|Taxa_140	54.9509896394	0.2643862525	0	0	0	53.3036799045	0	0.4734565241	0	51.9407821206	54.7631097044	0	0	0	53.214956066	0	0	0	0	0	0	0.4481639127	0	0	52.6356438545	0	0	0	0	0	0.4017381726	0	0	0	0	0	0	0.342668534	101.128726959	0	0	0	0	0	0	0	0	0
+Root|Taxa_141	0	0	50.4557417684	0	0	0	0	0	0	0	0	53.7723044977	0	0.4715730335	0	0	0	0	0	0	0.4829783113	0.2970710556	0	0	53.8805006607	0	0	0	0	0	0	0	0	0	0	0	0	0	101.641222915	0	0	0	0	0	0	0	0	0.3372654319
+Root|Taxa_142	0	52.6370559114	0	0	51.2203811896	54.0425062776	51.7800027177	0	54.9863155754	0	0.0443837671	0	0	0	0	0	0.1782547418	0	0	0	0.0976464757	0	0	0	50.5885233525	0	0.2188058424	0	0	0	0	0	0	0.3333792751	0	0	0	0	102.063304696	0	0	0	0	0	0	0	0	0
+Root|Taxa_143	0	0	0.2903019444	0.355206109	0.3868817776	0	0	0	52.350206994	0	50.6961451488	0	0.3403821611	0	52.3388756388	53.2885492361	0	0	0	0	0	0	0	0	54.0373695539	0	0.4911168798	0	0	0	0	0	0.4874580754	0	0	0	0	0	102.204406541	0	0	0	0	0	0	0	0	0
+Root|Taxa_144	0	0	51.8506264628	0	0	0	0	0	0	0.1037747282	0	0	52.8869772838	0	52.2264077052	0	0.1189331919	0	0	0	0	0	0	0	0	51.8338015039	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3940431239	0	0
+Root|Taxa_145	0	52.7823443475	0	0	0	0	52.4609240421	0	0	0	50.0987051436	0	0	50.968244462	0	50.9263535704	0	0	0	0	0	0	0	0	0	54.8807366247	0	0	0	0	0	0	0	0	0	0	0.4132385692	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_146	0	0	0	0	53.7530389298	52.9631250672	0	0	53.5665153562	0	0	52.9559048601	0	0	0	0	0	0	0	0	0	0	0	0	0	50.5760856857	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0801642474	0	0	0	0
+Root|Taxa_147	0	0	54.2907613529	0	0	0	0	54.286398784	0	0	0	52.2872431861	0	0	0	52.0786440961	0	0	0	0	0	0	0	0	0	50.8528614118	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_148	0	0	0	0	0.1047768904	0	0	0	0	0	0	0.2939648053	0	52.4551515426	0	0	0	0	0	0	0	0	0	0	0	53.4002141385	0	0	0	0	0	0	0.1929436104	0	0	0	0.1053827705	0	0	0	0	0	0	0	0	0	0.4051583407	0
+Root|Taxa_149	54.2777035359	0	0	54.187394364	0	0	0	0	0	53.443367591	51.4130125124	0	0	0	0	0	0	0	0	0.4145177727	0	0	0.1005042838	0	0	53.2067688306	0	0.3207376689	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_150	0	0	0	0	0	0	0	0.0612681294	0.4244032829	50.5626683266	0	0.0111672322	53.9739733465	54.2175708967	0	0	0	0	0	0	0.3781355911	0	0	0	0	51.471972695	0	0.3851659467	0	0	0	0	0	0	0	0	0	0.3979675191	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_151	0	0	0	52.7431585634	0	0	0	50.2017836015	0	0	0	53.0748043966	50.5224853183	0	0	0	0	0.1754280507	0	0	0	0	0	0	0	52.4546382453	0.3528670196	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3672557933	0	0	0	0	0	0	0
+Root|Taxa_152	53.0678431488	0	0	0.0546989371	0	0	51.2315217005	0	0	0	0	50.4114866073	0	53.7070251388	52.7692539832	0	0	0	0	0	0	0	0	0	0	50.3134097985	0	0	0	0	0	0	0.1112163285	0	0	0	0	0	0	102.15706607	0	0	0.0546144515	0	0	0	0	0.411126339
+Root|Taxa_153	54.9629484736	50.5573652099	54.2746441994	51.6232779595	0	50.9204894262	52.1654321914	0.1884089049	50.7479203266	0.0221645359	53.1077653448	0	0	0	0	52.6512164947	0	0.2981989018	0	0	0	0.0807715368	0	0	0	50.1370901086	0	0.4542572973	0	0	0	0	0	0.4192882307	0	0	0	0	0	103.662801847	0	0.3979888829	0	0	0	0	0	0
+Root|Taxa_154	0	0	0	50.163331859	54.3225166315	0	0	0	54.2741962951	0.3987782149	0	0.3906929996	0	0	0	0	0	0	0	0	0	0	0	0	0	50.1163702243	0	0	0	0	0	0	0	0	0.3365017002	0	0	0	0	103.671105895	0	0	0	0	0	0	0	0
+Root|Taxa_155	0	54.1850524251	0	0.4907963023	54.9825970045	52.2360487216	0	0.2119051547	52.5585979852	51.509361986	0	0	0	0	53.3575243815	0	0	0	0	0	0.4358898121	0	0	0	0.3494253042	50.397495396	0	0	0	0	0.1242609805	0	0	0	0	0.4671507012	0	0	0.1868497381	104.22255511	0	0	0	0	0.4712259955	0	0	0
+Root|Taxa_156	0	0.1488298437	0	0.1426635063	0	0	53.2356214553	52.332511369	0	51.5725150026	0	0	50.0507645562	0.4215629634	0	0	0	0	0	0	0	0	0.3357119997	0	0	53.1939946532	0	0	0	0	0	0	0	0	0	0.3648066076	0	0	0	103.458287072	0	0	0	0	0	0	0	0
+Root|Taxa_157	50.6978732494	0	50.6734842361	0	0	0	0	51.7777257263	0	0	0	0	0	0	53.7294750771	0	0.1644620726	0	0	0	0	0	0	0	0	54.1941881246	0	0	0	0	0	0.3476189713	0	0	0.3611656822	0	0	0	0	102.508893906	0	0	0	0	0	0	0.3394288541	0.3707488064
+Root|Taxa_158	0	53.7561622573	0	0.1709683787	51.9863822632	52.1013896181	0	0	0	0	0	0	0	0	0	52.5375657735	0	0	0	0	0	0	0	0	0	50.2073591757	0	0	0.1038712117	0	0	0	0	0	0	0	0	0	0	104.721558927	0	0	0	0	0	0.2370944335	0	0
+Root|Taxa_159	0.3874316195	0	0	0	0.0552919119	0	0	0	0	0	54.4124660215	0	0	0	0.2227858482	0	0	0	0.3861346603	0	0	0	0	0	0	51.0208960264	0	0	0	0	0	0	0	0	0	0	0	0	0	103.997856026	0.2930440729	0.2454792928	0	0	0	0	0	0
+Root|Taxa_160	0	0	52.9419023174	0	0	0	52.4349614444	53.1019048862	0	0	0	0	53.768020292	50.9370694265	0	0	0	0	0.4617021973	0	0	0	0	0	0	0	53.8639548458	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_161	0	0	0	0	0	0	50.9463874577	0	50.2973248145	52.3586283584	54.0246650833	53.5797750183	52.58628782	0	54.6614480918	0	0.1450967381	0	0	0	0	0	0	0	0	0	50.3155658458	0	0	0.4296255491	0	0	0	0	0	0.4629821219	0	0	0	0	0.1737198594	0.2686717286	0	0.0978520167	0	0	0	0
+Root|Taxa_162	53.1480600841	0	0	0	0	0	0	0	0	0	52.3645492168	0	0	53.907858137	0.0830708636	0	0	0	0	0	0	0	0.0522518002	0.0998390594	0	0	54.6418044878	0.1071592541	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_163	0	0	0	0	0	0	0	0	0.1032253511	0	0	0	0	0	0.1375874333	51.6200703686	0	0	0	0	0	0	0	0.4511394821	0	0	53.7873572369	0	0	0	0	0.2951931824	0	0	0.1880146955	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_164	0.4835113024	0	0	50.3719699426	0	51.9771225761	0	0	0	0	0	50.3547158319	50.2502208924	0	53.8459195753	54.3741304475	0.024577205	0	0	0	0	0	0	0	0	0	50.3286767397	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3925771428	0	0	0	0	0
+Root|Taxa_165	52.0968027182	0.1727382739	0	0	52.0064350501	0	0	50.5583883437	53.6043075055	53.0323951087	0.015868495	0.2276317641	0	0	0	0	0	0	0	0.4527866454	0	0	0.3027420952	0	0.384873724	0	53.9270526894	0	0	0	0	0	0	0.1809349348	0.3820501581	0	0	0	0	0.4145347686	0	0	0	0	0	0	0	0
+Root|Taxa_166	52.7505897873	53.9549468598	51.4271330184	52.6350719286	0	0	0	51.4072420959	0.1322200828	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3235715088	0	0	51.7533492233	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.3218342588	0
+Root|Taxa_167	0	0	0	0.3558686048	0	0	0	0	0	0	0	0	0	0	0.1432562186	50.6823351017	0	0	0	0	0	0	0.2934262859	0	0	0	50.0240967706	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_168	0	0	0	0	0	54.3451420666	0	51.3494668429	51.5131678207	52.5733542268	0.3945348022	0	53.826644509	0	0	0	0	0	0	0	0	0	0	0	0	0.0624962977	50.2705591379	0	0	0	0	0	0	0	0	0	0.3168581661	0	0	0	100.792598893	0	0	0	0.1824407078	0	0	0
+Root|Taxa_169	0	52.3081498196	52.0504650623	0	0	0	0	0	0.20752284	0	0	50.1886994174	0	0.4728794387	54.1324005816	0	0.4331534803	0	0	0	0.0642689439	0	0.1251965139	0	0	0	53.9445664526	0	0	0	0	0	0	0	0.399145223	0	0	0	0	0	100.661367081	0	0	0	0	0	0	0
+Root|Taxa_170	0	53.7805706154	0	50.9944363379	51.9866603495	53.6859953206	0	0	0	0	51.983336686	0	0	0	0	0	0.4572159306	0.0492165376	0	0	0	0	0	0	0	0	50.915460038	0	0	0	0	0	0	0	0	0	0	0	0	0	102.196365333	0	0	0.1419077746	0	0	0	0
+Root|Taxa_171	0	53.2094792455	0.1489580956	0	52.2630749516	0	0	0	50.1948292546	0	0	0	0	0	0	54.2354745265	0	0.0333639634	0	0	0	0	0.1990114174	0	0	0	54.8033722735	0.4511957743	0	0	0	0.232926566	0	0	0	0	0	0	0	0	102.98051989	0	0	0.3016712375	0	0	0	0
+Root|Taxa_172	51.0671898877	0	0	0	0	0.0511781296	0	0	0	0	0.2109176808	50.4738026808	0	0	0	0	0	0	0	0	0	0	0	0	0	0	50.735860776	0	0	0	0	0	0	0	0	0	0.4304878063	0	0	0	100.325004789	0	0	0	0	0	0	0
+Root|Taxa_173	0	0	0	0	54.0128674588	0	54.3605479719	0	0	0.468473056	53.7053016943	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	52.4806040921	0	0	0	0.4440176055	0	0	0	0	0	0	0	0	0	102.327508124	0.1299130454	0	0	0	0	0	0
+Root|Taxa_174	0	0	54.5156851	52.5986848711	0	51.4073193408	0	0	0	52.0673966016	0	0.2029731535	0	54.7115612862	0	0.1249151498	0	0.0041863337	0	0	0	0	0	0	0	0	53.3096691132	0	0.2252071989	0	0	0	0	0	0	0	0	0	0	0	101.371606613	0	0	0	0	0	0	0
+Root|Taxa_175	0	0	0	0	0	0	50.3537914845	0	0	0	0	0	0	51.0325020147	51.5109616955	0.4444300716	0	0	0	0	0	0	0.0713851372	0	0	0	51.4884897233	0.1621744325	0.0650189427	0	0	0	0	0	0.2974779045	0	0.4862985628	0	0	0	103.478234958	0	0	0	0	0	0	0
+Root|Taxa_176	0	0.4555503772	0	0	0	0	53.8636925608	0	52.6708232365	0	0	0	0	0	0	0	0.4237214796	0.3767939371	0	0	0	0	0	0	0	0	0	52.0523308197	0	0	0	0	0	0	0	0	0	0	0.2257095009	0	0	0	0	0	0	0	0	0
+Root|Taxa_177	50.475411618	0	0	52.2346780318	0	0	0.3436295501	0	53.7249478704	51.0031927895	53.9509039005	53.833396097	0	0	0	0	0	0	0	0	0	0.3597522784	0	0	0	0	0	50.109383045	0	0	0	0	0	0.3478571808	0.2179063686	0	0.2819056479	0	0	0	0	0	0.0854901409	0	0.2940278032	0	0	0
+Root|Taxa_178	51.1271601449	54.8860173667	0	0	0	0	0	0	0	0	0	0	0	0	0	51.6268134565	0	0	0	0	0	0	0	0	0	0	0	51.3849503597	0	0.4858649487	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_179	0	0	0	0	52.166291339	0	0	53.765176324	0	0	0.1970422822	0	0	0	0	0	0.4265009899	0	0	0	0	0	0	0	0	0	0	52.5279778091	0	0	0	0	0	0	0.3352695026	0	0	0.33414374	0	0	0	0.3020387723	0	0	0.2431528132	0	0	0
+Root|Taxa_180	0	0	0	0	0.3200819933	0	0	0	0	0	0	50.583385197	0	0	0	0	0	0	0	0	0.0013638078	0	0	0	0	0	0	53.4349148139	0	0	0	0	0	0	0.4186021993	0	0	0.1217993021	0	0.3372202371	0	0	0	0	0	0	0	0
+Root|Taxa_181	0.2819251852	0	0	54.7493143772	54.2492072498	0	0	50.8945849016	0	0	0	0	0.4230922399	52.4557762201	0	50.5470429792	0	0	0	0	0	0	0	0	0	0	0	50.262423604	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_182	0	0	0	0	0	0	0	0	52.8860624056	0	0	0	0	0	0	0	0	0	0	0	0.2177694838	0	0	0.0426182111	0	0	0	51.7431170066	0	0	0	0	0	0.4120160848	0	0	0	0	0	0	0	0	0	0	0	0	0.4202458646	0
+Root|Taxa_183	0	0	51.4057895825	0	0.348959037	51.813387383	53.0094547995	0	0	0	54.1428713129	0	51.868728964	0	0	52.2561040348	0	0	0	0	0	0.2599077514	0	0	0	0	0	54.7085060955	0	0	0	0	0	0	0	0	0	0	0	0.0300257631	0	0.058526713	0	0	0	0	0	0
+Root|Taxa_184	0	0	0	0.3137102393	0	52.1430757063	0	0	0	0	0	51.3195918888	54.8671168984	0	54.4710598727	0	0	0	0	0.2815828512	0	0	0	0.4589160147	0	0.3225932485	0	51.5141825365	0	0	0	0	0	0	0	0	0	0	0	0	0	103.059342486	0	0	0	0.2181513139	0	0.2214639224
+Root|Taxa_185	0	0	54.389314375	0	0	0	0	0	0	54.7267292213	0	0	51.5915698536	0	50.219987935	0	0	0	0.4246763691	0	0	0	0	0.3108703032	0	0	0	50.6423249736	0	0	0	0.3046097687	0	0	0	0	0	0.1816515957	0	0	0	104.657049771	0	0	0	0	0	0
+Root|Taxa_186	0.2578890924	0	0	54.9417630492	0	0	52.5251964762	50.6241253824	0	54.336635758	0	0	53.8959566907	50.6069116272	0	0	0	0	0	0.3393123192	0	0.2282115619	0	0	0	0	0	52.3706346328	0	0	0.3694309992	0	0	0	0	0	0	0	0.0214825341	0	0	100.213819152	0.4798189848	0	0	0	0	0
+Root|Taxa_187	52.9225564174	50.9556974217	0	51.9632176621	53.041227125	52.1350513686	0	0	0	0.0109429699	0	52.6077372192	0	0	52.6016736512	0	0	0	0	0	0	0	0	0	0.1115057321	0	0	53.6644244189	0	0.0444891502	0	0.2264456126	0	0	0	0	0	0	0	0	0.4351778245	104.24137393	0	0	0	0.302465445	0	0.003393226
+Root|Taxa_188	0	0	50.7929335187	0	0	0	0	0.0230501905	0	53.6741909148	50.5908790468	0	0	54.3781425253	53.9150822838	51.9440621712	0	0	0	0	0	0	0	0	0	0	0	51.3050243267	0.3083766005	0	0	0	0	0	0	0	0	0	0	0	0	101.222657064	0	0	0	0	0	0
+Root|Taxa_189	53.1156860216	0	50.2004019551	0	53.5393781093	0	0	0.4767799759	0	0	0	0	0	0	0	0	0	0	0.2510714584	0	0	0	0	0	0.0313474882	0	0	54.3585907576	0	0	0	0	0	0	0	0.3815601461	0	0	0.0661751984	0	0	103.093749372	0	0.3328062103	0	0	0	0
+Root|Taxa_190	0	51.8421062419	0	0	0	53.3427531356	52.5952915076	0	52.2138916423	0	0.1584601307	0	0	0	0	0	0	0.1606301123	0	0	0	0	0	0	0	0	0	52.6852858362	0	0	0	0	0	0	0	0	0	0	0	0	0	104.906827283	0.2424074586	0	0	0	0	0
+Root|Taxa_191	0	51.2781148402	0	0	0.2445757987	0	0	52.2653477791	0	0	50.7773450711	0	0.096988651	52.9500712259	0	0	0	0	0	0	0	0	0	0	0	0	0	50.3546323716	0.3642238437	0	0	0.2580494612	0	0	0	0	0	0	0	0.4405137253	0	102.645104533	0	0	0	0	0	0
+Root|Taxa_192	52.0827037946	0	0	53.3591565492	0	0	52.3984658047	0	0	0	0	0	53.1365027963	52.1224468617	0.2413320858	0	0	0.4208501086	0	0	0	0	0	0	0	0	0	0	54.1591071637	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_193	51.1294803083	54.000378627	0	0	0	52.1201148141	0	51.4793102236	0	52.7028030721	0	0.2554842302	0	51.0278208653	0	0	0	0	0	0	0	0	0	0	0	0	0	0	52.5398921345	0	0	0	0.2921036679	0	0	0.0121176867	0	0	0	0	0	0	0.1737701306	0	0	0	0	0
+Root|Taxa_194	0	53.3175217655	54.3162751517	0	50.1223851156	0	0.4184720644	53.8254943468	0	53.7365842832	0	50.3085076248	0	0.0440271517	54.2949627388	0	0	0	0	0	0.202831309	0	0	0	0	0.1944977516	0.0278157737	0	51.0262433359	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2768269464	0	0.1355769703	0
+Root|Taxa_195	0	0	0	0	0	0	0	0	0	54.2177701685	52.9208199615	0	51.3350564705	0	0	53.6987592548	0	0	0	0	0	0	0	0	0	0	0	0	50.4505941005	0	0	0	0.2366040567	0	0	0.0706983798	0	0.4048068191	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_196	0	0	50.6109850879	0	0	51.0658949888	0	0	0	0.4576835496	52.2501412607	0	53.2433525996	0	0.0866719841	0.1044734051	0	0	0	0	0	0.496363439	0	0	0	0	0	0	53.8202104672	0	0	0	0	0	0	0	0.4776304856	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_197	0	0	51.6313839246	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	52.7963856942	0	0	0	0	0	0	0.2973905015	0.0408162681	0	0	0	0	0	0	0.0982300275	0	0	0	0
+Root|Taxa_198	0	53.047207326	0	0	0	53.2380971568	54.5651723179	0	0	0	0	50.0759819974	0	0	0	0	0	0	0	0	0	0.191167896	0	0	0	0	0	0	50.0878653178	0	0.1127647836	0	0	0	0.3103576187	0	0	0	0	0	0	0	0	0	0.3988252675	0	0	0
+Root|Taxa_199	0	0	0	0	52.0714878521	0	0	51.3096678644	0	0	50.4793163079	0	0	0	53.2342697162	0	0	0	0	0	0	0.322882781	0	0	0	0.0518037931	0	0	53.2300848959	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2133714863	0	0	0	0.4607870842
+Root|Taxa_200	0	0	0	0	0	0	0	0	54.8676932307	0	0	0	54.8465490773	0	50.0099690264	50.7561511906	0	0	0	0	0.1307286405	0	0	0	0	0.0415073515	0	0	52.6545608425	0	0	0	0	0	0	0.184158767	0	0	0	0	0	0	104.026411169	0	0	0	0	0
+Root|Taxa_201	0	0	0.0684272076	0	0	0	0	0	0	0	0	0	0	0	0	0.3333347799	0	0	0	0	0	0	0.0661544997	0	0	0	0	0	51.4443606906	0	0	0.0771979655	0	0	0	0	0	0	0	0	0	0.2761105027	102.275033805	0	0	0	0	0
+Root|Taxa_202	54.5088647863	0	0	0	0.0321756373	0	0	0	52.0726025305	0	0	53.0253269521	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.2083645807	0.1062779642	54.2981710912	0	0	0	0	0	0	0	0.3699929419	0	0	0	0	0	101.947183747	0	0	0	0	0
+Root|Taxa_203	0	0	0	53.0890034691	53.4478307116	0	0	52.0807007841	0	0	0.3932551686	0	0	50.8859238684	0	0	0	0	0	0	0	0	0.4819659907	0	0	0	0	0	50.4463062145	0	0	0	0	0	0.0022291218	0	0	0	0.0260392603	0	0	0	103.245769713	0	0	0	0	0
+Root|Taxa_204	0	0	0	50.2568349213	0	0	0	0	52.4975993007	0	0	0	0	0	0	0	0.3938938146	0	0	0	0	0	0	0	0.1752154	0	0	0	50.8254339282	0	0	0	0	0	0	0	0	0	0	0.2911676263	0	0	102.001279284	0	0	0	0	0
+Root|Taxa_205	0	0	52.7163994001	0	0	0	52.2676963135	0	0	0	53.5958965115	0	0	0.3119935484	0.476493088	0.0382216967	0	0	0	0	0	0	0	0	0	0	0.2807420398	0	50.4720582791	0	0	0.0450551832	0.3918770618	0	0	0	0	0	0	0	0	0	102.486209016	0	0	0.4059267464	0.4356299041	0.4526614144
+Root|Taxa_206	0	0	0	53.5087326257	0	53.0326686943	53.9077681483	0	0	0	0	0	0	53.8938971864	52.5574477678	53.8098522525	0	0	0	0	0	0	0	0	0	0	0	0	54.2401876661	0.2242680732	0.115238483	0	0	0	0	0.4881061169	0	0	0	0	0	0	102.186344705	0	0	0	0	0
+Root|Taxa_207	51.2183210273	51.1563774994	0	0	54.1762942805	0	0	0	51.2704897195	52.8968592985	0	52.288966104	0	0	0	54.3906412249	0	0	0	0	0.0048042154	0	0	0	0	0	0	0	51.2408250309	0	0	0	0	0	0	0	0	0	0	0	0	0	103.110597368	0	0	0	0	0
+Root|Taxa_208	0	0	0	0.0546805022	0	0.1599409596	50.0472074245	0.4099746803	51.4051352965	0	0	0	0	53.2887290406	0	0.0848935397	0	0	0	0	0	0	0	0.1555916655	0	0	0	0	0	53.0135385478	0.1497035187	0	0.0691993821	0	0.3373772825	0	0	0	0	0	0	0	0	0	0.2522945018	0	0	0
+Root|Taxa_209	0	50.1030172793	0	0	0	0	54.1650217307	52.2230603121	0	0	0	0	0	0	0	0.1143171628	0	0	0	0	0	0	0	0	0	0	0	0	0	51.8871962649	0.299430337	0	0	0	0	0	0	0.4798221512	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_210	0	0	0	0	0	0	50.5549695516	52.1576796275	0	0	0	0	0	0	0	52.3992524271	0	0	0	0.1706714754	0	0	0	0	0.3811782646	0.0008517706	0	0	0	51.0207565229	0	0	0	0	0	0	0	0	0	0	0.0102807436	0	0	0	0	0.0085181585	0	0
+Root|Taxa_211	50.536257303	0	0	0	0	0	0	0	0	0	51.9813477573	0	51.5911214861	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	53.1296406718	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4077664043	0
+Root|Taxa_212	0	0	0	0	0.4699813783	0	0	0	0	54.5530559822	0	50.743119663	51.3155881447	0	0	53.2941828392	0	0	0	0	0	0	0	0	0	0	0.0342022552	0	0	54.1038020638	0	0	0	0.040960994	0	0	0	0.4947938425	0	0	0	0	0.3862038599	0	0	0	0	0
+Root|Taxa_213	0.3399472909	0	0	0	0	0	54.6671775034	0.050131803	50.2999962265	0	51.8713213189	0	0	0	53.2943170335	51.1243603164	0	0	0	0	0	0	0	0	0	0	0	0	0	50.6101294432	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+Root|Taxa_214	50.0115213059	0	0	0	0	50.8371273498	0	0	0	54.4139864126	0	0	0	0	0	0	0	0	0	0.3015435222	0	0	0	0	0	0	0	0.0872919265	0.2777439996	50.3179817753	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.4557640334	0	0	0
+Root|Taxa_215	0	0.4561298327	0	53.5216413012	54.8891010063	50.9129555637	0	0	0	0	0	0	0	0	53.4880926895	0	0	0	0	0	0	0	0	0	0	0	0	0.1940475073	0.2803421878	50.3585027491	0	0	0	0.345883306	0.3534255574	0	0	0	0	0	0.2075798899	0	0.4493876473	0	0	0	0	0
+Root|Taxa_216	0	52.664567111	54.9286304319	0	0	0.3528460271	0	0	0	53.8271900954	53.2864160864	0	0	53.8916659856	0	0	0.0390396631	0	0	0	0	0	0	0	0	0	0	0	0.0501403367	53.9106611035	0	0	0	0	0	0	0	0	0	0	0	0	0	102.503416561	0	0	0.2323723816	0
+Root|Taxa_217	0	0	0	53.8189770697	0	0	0	0	0	0	51.0739213403	51.9325727684	53.6586894371	0	50.8848681615	0	0	0	0	0	0	0.4134750657	0.2984209586	0	0	0	0	0.3984011824	0	50.0637489202	0.1745273923	0	0	0	0	0	0	0	0	0	0	0	0.0970082737	102.133370457	0	0	0	0
+Root|Taxa_218	53.6309027759	0	0	54.1993531611	0	53.8609164351	0	0	0	0	0	0	0	0	0	0	0	0	0.4230445366	0	0	0	0	0	0	0.3460879368	0	0	0	54.0328089965	0	0	0	0	0	0	0	0	0	0	0.1875089533	0	0	102.742579014	0	0	0	0
+Root|Taxa_219	0	0	50.6959593123	0	0	0	0	0	52.9583336932	51.2063060177	0	0	0	0	0.1839092432	0.1624310372	0	0	0.2217437424	0	0	0	0	0	0	0	0	0	0	51.3989543421	0.1469196015	0	0	0.4515484111	0	0	0	0	0	0	0.362398058	0	0	103.426555217	0	0	0	0
+Root|Taxa_220	53.138860148	54.260252989	50.1122213715	0	53.7052604162	0	0.4760342302	0	51.9385050693	0.191283382	0	0	51.217538964	0	0.2580800578	50.1174597734	0	0	0	0	0	0	0.115889335	0	0	0	0	0	0	53.3111145776	0	0	0	0	0	0	0	0	0	0	0	0	0	104.430682236	0	0	0	0
+Root|Taxa_221	0	0.3384535892	0.4106893002	52.1411487055	50.5241190477	0	0	53.9774121283	0	0	0	52.1082021353	0	0	0	0	0.4172253944	0	0	0	0	0	0	0	0	0	0	0	0	50.9817139231	0	0	0	0	0	0	0	0	0	0.4224842988	0	0	0	102.376952212	0.2260951816	0	0.3067861355	0
+Root|Taxa_222	0	52.3172435891	52.6471280765	0	51.567115685	0	0	53.6724555185	0	0	0	0	0	54.2428549188	51.6482654065	0	0	0	0	0	0	0.2425898966	0	0	0	0	0	0	0	51.1118820396	0	0	0	0	0	0	0	0	0	0	0.2951844288	0	0	102.047792613	0	0	0	0
+Root|Taxa_223	0	0	0.2600381862	0	0	50.2577764475	0.4992511416	0	0	0	0	51.3720073928	0	53.1526569712	0.3864806128	0	0	0.0519771654	0	0	0	0	0	0.3896198936	0	0	0	0.4447746424	0	51.736707456	0	0	0	0	0	0	0	0	0	0	0	0	0	103.397909634	0	0	0	0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/micropita_output	Mon May 19 02:28:59 2014 -0400
@@ -0,0 +1,1 @@
+representative	Sample_22_R	Sample_20_R	Sample_44_T	Sample_28_R	Sample_40_E	Sample_10_D	Sample_26_R	Sample_46_T	Sample_32_E	Sample_16_R	Sample_23_R	Sample_21_R	Sample_45_T	Sample_29_R	Sample_41_E	Sample_1_D	Sample_27_R	Sample_47_T	Sample_33_E	Sample_17_R