## here() starts at /home/runner/work/phytoclass/phytoclass
# Load the sample matrix from a file
# If your file does not contain sample names (e.g., Sample_1, Sample_2), you may omit `row.names = 1`
# In that case, do: S_matrix <- read.csv(here("vignettes/custom-example-S.csv"))
S_matrix <- read.csv(here("vignettes/custom-example-S.csv"), row.names = 1)
# pigment-taxa occurrence matrix (specific to an oceanographic region)
F_matrix <- read.csv(here("vignettes/custom-example-F.csv"))
# === remove numeric rownames introduced by read.csv
if (all(grepl("^[0-9]+$", rownames(F_matrix)))) {
print("dropping unneeded numeric index")
# Set the first column as row names
rownames(F_matrix) <- F_matrix[[1]]
# Remove the first column
F_matrix <- F_matrix[, -1]
}
## [1] "dropping unneeded numeric index"
min_max_matrix <- read.csv(here("vignettes/custom-example-min_max.csv"))
# === remove numeric rownames introduced by read.csv
if (all(grepl("^[0-9]+$", rownames(min_max_matrix)))) {
print("dropping unneeded numeric index")
# Set the first column as row names
rownames(min_max_matrix) <- min_max_matrix[[1]]
# Remove the first column
min_max_matrix <- min_max_matrix[, -1]
}
## [1] "dropping unneeded numeric index"
phytoclass::simulated_annealing(
S_matrix,
Fmat = F_matrix,
user_defined_min_max = min_max_matrix,
verbose = FALSE
)
## $`F matrix`
## Per X19but Fuco Neox Pra Viol X19hex
## Prasinophytes 0.0000 0.0000 0.0000 0.1026 0.06439076 0.0995194 0.0000
## Chlorophytes 0.0000 0.0000 0.0000 0.0117 0.00000000 0.0150000 0.0000
## Cryptophytes 0.0000 0.0000 0.0000 0.0000 0.00000000 0.0000000 0.0000
## Diatoms-2 0.0000 0.0000 0.7798 0.0000 0.00000000 0.0000000 0.0000
## Dinoflagellates-1 0.3593 0.0000 0.0000 0.0000 0.00000000 0.0000000 0.0000
## Haptophytes 0.0000 0.2293 0.2243 0.0000 0.00000000 0.0000000 1.0455
## Pelagophytes 0.0000 0.4638 1.1558 0.0000 0.00000000 0.0000000 0.0000
## Syn 0.0000 0.0000 0.0000 0.0000 0.00000000 0.0000000 0.0000
## Allo Zea Chl_b Tchla
## Prasinophytes 0.0000 0.1393282 0.6264548 1
## Chlorophytes 0.0000 0.0186000 0.1666076 1
## Cryptophytes 0.3803 0.0000000 0.0000000 1
## Diatoms-2 0.0000 0.0000000 0.0000000 1
## Dinoflagellates-1 0.0000 0.0000000 0.0000000 1
## Haptophytes 0.0000 0.0000000 0.0000000 1
## Pelagophytes 0.0000 0.0000000 0.0000000 1
## Syn 0.0000 1.0043000 0.0000000 1
##
## $RMSE
## [1] 0.0137707
##
## $`condition number`
## [1] 2161.651
##
## $`Class abundances`
## Prasinophytes Chlorophytes Cryptophytes Diatoms-2 Dinoflagellates-1
## Sample_1 0.03722488 0.30070486 4.580581e-03 0.01550275 0.000000e+00
## Sample_2 0.01275580 0.07231360 5.257747e-03 0.01526921 3.761001e-04
## Sample_3 0.01864929 0.27410748 1.671305e-02 0.25776981 3.862755e-04
## Sample_4 0.02997380 0.25120405 1.546202e-02 0.27330389 3.556375e-04
## Sample_5 0.07585940 0.05155361 4.172512e-03 0.32974139 2.890611e-04
## Sample_6 0.05133399 0.03984575 1.659653e-06 0.22902909 2.840551e-02
## Sample_7 0.03760215 0.00000000 1.802753e-03 0.13100544 0.000000e+00
## Sample_8 0.01985617 0.00000000 1.178212e-02 0.49362242 7.462289e-05
## Sample_9 0.03073371 0.00000000 1.616394e-01 0.71178507 2.630993e-04
## Sample_10 0.04460580 0.00000000 7.806577e-03 0.08642592 0.000000e+00
## Sample_11 0.21915626 0.00000000 7.871247e-02 0.56871350 0.000000e+00
## Sample_12 0.13438771 0.00000000 0.000000e+00 0.27996853 0.000000e+00
## Sample_13 0.12748142 0.00000000 0.000000e+00 0.15258662 0.000000e+00
## Sample_14 0.18712049 0.00000000 2.009938e-02 0.24599951 0.000000e+00
## Sample_15 0.34017682 0.00000000 9.363367e-02 0.82917603 1.333490e-03
## Sample_16 0.27104287 0.00000000 1.819945e-02 0.20719304 0.000000e+00
## Sample_17 0.62945428 0.07327339 4.650465e-02 0.76618086 1.197267e-03
## Sample_18 0.20022350 0.00000000 2.663864e-02 0.19669374 1.554371e-05
## Sample_19 0.37936147 0.00000000 5.288909e-02 0.45085165 3.567750e-04
## Sample_20 0.24665718 0.17772618 6.058852e-02 0.29269780 0.000000e+00
## Sample_21 0.34214188 0.00000000 4.543402e-02 0.38505293 2.350318e-04
## Sample_22 0.17605589 0.16333138 4.721676e-02 0.70789239 0.000000e+00
## Sample_23 0.15150120 0.11051138 3.846057e-02 0.48434586 2.326671e-04
## Sample_24 0.09324426 0.00000000 2.870376e-02 0.13333509 0.000000e+00
## Sample_25 0.12326038 0.01988455 3.647515e-02 0.19010830 2.688910e-05
## Sample_26 0.10781162 0.00000000 2.119733e-02 0.17517757 0.000000e+00
## Sample_27 0.06445204 0.00000000 1.526361e-02 0.09314862 0.000000e+00
## Sample_28 0.06558992 0.00000000 1.240342e-02 0.09034651 0.000000e+00
## Sample_29 0.11016937 0.05337284 2.280067e-02 0.02984025 0.000000e+00
## Haptophytes Pelagophytes Syn
## Sample_1 0.07524083 0.02525610 0.000000000
## Sample_2 0.01872016 0.02101739 0.000000000
## Sample_3 0.01797233 0.02710177 0.000000000
## Sample_4 0.01938263 0.03101796 0.000000000
## Sample_5 0.02154281 0.04704121 0.000000000
## Sample_6 0.01818333 0.03890068 0.000000000
## Sample_7 0.02238097 0.01890869 0.000000000
## Sample_8 0.12757609 0.03558859 0.000000000
## Sample_9 0.12998642 0.05049234 0.000000000
## Sample_10 0.03982026 0.02734143 0.000000000
## Sample_11 0.11500276 0.04875356 0.009322175
## Sample_12 0.02745492 0.02874570 0.010647457
## Sample_13 0.02598091 0.03485894 0.000000000
## Sample_14 0.01782070 0.01825010 0.000000000
## Sample_15 0.10763894 0.00920525 0.000000000
## Sample_16 0.03728817 0.03739140 0.000000000
## Sample_17 0.14388068 0.08084836 0.000000000
## Sample_18 0.07739358 0.07670568 0.000000000
## Sample_19 0.10937292 0.08109905 0.000000000
## Sample_20 0.11610206 0.09712925 0.000000000
## Sample_21 0.08836210 0.09082244 0.000000000
## Sample_22 0.12130672 0.03366534 0.000000000
## Sample_23 0.09085173 0.04316310 0.000000000
## Sample_24 0.05520423 0.03816844 0.000000000
## Sample_25 0.05286129 0.03302571 0.000000000
## Sample_26 0.02037778 0.02520929 0.000000000
## Sample_27 0.02094857 0.04170026 0.001205417
## Sample_28 0.02037036 0.02257426 0.000422622
## Sample_29 0.04371528 0.04157056 0.000000000
##
## $Figure

##
## $MAE
## Per X19but Fuco Neox Pra Viol
## 4.660601e-05 2.924265e-05 1.835739e-03 2.707596e-03 1.625665e-02 5.260415e-03
## X19hex Allo Zea Chl_b Tchla
## 6.516196e-05 7.150956e-05 6.404516e-03 8.679481e-03 2.531543e-02
##
## $Error
## Per X19but Fuco Neox Pra
## Sample_1 0.000000e+00 -3.158456e-05 1.982755e-03 -0.0027912145 0.015401040
## Sample_2 -4.634711e-04 1.731226e-04 -1.086796e-02 -0.0024417361 0.012831644
## Sample_3 -1.368572e-04 5.112094e-05 -3.209173e-03 0.0017239924 0.008552351
## Sample_4 -1.220508e-04 4.559022e-05 -2.861976e-03 0.0013865045 0.009872075
## Sample_5 -1.015942e-04 3.794896e-05 -2.382288e-03 0.0020940601 0.008743850
## Sample_6 -8.888447e-07 3.320144e-07 -2.084257e-05 0.0024893356 0.009846013
## Sample_7 0.000000e+00 -4.858317e-05 3.049861e-03 -0.0004448649 0.012152055
## Sample_8 -1.976012e-05 7.381094e-06 -4.633562e-04 0.0012597708 0.003908468
## Sample_9 -4.635759e-05 1.731617e-05 -1.087042e-03 0.0009242851 0.002811105
## Sample_10 0.000000e+00 -4.806617e-06 3.017406e-04 -0.0014270633 0.011811887
## Sample_11 0.000000e+00 -1.008189e-06 6.329017e-05 -0.0025805699 0.010109401
## Sample_12 0.000000e+00 -2.717187e-05 1.705744e-03 0.0033748803 0.011290094
## Sample_13 0.000000e+00 -9.623230e-07 6.041088e-05 -0.0012410988 0.016378814
## Sample_14 0.000000e+00 -8.395570e-05 5.270410e-03 -0.0014220855 0.032477809
## Sample_15 -1.746663e-04 6.524393e-05 -4.095759e-03 0.0030679374 0.012000584
## Sample_16 0.000000e+00 -1.620927e-05 1.017555e-03 -0.0035291071 0.040839563
## Sample_17 -1.210926e-04 4.523232e-05 -2.839508e-03 -0.0049800374 0.022896929
## Sample_18 -4.626495e-06 1.728157e-06 -1.084869e-04 -0.0036189630 0.028390179
## Sample_19 -5.809592e-05 2.170085e-05 -1.362295e-03 -0.0045249685 0.025444380
## Sample_20 0.000000e+00 -3.422306e-05 2.148390e-03 -0.0060349662 0.017766708
## Sample_21 -4.304560e-05 1.607903e-05 -1.009379e-03 -0.0064793139 0.028728259
## Sample_22 0.000000e+00 -6.777512e-06 4.254657e-04 -0.0034008616 0.009577962
## Sample_23 -4.822932e-05 1.801533e-05 -1.130932e-03 -0.0011599777 0.010155328
## Sample_24 0.000000e+00 -1.056736e-05 6.633778e-04 0.0051001169 0.009121459
## Sample_25 -1.083817e-05 4.048436e-06 -2.541450e-04 -0.0032475221 0.011794338
## Sample_26 0.000000e+00 -1.541952e-05 9.679773e-04 -0.0036425196 0.028230687
## Sample_27 0.000000e+00 -7.172627e-06 4.502695e-04 0.0007214396 0.018519847
## Sample_28 0.000000e+00 -2.025563e-05 1.271570e-03 -0.0019085738 0.021583032
## Sample_29 0.000000e+00 -3.447934e-05 2.164478e-03 -0.0015025173 0.020207018
## Viol X19hex Allo Zea Chl_b
## Sample_1 -0.0013223880 7.038048e-05 7.988672e-05 -1.232051e-02 0.013186410
## Sample_2 -0.0016541758 -3.857724e-04 -4.378784e-04 -2.193231e-03 -0.003057469
## Sample_3 -0.0058845255 -1.139138e-04 -1.293000e-04 -3.779725e-03 0.003770685
## Sample_4 -0.0064483148 -1.015896e-04 -1.153112e-04 -4.580583e-03 0.005149242
## Sample_5 -0.0081412439 -8.456241e-05 -9.598420e-05 -3.371649e-03 0.005232891
## Sample_6 -0.0075923548 -7.398341e-07 -8.397631e-07 -6.508521e-03 0.008684262
## Sample_7 -0.0033298291 1.082588e-04 1.228813e-04 -1.064012e-02 0.012629780
## Sample_8 -0.0014563426 -1.644743e-05 -1.866898e-05 -3.224766e-04 -0.002227088
## Sample_9 0.0005169254 -3.858597e-05 -4.379775e-05 -3.351611e-04 -0.003340725
## Sample_10 -0.0034210179 1.071068e-05 1.215736e-05 -7.567309e-03 0.008825550
## Sample_11 -0.0108648192 2.246567e-06 2.550009e-06 9.656165e-07 0.007821336
## Sample_12 -0.0145239267 6.054761e-05 0.000000e+00 2.602449e-05 0.004435839
## Sample_13 -0.0183546119 2.144362e-06 0.000000e+00 -1.881417e-04 0.010412618
## Sample_14 -0.0096696168 1.870801e-04 2.123489e-04 -1.079335e-02 0.006760536
## Sample_15 0.0018060169 -1.453843e-04 -1.650213e-04 -2.555388e-03 -0.010946238
## Sample_16 -0.0006160204 3.611944e-05 4.099807e-05 -2.144623e-02 0.008961506
## Sample_17 0.0016821109 -1.007920e-04 -1.144060e-04 -1.635554e-02 0.012413224
## Sample_18 -0.0070438635 -3.850885e-06 -4.371022e-06 -9.119675e-03 0.005767935
## Sample_19 -0.0052212018 -4.835642e-05 -5.488789e-05 -1.426660e-02 0.014749561
## Sample_20 -0.0040592987 7.625990e-05 8.656027e-05 -1.017633e-02 0.014947009
## Sample_21 -0.0055096431 -3.582922e-05 -4.066864e-05 -1.422476e-02 0.014944537
## Sample_22 -0.0029114245 1.510246e-05 1.714234e-05 -4.465623e-03 0.007312610
## Sample_23 -0.0033830114 -4.014390e-05 -4.556612e-05 -5.652419e-03 0.006428622
## Sample_24 -0.0009255328 2.354746e-05 2.672800e-05 -6.337636e-04 -0.010340282
## Sample_25 -0.0038034089 -9.021207e-06 -1.023970e-05 -5.683335e-03 0.008319301
## Sample_26 -0.0062922110 3.435962e-05 3.900055e-05 -6.431940e-03 0.001046426
## Sample_27 -0.0041996860 1.598290e-05 1.814170e-05 6.869749e-06 -0.009470371
## Sample_28 -0.0010786270 4.513602e-05 5.123251e-05 1.940030e-05 -0.012023521
## Sample_29 -0.0108398754 7.683099e-05 8.720850e-05 -1.206533e-02 0.018499373
## Tchla
## Sample_1 -0.0273428293
## Sample_2 0.1498726518
## Sample_3 0.0442555227
## Sample_4 0.0394675674
## Sample_5 0.0328525113
## Sample_6 0.0002874257
## Sample_7 -0.0420585671
## Sample_8 0.0063898307
## Sample_9 0.0149906547
## Sample_10 -0.0041610998
## Sample_11 -0.0008727917
## Sample_12 -0.0235227563
## Sample_13 -0.0008330855
## Sample_14 -0.0726806499
## Sample_15 0.0564818334
## Sample_16 -0.0140324088
## Sample_17 0.0391577264
## Sample_18 0.0014960697
## Sample_19 0.0187864783
## Sample_20 -0.0296269848
## Sample_21 0.0139196567
## Sample_22 -0.0058673091
## Sample_23 0.0155959142
## Sample_24 -0.0091481930
## Sample_25 0.0035047406
## Sample_26 -0.0133487177
## Sample_27 -0.0062093604
## Sample_28 -0.0175353521
## Sample_29 -0.0298488524
##
## $F_mat_iter
## iter phyto pigment ratio
## 1 0 Dinoflagellates-1 Per 1.00000000
## 2 0 Haptophytes X19but 1.00000000
## 3 0 Pelagophytes X19but 1.00000000
## 4 0 Diatoms-2 Fuco 1.00000000
## 5 0 Haptophytes Fuco 1.00000000
## 6 0 Pelagophytes Fuco 1.00000000
## 7 0 Prasinophytes Neox 1.00000000
## 8 0 Chlorophytes Neox 1.00000000
## 9 0 Prasinophytes Pra 1.00000000
## 10 0 Prasinophytes Viol 1.00000000
## 11 0 Chlorophytes Viol 1.00000000
## 12 0 Haptophytes X19hex 1.00000000
## 13 0 Cryptophytes Allo 1.00000000
## 14 0 Prasinophytes Zea 1.00000000
## 15 0 Chlorophytes Zea 1.00000000
## 16 0 Syn Zea 1.00000000
## 17 0 Prasinophytes Chl_b 1.00000000
## 18 0 Chlorophytes Chl_b 1.00000000
## 19 0 Prasinophytes Tchla 1.00000000
## 20 0 Chlorophytes Tchla 1.00000000
## 21 0 Cryptophytes Tchla 1.00000000
## 22 0 Diatoms-2 Tchla 1.00000000
## 23 0 Dinoflagellates-1 Tchla 1.00000000
## 24 0 Haptophytes Tchla 1.00000000
## 25 0 Pelagophytes Tchla 1.00000000
## 26 0 Syn Tchla 1.00000000
## 27 6 Dinoflagellates-1 Per 0.66400000
## 28 6 Haptophytes X19but 0.15440000
## 29 6 Pelagophytes X19but 1.36183816
## 30 6 Diatoms-2 Fuco 0.79360000
## 31 6 Haptophytes Fuco 0.45500000
## 32 6 Pelagophytes Fuco 0.63750000
## 33 6 Prasinophytes Neox 0.09590000
## 34 6 Chlorophytes Neox 0.03200000
## 35 6 Prasinophytes Pra 0.27470000
## 36 6 Prasinophytes Viol 0.01170000
## 37 6 Chlorophytes Viol 0.03850000
## 38 6 Haptophytes X19hex 0.47610000
## 39 6 Cryptophytes Allo 0.53871789
## 40 6 Prasinophytes Zea 0.06920000
## 41 6 Chlorophytes Zea 0.02310000
## 42 6 Syn Zea 1.16187727
## 43 6 Prasinophytes Chl_b 0.76010000
## 44 6 Chlorophytes Chl_b 0.38750000
## 45 6 Prasinophytes Tchla 1.00000000
## 46 6 Chlorophytes Tchla 1.00000000
## 47 6 Cryptophytes Tchla 1.00000000
## 48 6 Diatoms-2 Tchla 1.00000000
## 49 6 Dinoflagellates-1 Tchla 1.00000000
## 50 6 Haptophytes Tchla 1.00000000
## 51 6 Pelagophytes Tchla 1.00000000
## 52 6 Syn Tchla 1.00000000
## 53 11 Dinoflagellates-1 Per 0.67440000
## 54 11 Haptophytes X19but 0.18410000
## 55 11 Pelagophytes X19but 0.87300000
## 56 11 Diatoms-2 Fuco 0.77020000
## 57 11 Haptophytes Fuco 0.07880000
## 58 11 Pelagophytes Fuco 0.40360000
## 59 11 Prasinophytes Neox 0.07770000
## 60 11 Chlorophytes Neox 0.02140000
## 61 11 Prasinophytes Pra 0.24140000
## 62 11 Prasinophytes Viol 0.01430000
## 63 11 Chlorophytes Viol 0.02160000
## 64 11 Haptophytes X19hex 1.24559751
## 65 11 Cryptophytes Allo 0.52710000
## 66 11 Prasinophytes Zea 0.10460000
## 67 11 Chlorophytes Zea 0.02450000
## 68 11 Syn Zea 0.50340000
## 69 11 Prasinophytes Chl_b 0.89500000
## 70 11 Chlorophytes Chl_b 0.27930000
## 71 11 Prasinophytes Tchla 1.00000000
## 72 11 Chlorophytes Tchla 1.00000000
## 73 11 Cryptophytes Tchla 1.00000000
## 74 11 Diatoms-2 Tchla 1.00000000
## 75 11 Dinoflagellates-1 Tchla 1.00000000
## 76 11 Haptophytes Tchla 1.00000000
## 77 11 Pelagophytes Tchla 1.00000000
## 78 11 Syn Tchla 1.00000000
## 79 16 Dinoflagellates-1 Per 0.67440000
## 80 16 Haptophytes X19but 0.18410000
## 81 16 Pelagophytes X19but 0.87300000
## 82 16 Diatoms-2 Fuco 0.77020000
## 83 16 Haptophytes Fuco 0.07880000
## 84 16 Pelagophytes Fuco 0.40360000
## 85 16 Prasinophytes Neox 0.07770000
## 86 16 Chlorophytes Neox 0.02140000
## 87 16 Prasinophytes Pra 0.24140000
## 88 16 Prasinophytes Viol 0.01430000
## 89 16 Chlorophytes Viol 0.02160000
## 90 16 Haptophytes X19hex 1.24559751
## 91 16 Cryptophytes Allo 0.52710000
## 92 16 Prasinophytes Zea 0.10460000
## 93 16 Chlorophytes Zea 0.02450000
## 94 16 Syn Zea 0.50340000
## 95 16 Prasinophytes Chl_b 0.89500000
## 96 16 Chlorophytes Chl_b 0.27930000
## 97 16 Prasinophytes Tchla 1.00000000
## 98 16 Chlorophytes Tchla 1.00000000
## 99 16 Cryptophytes Tchla 1.00000000
## 100 16 Diatoms-2 Tchla 1.00000000
## 101 16 Dinoflagellates-1 Tchla 1.00000000
## 102 16 Haptophytes Tchla 1.00000000
## 103 16 Pelagophytes Tchla 1.00000000
## 104 16 Syn Tchla 1.00000000
## 105 21 Dinoflagellates-1 Per 0.67440000
## 106 21 Haptophytes X19but 0.18410000
## 107 21 Pelagophytes X19but 0.87300000
## 108 21 Diatoms-2 Fuco 0.77020000
## 109 21 Haptophytes Fuco 0.07880000
## 110 21 Pelagophytes Fuco 0.40360000
## 111 21 Prasinophytes Neox 0.07770000
## 112 21 Chlorophytes Neox 0.02140000
## 113 21 Prasinophytes Pra 0.24140000
## 114 21 Prasinophytes Viol 0.01430000
## 115 21 Chlorophytes Viol 0.02160000
## 116 21 Haptophytes X19hex 1.24559751
## 117 21 Cryptophytes Allo 0.52710000
## 118 21 Prasinophytes Zea 0.10460000
## 119 21 Chlorophytes Zea 0.02450000
## 120 21 Syn Zea 0.50340000
## 121 21 Prasinophytes Chl_b 0.89500000
## 122 21 Chlorophytes Chl_b 0.27930000
## 123 21 Prasinophytes Tchla 1.00000000
## 124 21 Chlorophytes Tchla 1.00000000
## 125 21 Cryptophytes Tchla 1.00000000
## 126 21 Diatoms-2 Tchla 1.00000000
## 127 21 Dinoflagellates-1 Tchla 1.00000000
## 128 21 Haptophytes Tchla 1.00000000
## 129 21 Pelagophytes Tchla 1.00000000
## 130 21 Syn Tchla 1.00000000
## 131 26 Dinoflagellates-1 Per 0.67440000
## 132 26 Haptophytes X19but 0.18410000
## 133 26 Pelagophytes X19but 0.87300000
## 134 26 Diatoms-2 Fuco 0.77020000
## 135 26 Haptophytes Fuco 0.07880000
## 136 26 Pelagophytes Fuco 0.40360000
## 137 26 Prasinophytes Neox 0.07770000
## 138 26 Chlorophytes Neox 0.02140000
## 139 26 Prasinophytes Pra 0.24140000
## 140 26 Prasinophytes Viol 0.01430000
## 141 26 Chlorophytes Viol 0.02160000
## 142 26 Haptophytes X19hex 1.24559751
## 143 26 Cryptophytes Allo 0.52710000
## 144 26 Prasinophytes Zea 0.10460000
## 145 26 Chlorophytes Zea 0.02450000
## 146 26 Syn Zea 0.50340000
## 147 26 Prasinophytes Chl_b 0.89500000
## 148 26 Chlorophytes Chl_b 0.27930000
## 149 26 Prasinophytes Tchla 1.00000000
## 150 26 Chlorophytes Tchla 1.00000000
## 151 26 Cryptophytes Tchla 1.00000000
## 152 26 Diatoms-2 Tchla 1.00000000
## 153 26 Dinoflagellates-1 Tchla 1.00000000
## 154 26 Haptophytes Tchla 1.00000000
## 155 26 Pelagophytes Tchla 1.00000000
## 156 26 Syn Tchla 1.00000000
## 157 31 Dinoflagellates-1 Per 0.67440000
## 158 31 Haptophytes X19but 0.18410000
## 159 31 Pelagophytes X19but 0.87300000
## 160 31 Diatoms-2 Fuco 0.77020000
## 161 31 Haptophytes Fuco 0.07880000
## 162 31 Pelagophytes Fuco 0.40360000
## 163 31 Prasinophytes Neox 0.07770000
## 164 31 Chlorophytes Neox 0.02140000
## 165 31 Prasinophytes Pra 0.24140000
## 166 31 Prasinophytes Viol 0.01430000
## 167 31 Chlorophytes Viol 0.02160000
## 168 31 Haptophytes X19hex 1.24559751
## 169 31 Cryptophytes Allo 0.52710000
## 170 31 Prasinophytes Zea 0.10460000
## 171 31 Chlorophytes Zea 0.02450000
## 172 31 Syn Zea 0.50340000
## 173 31 Prasinophytes Chl_b 0.89500000
## 174 31 Chlorophytes Chl_b 0.27930000
## 175 31 Prasinophytes Tchla 1.00000000
## 176 31 Chlorophytes Tchla 1.00000000
## 177 31 Cryptophytes Tchla 1.00000000
## 178 31 Diatoms-2 Tchla 1.00000000
## 179 31 Dinoflagellates-1 Tchla 1.00000000
## 180 31 Haptophytes Tchla 1.00000000
## 181 31 Pelagophytes Tchla 1.00000000
## 182 31 Syn Tchla 1.00000000
## 183 36 Dinoflagellates-1 Per 0.67440000
## 184 36 Haptophytes X19but 0.18410000
## 185 36 Pelagophytes X19but 0.87300000
## 186 36 Diatoms-2 Fuco 0.77020000
## 187 36 Haptophytes Fuco 0.07880000
## 188 36 Pelagophytes Fuco 0.40360000
## 189 36 Prasinophytes Neox 0.07770000
## 190 36 Chlorophytes Neox 0.02140000
## 191 36 Prasinophytes Pra 0.24140000
## 192 36 Prasinophytes Viol 0.01430000
## 193 36 Chlorophytes Viol 0.02160000
## 194 36 Haptophytes X19hex 1.24559751
## 195 36 Cryptophytes Allo 0.52710000
## 196 36 Prasinophytes Zea 0.10460000
## 197 36 Chlorophytes Zea 0.02450000
## 198 36 Syn Zea 0.50340000
## 199 36 Prasinophytes Chl_b 0.89500000
## 200 36 Chlorophytes Chl_b 0.27930000
## 201 36 Prasinophytes Tchla 1.00000000
## 202 36 Chlorophytes Tchla 1.00000000
## 203 36 Cryptophytes Tchla 1.00000000
## 204 36 Diatoms-2 Tchla 1.00000000
## 205 36 Dinoflagellates-1 Tchla 1.00000000
## 206 36 Haptophytes Tchla 1.00000000
## 207 36 Pelagophytes Tchla 1.00000000
## 208 36 Syn Tchla 1.00000000
## 209 41 Dinoflagellates-1 Per 0.67440000
## 210 41 Haptophytes X19but 0.18410000
## 211 41 Pelagophytes X19but 0.87300000
## 212 41 Diatoms-2 Fuco 0.77020000
## 213 41 Haptophytes Fuco 0.07880000
## 214 41 Pelagophytes Fuco 0.40360000
## 215 41 Prasinophytes Neox 0.07770000
## 216 41 Chlorophytes Neox 0.02140000
## 217 41 Prasinophytes Pra 0.24140000
## 218 41 Prasinophytes Viol 0.01430000
## 219 41 Chlorophytes Viol 0.02160000
## 220 41 Haptophytes X19hex 1.24559751
## 221 41 Cryptophytes Allo 0.52710000
## 222 41 Prasinophytes Zea 0.10460000
## 223 41 Chlorophytes Zea 0.02450000
## 224 41 Syn Zea 0.50340000
## 225 41 Prasinophytes Chl_b 0.89500000
## 226 41 Chlorophytes Chl_b 0.27930000
## 227 41 Prasinophytes Tchla 1.00000000
## 228 41 Chlorophytes Tchla 1.00000000
## 229 41 Cryptophytes Tchla 1.00000000
## 230 41 Diatoms-2 Tchla 1.00000000
## 231 41 Dinoflagellates-1 Tchla 1.00000000
## 232 41 Haptophytes Tchla 1.00000000
## 233 41 Pelagophytes Tchla 1.00000000
## 234 41 Syn Tchla 1.00000000
## 235 46 Dinoflagellates-1 Per 0.57170000
## 236 46 Haptophytes X19but 0.20950000
## 237 46 Pelagophytes X19but 0.39270000
## 238 46 Diatoms-2 Fuco 0.79130000
## 239 46 Haptophytes Fuco 0.21030000
## 240 46 Pelagophytes Fuco 0.80730000
## 241 46 Prasinophytes Neox 0.09050000
## 242 46 Chlorophytes Neox 0.01980000
## 243 46 Prasinophytes Pra 0.24720000
## 244 46 Prasinophytes Viol 0.09320000
## 245 46 Chlorophytes Viol 0.04420000
## 246 46 Haptophytes X19hex 0.81320000
## 247 46 Cryptophytes Allo 0.45190000
## 248 46 Prasinophytes Zea 0.04760000
## 249 46 Chlorophytes Zea 0.02090000
## 250 46 Syn Zea 1.19832993
## 251 46 Prasinophytes Chl_b 0.77380000
## 252 46 Chlorophytes Chl_b 0.21530000
## 253 46 Prasinophytes Tchla 1.00000000
## 254 46 Chlorophytes Tchla 1.00000000
## 255 46 Cryptophytes Tchla 1.00000000
## 256 46 Diatoms-2 Tchla 1.00000000
## 257 46 Dinoflagellates-1 Tchla 1.00000000
## 258 46 Haptophytes Tchla 1.00000000
## 259 46 Pelagophytes Tchla 1.00000000
## 260 46 Syn Tchla 1.00000000
## 261 51 Dinoflagellates-1 Per 0.57170000
## 262 51 Haptophytes X19but 0.20950000
## 263 51 Pelagophytes X19but 0.39270000
## 264 51 Diatoms-2 Fuco 0.79130000
## 265 51 Haptophytes Fuco 0.21030000
## 266 51 Pelagophytes Fuco 0.80730000
## 267 51 Prasinophytes Neox 0.09050000
## 268 51 Chlorophytes Neox 0.01980000
## 269 51 Prasinophytes Pra 0.24720000
## 270 51 Prasinophytes Viol 0.09320000
## 271 51 Chlorophytes Viol 0.04420000
## 272 51 Haptophytes X19hex 0.81320000
## 273 51 Cryptophytes Allo 0.45190000
## 274 51 Prasinophytes Zea 0.04760000
## 275 51 Chlorophytes Zea 0.02090000
## 276 51 Syn Zea 1.19832993
## 277 51 Prasinophytes Chl_b 0.77380000
## 278 51 Chlorophytes Chl_b 0.21530000
## 279 51 Prasinophytes Tchla 1.00000000
## 280 51 Chlorophytes Tchla 1.00000000
## 281 51 Cryptophytes Tchla 1.00000000
## 282 51 Diatoms-2 Tchla 1.00000000
## 283 51 Dinoflagellates-1 Tchla 1.00000000
## 284 51 Haptophytes Tchla 1.00000000
## 285 51 Pelagophytes Tchla 1.00000000
## 286 51 Syn Tchla 1.00000000
## 287 56 Dinoflagellates-1 Per 0.57170000
## 288 56 Haptophytes X19but 0.20950000
## 289 56 Pelagophytes X19but 0.39270000
## 290 56 Diatoms-2 Fuco 0.79130000
## 291 56 Haptophytes Fuco 0.21030000
## 292 56 Pelagophytes Fuco 0.80730000
## 293 56 Prasinophytes Neox 0.09050000
## 294 56 Chlorophytes Neox 0.01980000
## 295 56 Prasinophytes Pra 0.24720000
## 296 56 Prasinophytes Viol 0.09320000
## 297 56 Chlorophytes Viol 0.04420000
## 298 56 Haptophytes X19hex 0.81320000
## 299 56 Cryptophytes Allo 0.45190000
## 300 56 Prasinophytes Zea 0.04760000
## 301 56 Chlorophytes Zea 0.02090000
## 302 56 Syn Zea 1.19832993
## 303 56 Prasinophytes Chl_b 0.77380000
## 304 56 Chlorophytes Chl_b 0.21530000
## 305 56 Prasinophytes Tchla 1.00000000
## 306 56 Chlorophytes Tchla 1.00000000
## 307 56 Cryptophytes Tchla 1.00000000
## 308 56 Diatoms-2 Tchla 1.00000000
## 309 56 Dinoflagellates-1 Tchla 1.00000000
## 310 56 Haptophytes Tchla 1.00000000
## 311 56 Pelagophytes Tchla 1.00000000
## 312 56 Syn Tchla 1.00000000
## 313 61 Dinoflagellates-1 Per 0.57170000
## 314 61 Haptophytes X19but 0.20950000
## 315 61 Pelagophytes X19but 0.39270000
## 316 61 Diatoms-2 Fuco 0.79130000
## 317 61 Haptophytes Fuco 0.21030000
## 318 61 Pelagophytes Fuco 0.80730000
## 319 61 Prasinophytes Neox 0.09050000
## 320 61 Chlorophytes Neox 0.01980000
## 321 61 Prasinophytes Pra 0.24720000
## 322 61 Prasinophytes Viol 0.09320000
## 323 61 Chlorophytes Viol 0.04420000
## 324 61 Haptophytes X19hex 0.81320000
## 325 61 Cryptophytes Allo 0.45190000
## 326 61 Prasinophytes Zea 0.04760000
## 327 61 Chlorophytes Zea 0.02090000
## 328 61 Syn Zea 1.19832993
## 329 61 Prasinophytes Chl_b 0.77380000
## 330 61 Chlorophytes Chl_b 0.21530000
## 331 61 Prasinophytes Tchla 1.00000000
## 332 61 Chlorophytes Tchla 1.00000000
## 333 61 Cryptophytes Tchla 1.00000000
## 334 61 Diatoms-2 Tchla 1.00000000
## 335 61 Dinoflagellates-1 Tchla 1.00000000
## 336 61 Haptophytes Tchla 1.00000000
## 337 61 Pelagophytes Tchla 1.00000000
## 338 61 Syn Tchla 1.00000000
## 339 67 Dinoflagellates-1 Per 0.55250000
## 340 67 Haptophytes X19but 0.08660000
## 341 67 Pelagophytes X19but 1.28340000
## 342 67 Diatoms-2 Fuco 0.73800000
## 343 67 Haptophytes Fuco 0.23430000
## 344 67 Pelagophytes Fuco 0.88020000
## 345 67 Prasinophytes Neox 0.08160000
## 346 67 Chlorophytes Neox 0.02310000
## 347 67 Prasinophytes Pra 0.24460000
## 348 67 Prasinophytes Viol 0.08740000
## 349 67 Chlorophytes Viol 0.02290000
## 350 67 Haptophytes X19hex 1.24530000
## 351 67 Cryptophytes Allo 0.48560000
## 352 67 Prasinophytes Zea 0.08980000
## 353 67 Chlorophytes Zea 0.03020000
## 354 67 Syn Zea 0.85580000
## 355 67 Prasinophytes Chl_b 0.86100000
## 356 67 Chlorophytes Chl_b 0.17281161
## 357 67 Prasinophytes Tchla 1.00000000
## 358 67 Chlorophytes Tchla 1.00000000
## 359 67 Cryptophytes Tchla 1.00000000
## 360 67 Diatoms-2 Tchla 1.00000000
## 361 67 Dinoflagellates-1 Tchla 1.00000000
## 362 67 Haptophytes Tchla 1.00000000
## 363 67 Pelagophytes Tchla 1.00000000
## 364 67 Syn Tchla 1.00000000
## 365 72 Dinoflagellates-1 Per 0.55250000
## 366 72 Haptophytes X19but 0.08660000
## 367 72 Pelagophytes X19but 1.28340000
## 368 72 Diatoms-2 Fuco 0.73800000
## 369 72 Haptophytes Fuco 0.23430000
## 370 72 Pelagophytes Fuco 0.88020000
## 371 72 Prasinophytes Neox 0.08160000
## 372 72 Chlorophytes Neox 0.02310000
## 373 72 Prasinophytes Pra 0.24460000
## 374 72 Prasinophytes Viol 0.08740000
## 375 72 Chlorophytes Viol 0.02290000
## 376 72 Haptophytes X19hex 1.24530000
## 377 72 Cryptophytes Allo 0.48560000
## 378 72 Prasinophytes Zea 0.08980000
## 379 72 Chlorophytes Zea 0.03020000
## 380 72 Syn Zea 0.85580000
## 381 72 Prasinophytes Chl_b 0.86100000
## 382 72 Chlorophytes Chl_b 0.17281161
## 383 72 Prasinophytes Tchla 1.00000000
## 384 72 Chlorophytes Tchla 1.00000000
## 385 72 Cryptophytes Tchla 1.00000000
## 386 72 Diatoms-2 Tchla 1.00000000
## 387 72 Dinoflagellates-1 Tchla 1.00000000
## 388 72 Haptophytes Tchla 1.00000000
## 389 72 Pelagophytes Tchla 1.00000000
## 390 72 Syn Tchla 1.00000000
## 391 77 Dinoflagellates-1 Per 0.55250000
## 392 77 Haptophytes X19but 0.08660000
## 393 77 Pelagophytes X19but 1.28340000
## 394 77 Diatoms-2 Fuco 0.73800000
## 395 77 Haptophytes Fuco 0.23430000
## 396 77 Pelagophytes Fuco 0.88020000
## 397 77 Prasinophytes Neox 0.08160000
## 398 77 Chlorophytes Neox 0.02310000
## 399 77 Prasinophytes Pra 0.24460000
## 400 77 Prasinophytes Viol 0.08740000
## 401 77 Chlorophytes Viol 0.02290000
## 402 77 Haptophytes X19hex 1.24530000
## 403 77 Cryptophytes Allo 0.48560000
## 404 77 Prasinophytes Zea 0.08980000
## 405 77 Chlorophytes Zea 0.03020000
## 406 77 Syn Zea 0.85580000
## 407 77 Prasinophytes Chl_b 0.86100000
## 408 77 Chlorophytes Chl_b 0.17281161
## 409 77 Prasinophytes Tchla 1.00000000
## 410 77 Chlorophytes Tchla 1.00000000
## 411 77 Cryptophytes Tchla 1.00000000
## 412 77 Diatoms-2 Tchla 1.00000000
## 413 77 Dinoflagellates-1 Tchla 1.00000000
## 414 77 Haptophytes Tchla 1.00000000
## 415 77 Pelagophytes Tchla 1.00000000
## 416 77 Syn Tchla 1.00000000
## 417 82 Dinoflagellates-1 Per 0.60990000
## 418 82 Haptophytes X19but 0.21960000
## 419 82 Pelagophytes X19but 1.14400000
## 420 82 Diatoms-2 Fuco 0.78140000
## 421 82 Haptophytes Fuco 0.45070000
## 422 82 Pelagophytes Fuco 1.05100000
## 423 82 Prasinophytes Neox 0.10242826
## 424 82 Chlorophytes Neox 0.01710000
## 425 82 Prasinophytes Pra 0.18800000
## 426 82 Prasinophytes Viol 0.06170000
## 427 82 Chlorophytes Viol 0.02680000
## 428 82 Haptophytes X19hex 0.46480000
## 429 82 Cryptophytes Allo 0.40910000
## 430 82 Prasinophytes Zea 0.11220000
## 431 82 Chlorophytes Zea 0.01660000
## 432 82 Syn Zea 0.92280000
## 433 82 Prasinophytes Chl_b 0.73920000
## 434 82 Chlorophytes Chl_b 0.18510000
## 435 82 Prasinophytes Tchla 1.00000000
## 436 82 Chlorophytes Tchla 1.00000000
## 437 82 Cryptophytes Tchla 1.00000000
## 438 82 Diatoms-2 Tchla 1.00000000
## 439 82 Dinoflagellates-1 Tchla 1.00000000
## 440 82 Haptophytes Tchla 1.00000000
## 441 82 Pelagophytes Tchla 1.00000000
## 442 82 Syn Tchla 1.00000000
## 443 87 Dinoflagellates-1 Per 0.70860000
## 444 87 Haptophytes X19but 0.20190000
## 445 87 Pelagophytes X19but 1.02510000
## 446 87 Diatoms-2 Fuco 0.76500000
## 447 87 Haptophytes Fuco 0.33320000
## 448 87 Pelagophytes Fuco 1.07140000
## 449 87 Prasinophytes Neox 0.08700000
## 450 87 Chlorophytes Neox 0.01230000
## 451 87 Prasinophytes Pra 0.23060000
## 452 87 Prasinophytes Viol 0.09943814
## 453 87 Chlorophytes Viol 0.02280000
## 454 87 Haptophytes X19hex 0.78320000
## 455 87 Cryptophytes Allo 0.29680000
## 456 87 Prasinophytes Zea 0.12250000
## 457 87 Chlorophytes Zea 0.01710000
## 458 87 Syn Zea 0.90910000
## 459 87 Prasinophytes Chl_b 0.83370000
## 460 87 Chlorophytes Chl_b 0.18880000
## 461 87 Prasinophytes Tchla 1.00000000
## 462 87 Chlorophytes Tchla 1.00000000
## 463 87 Cryptophytes Tchla 1.00000000
## 464 87 Diatoms-2 Tchla 1.00000000
## 465 87 Dinoflagellates-1 Tchla 1.00000000
## 466 87 Haptophytes Tchla 1.00000000
## 467 87 Pelagophytes Tchla 1.00000000
## 468 87 Syn Tchla 1.00000000
## 469 92 Dinoflagellates-1 Per 0.70860000
## 470 92 Haptophytes X19but 0.20190000
## 471 92 Pelagophytes X19but 1.02510000
## 472 92 Diatoms-2 Fuco 0.76500000
## 473 92 Haptophytes Fuco 0.33320000
## 474 92 Pelagophytes Fuco 1.07140000
## 475 92 Prasinophytes Neox 0.08700000
## 476 92 Chlorophytes Neox 0.01230000
## 477 92 Prasinophytes Pra 0.23060000
## 478 92 Prasinophytes Viol 0.09943814
## 479 92 Chlorophytes Viol 0.02280000
## 480 92 Haptophytes X19hex 0.78320000
## 481 92 Cryptophytes Allo 0.29680000
## 482 92 Prasinophytes Zea 0.12250000
## 483 92 Chlorophytes Zea 0.01710000
## 484 92 Syn Zea 0.90910000
## 485 92 Prasinophytes Chl_b 0.83370000
## 486 92 Chlorophytes Chl_b 0.18880000
## 487 92 Prasinophytes Tchla 1.00000000
## 488 92 Chlorophytes Tchla 1.00000000
## 489 92 Cryptophytes Tchla 1.00000000
## 490 92 Diatoms-2 Tchla 1.00000000
## 491 92 Dinoflagellates-1 Tchla 1.00000000
## 492 92 Haptophytes Tchla 1.00000000
## 493 92 Pelagophytes Tchla 1.00000000
## 494 92 Syn Tchla 1.00000000
## 495 97 Dinoflagellates-1 Per 0.70860000
## 496 97 Haptophytes X19but 0.20190000
## 497 97 Pelagophytes X19but 1.02510000
## 498 97 Diatoms-2 Fuco 0.76500000
## 499 97 Haptophytes Fuco 0.33320000
## 500 97 Pelagophytes Fuco 1.07140000
## 501 97 Prasinophytes Neox 0.08700000
## 502 97 Chlorophytes Neox 0.01230000
## 503 97 Prasinophytes Pra 0.23060000
## 504 97 Prasinophytes Viol 0.09943814
## 505 97 Chlorophytes Viol 0.02280000
## 506 97 Haptophytes X19hex 0.78320000
## 507 97 Cryptophytes Allo 0.29680000
## 508 97 Prasinophytes Zea 0.12250000
## 509 97 Chlorophytes Zea 0.01710000
## 510 97 Syn Zea 0.90910000
## 511 97 Prasinophytes Chl_b 0.83370000
## 512 97 Chlorophytes Chl_b 0.18880000
## 513 97 Prasinophytes Tchla 1.00000000
## 514 97 Chlorophytes Tchla 1.00000000
## 515 97 Cryptophytes Tchla 1.00000000
## 516 97 Diatoms-2 Tchla 1.00000000
## 517 97 Dinoflagellates-1 Tchla 1.00000000
## 518 97 Haptophytes Tchla 1.00000000
## 519 97 Pelagophytes Tchla 1.00000000
## 520 97 Syn Tchla 1.00000000
## 521 102 Dinoflagellates-1 Per 0.70860000
## 522 102 Haptophytes X19but 0.20190000
## 523 102 Pelagophytes X19but 1.02510000
## 524 102 Diatoms-2 Fuco 0.76500000
## 525 102 Haptophytes Fuco 0.33320000
## 526 102 Pelagophytes Fuco 1.07140000
## 527 102 Prasinophytes Neox 0.08700000
## 528 102 Chlorophytes Neox 0.01230000
## 529 102 Prasinophytes Pra 0.23060000
## 530 102 Prasinophytes Viol 0.09943814
## 531 102 Chlorophytes Viol 0.02280000
## 532 102 Haptophytes X19hex 0.78320000
## 533 102 Cryptophytes Allo 0.29680000
## 534 102 Prasinophytes Zea 0.12250000
## 535 102 Chlorophytes Zea 0.01710000
## 536 102 Syn Zea 0.90910000
## 537 102 Prasinophytes Chl_b 0.83370000
## 538 102 Chlorophytes Chl_b 0.18880000
## 539 102 Prasinophytes Tchla 1.00000000
## 540 102 Chlorophytes Tchla 1.00000000
## 541 102 Cryptophytes Tchla 1.00000000
## 542 102 Diatoms-2 Tchla 1.00000000
## 543 102 Dinoflagellates-1 Tchla 1.00000000
## 544 102 Haptophytes Tchla 1.00000000
## 545 102 Pelagophytes Tchla 1.00000000
## 546 102 Syn Tchla 1.00000000
## 547 107 Dinoflagellates-1 Per 0.49300000
## 548 107 Haptophytes X19but 0.21970000
## 549 107 Pelagophytes X19but 1.02800000
## 550 107 Diatoms-2 Fuco 0.78120000
## 551 107 Haptophytes Fuco 0.26010000
## 552 107 Pelagophytes Fuco 1.12295014
## 553 107 Prasinophytes Neox 0.09780000
## 554 107 Chlorophytes Neox 0.01190000
## 555 107 Prasinophytes Pra 0.08280000
## 556 107 Prasinophytes Viol 0.08864305
## 557 107 Chlorophytes Viol 0.01560000
## 558 107 Haptophytes X19hex 0.78870000
## 559 107 Cryptophytes Allo 0.37890000
## 560 107 Prasinophytes Zea 0.13684767
## 561 107 Chlorophytes Zea 0.01210000
## 562 107 Syn Zea 1.09170000
## 563 107 Prasinophytes Chl_b 0.71960000
## 564 107 Chlorophytes Chl_b 0.17308331
## 565 107 Prasinophytes Tchla 1.00000000
## 566 107 Chlorophytes Tchla 1.00000000
## 567 107 Cryptophytes Tchla 1.00000000
## 568 107 Diatoms-2 Tchla 1.00000000
## 569 107 Dinoflagellates-1 Tchla 1.00000000
## 570 107 Haptophytes Tchla 1.00000000
## 571 107 Pelagophytes Tchla 1.00000000
## 572 107 Syn Tchla 1.00000000
## 573 112 Dinoflagellates-1 Per 0.49300000
## 574 112 Haptophytes X19but 0.21970000
## 575 112 Pelagophytes X19but 1.02800000
## 576 112 Diatoms-2 Fuco 0.78120000
## 577 112 Haptophytes Fuco 0.26010000
## 578 112 Pelagophytes Fuco 1.12295014
## 579 112 Prasinophytes Neox 0.09780000
## 580 112 Chlorophytes Neox 0.01190000
## 581 112 Prasinophytes Pra 0.08280000
## 582 112 Prasinophytes Viol 0.08864305
## 583 112 Chlorophytes Viol 0.01560000
## 584 112 Haptophytes X19hex 0.78870000
## 585 112 Cryptophytes Allo 0.37890000
## 586 112 Prasinophytes Zea 0.13684767
## 587 112 Chlorophytes Zea 0.01210000
## 588 112 Syn Zea 1.09170000
## 589 112 Prasinophytes Chl_b 0.71960000
## 590 112 Chlorophytes Chl_b 0.17308331
## 591 112 Prasinophytes Tchla 1.00000000
## 592 112 Chlorophytes Tchla 1.00000000
## 593 112 Cryptophytes Tchla 1.00000000
## 594 112 Diatoms-2 Tchla 1.00000000
## 595 112 Dinoflagellates-1 Tchla 1.00000000
## 596 112 Haptophytes Tchla 1.00000000
## 597 112 Pelagophytes Tchla 1.00000000
## 598 112 Syn Tchla 1.00000000
## 599 117 Dinoflagellates-1 Per 0.49300000
## 600 117 Haptophytes X19but 0.21970000
## 601 117 Pelagophytes X19but 1.02800000
## 602 117 Diatoms-2 Fuco 0.78120000
## 603 117 Haptophytes Fuco 0.26010000
## 604 117 Pelagophytes Fuco 1.12295014
## 605 117 Prasinophytes Neox 0.09780000
## 606 117 Chlorophytes Neox 0.01190000
## 607 117 Prasinophytes Pra 0.08280000
## 608 117 Prasinophytes Viol 0.08864305
## 609 117 Chlorophytes Viol 0.01560000
## 610 117 Haptophytes X19hex 0.78870000
## 611 117 Cryptophytes Allo 0.37890000
## 612 117 Prasinophytes Zea 0.13684767
## 613 117 Chlorophytes Zea 0.01210000
## 614 117 Syn Zea 1.09170000
## 615 117 Prasinophytes Chl_b 0.71960000
## 616 117 Chlorophytes Chl_b 0.17308331
## 617 117 Prasinophytes Tchla 1.00000000
## 618 117 Chlorophytes Tchla 1.00000000
## 619 117 Cryptophytes Tchla 1.00000000
## 620 117 Diatoms-2 Tchla 1.00000000
## 621 117 Dinoflagellates-1 Tchla 1.00000000
## 622 117 Haptophytes Tchla 1.00000000
## 623 117 Pelagophytes Tchla 1.00000000
## 624 117 Syn Tchla 1.00000000
## 625 122 Dinoflagellates-1 Per 0.49300000
## 626 122 Haptophytes X19but 0.21970000
## 627 122 Pelagophytes X19but 1.02800000
## 628 122 Diatoms-2 Fuco 0.78120000
## 629 122 Haptophytes Fuco 0.26010000
## 630 122 Pelagophytes Fuco 1.12295014
## 631 122 Prasinophytes Neox 0.09780000
## 632 122 Chlorophytes Neox 0.01190000
## 633 122 Prasinophytes Pra 0.08280000
## 634 122 Prasinophytes Viol 0.08864305
## 635 122 Chlorophytes Viol 0.01560000
## 636 122 Haptophytes X19hex 0.78870000
## 637 122 Cryptophytes Allo 0.37890000
## 638 122 Prasinophytes Zea 0.13684767
## 639 122 Chlorophytes Zea 0.01210000
## 640 122 Syn Zea 1.09170000
## 641 122 Prasinophytes Chl_b 0.71960000
## 642 122 Chlorophytes Chl_b 0.17308331
## 643 122 Prasinophytes Tchla 1.00000000
## 644 122 Chlorophytes Tchla 1.00000000
## 645 122 Cryptophytes Tchla 1.00000000
## 646 122 Diatoms-2 Tchla 1.00000000
## 647 122 Dinoflagellates-1 Tchla 1.00000000
## 648 122 Haptophytes Tchla 1.00000000
## 649 122 Pelagophytes Tchla 1.00000000
## 650 122 Syn Tchla 1.00000000
## 651 127 Dinoflagellates-1 Per 0.49300000
## 652 127 Haptophytes X19but 0.21970000
## 653 127 Pelagophytes X19but 1.02800000
## 654 127 Diatoms-2 Fuco 0.78120000
## 655 127 Haptophytes Fuco 0.26010000
## 656 127 Pelagophytes Fuco 1.12295014
## 657 127 Prasinophytes Neox 0.09780000
## 658 127 Chlorophytes Neox 0.01190000
## 659 127 Prasinophytes Pra 0.08280000
## 660 127 Prasinophytes Viol 0.08864305
## 661 127 Chlorophytes Viol 0.01560000
## 662 127 Haptophytes X19hex 0.78870000
## 663 127 Cryptophytes Allo 0.37890000
## 664 127 Prasinophytes Zea 0.13684767
## 665 127 Chlorophytes Zea 0.01210000
## 666 127 Syn Zea 1.09170000
## 667 127 Prasinophytes Chl_b 0.71960000
## 668 127 Chlorophytes Chl_b 0.17308331
## 669 127 Prasinophytes Tchla 1.00000000
## 670 127 Chlorophytes Tchla 1.00000000
## 671 127 Cryptophytes Tchla 1.00000000
## 672 127 Diatoms-2 Tchla 1.00000000
## 673 127 Dinoflagellates-1 Tchla 1.00000000
## 674 127 Haptophytes Tchla 1.00000000
## 675 127 Pelagophytes Tchla 1.00000000
## 676 127 Syn Tchla 1.00000000
## 677 132 Dinoflagellates-1 Per 0.48920000
## 678 132 Haptophytes X19but 0.21100000
## 679 132 Pelagophytes X19but 1.06970000
## 680 132 Diatoms-2 Fuco 0.78170000
## 681 132 Haptophytes Fuco 0.31630000
## 682 132 Pelagophytes Fuco 1.16350000
## 683 132 Prasinophytes Neox 0.07740000
## 684 132 Chlorophytes Neox 0.01100000
## 685 132 Prasinophytes Pra 0.18120000
## 686 132 Prasinophytes Viol 0.09151216
## 687 132 Chlorophytes Viol 0.01700000
## 688 132 Haptophytes X19hex 0.75230000
## 689 132 Cryptophytes Allo 0.38710000
## 690 132 Prasinophytes Zea 0.12740000
## 691 132 Chlorophytes Zea 0.00880000
## 692 132 Syn Zea 1.16067022
## 693 132 Prasinophytes Chl_b 0.75480000
## 694 132 Chlorophytes Chl_b 0.16694439
## 695 132 Prasinophytes Tchla 1.00000000
## 696 132 Chlorophytes Tchla 1.00000000
## 697 132 Cryptophytes Tchla 1.00000000
## 698 132 Diatoms-2 Tchla 1.00000000
## 699 132 Dinoflagellates-1 Tchla 1.00000000
## 700 132 Haptophytes Tchla 1.00000000
## 701 132 Pelagophytes Tchla 1.00000000
## 702 132 Syn Tchla 1.00000000
## 703 137 Dinoflagellates-1 Per 0.48920000
## 704 137 Haptophytes X19but 0.21100000
## 705 137 Pelagophytes X19but 1.06970000
## 706 137 Diatoms-2 Fuco 0.78170000
## 707 137 Haptophytes Fuco 0.31630000
## 708 137 Pelagophytes Fuco 1.16350000
## 709 137 Prasinophytes Neox 0.07740000
## 710 137 Chlorophytes Neox 0.01100000
## 711 137 Prasinophytes Pra 0.18120000
## 712 137 Prasinophytes Viol 0.09151216
## 713 137 Chlorophytes Viol 0.01700000
## 714 137 Haptophytes X19hex 0.75230000
## 715 137 Cryptophytes Allo 0.38710000
## 716 137 Prasinophytes Zea 0.12740000
## 717 137 Chlorophytes Zea 0.00880000
## 718 137 Syn Zea 1.16067022
## 719 137 Prasinophytes Chl_b 0.75480000
## 720 137 Chlorophytes Chl_b 0.16694439
## 721 137 Prasinophytes Tchla 1.00000000
## 722 137 Chlorophytes Tchla 1.00000000
## 723 137 Cryptophytes Tchla 1.00000000
## 724 137 Diatoms-2 Tchla 1.00000000
## 725 137 Dinoflagellates-1 Tchla 1.00000000
## 726 137 Haptophytes Tchla 1.00000000
## 727 137 Pelagophytes Tchla 1.00000000
## 728 137 Syn Tchla 1.00000000
## 729 142 Dinoflagellates-1 Per 0.48920000
## 730 142 Haptophytes X19but 0.21100000
## 731 142 Pelagophytes X19but 1.06970000
## 732 142 Diatoms-2 Fuco 0.78170000
## 733 142 Haptophytes Fuco 0.31630000
## 734 142 Pelagophytes Fuco 1.16350000
## 735 142 Prasinophytes Neox 0.07740000
## 736 142 Chlorophytes Neox 0.01100000
## 737 142 Prasinophytes Pra 0.18120000
## 738 142 Prasinophytes Viol 0.09151216
## 739 142 Chlorophytes Viol 0.01700000
## 740 142 Haptophytes X19hex 0.75230000
## 741 142 Cryptophytes Allo 0.38710000
## 742 142 Prasinophytes Zea 0.12740000
## 743 142 Chlorophytes Zea 0.00880000
## 744 142 Syn Zea 1.16067022
## 745 142 Prasinophytes Chl_b 0.75480000
## 746 142 Chlorophytes Chl_b 0.16694439
## 747 142 Prasinophytes Tchla 1.00000000
## 748 142 Chlorophytes Tchla 1.00000000
## 749 142 Cryptophytes Tchla 1.00000000
## 750 142 Diatoms-2 Tchla 1.00000000
## 751 142 Dinoflagellates-1 Tchla 1.00000000
## 752 142 Haptophytes Tchla 1.00000000
## 753 142 Pelagophytes Tchla 1.00000000
## 754 142 Syn Tchla 1.00000000
## 755 147 Dinoflagellates-1 Per 0.48920000
## 756 147 Haptophytes X19but 0.21100000
## 757 147 Pelagophytes X19but 1.06970000
## 758 147 Diatoms-2 Fuco 0.78170000
## 759 147 Haptophytes Fuco 0.31630000
## 760 147 Pelagophytes Fuco 1.16350000
## 761 147 Prasinophytes Neox 0.07740000
## 762 147 Chlorophytes Neox 0.01100000
## 763 147 Prasinophytes Pra 0.18120000
## 764 147 Prasinophytes Viol 0.09151216
## 765 147 Chlorophytes Viol 0.01700000
## 766 147 Haptophytes X19hex 0.75230000
## 767 147 Cryptophytes Allo 0.38710000
## 768 147 Prasinophytes Zea 0.12740000
## 769 147 Chlorophytes Zea 0.00880000
## 770 147 Syn Zea 1.16067022
## 771 147 Prasinophytes Chl_b 0.75480000
## 772 147 Chlorophytes Chl_b 0.16694439
## 773 147 Prasinophytes Tchla 1.00000000
## 774 147 Chlorophytes Tchla 1.00000000
## 775 147 Cryptophytes Tchla 1.00000000
## 776 147 Diatoms-2 Tchla 1.00000000
## 777 147 Dinoflagellates-1 Tchla 1.00000000
## 778 147 Haptophytes Tchla 1.00000000
## 779 147 Pelagophytes Tchla 1.00000000
## 780 147 Syn Tchla 1.00000000
## 781 152 Dinoflagellates-1 Per 0.48920000
## 782 152 Haptophytes X19but 0.21100000
## 783 152 Pelagophytes X19but 1.06970000
## 784 152 Diatoms-2 Fuco 0.78170000
## 785 152 Haptophytes Fuco 0.31630000
## 786 152 Pelagophytes Fuco 1.16350000
## 787 152 Prasinophytes Neox 0.07740000
## 788 152 Chlorophytes Neox 0.01100000
## 789 152 Prasinophytes Pra 0.18120000
## 790 152 Prasinophytes Viol 0.09151216
## 791 152 Chlorophytes Viol 0.01700000
## 792 152 Haptophytes X19hex 0.75230000
## 793 152 Cryptophytes Allo 0.38710000
## 794 152 Prasinophytes Zea 0.12740000
## 795 152 Chlorophytes Zea 0.00880000
## 796 152 Syn Zea 1.16067022
## 797 152 Prasinophytes Chl_b 0.75480000
## 798 152 Chlorophytes Chl_b 0.16694439
## 799 152 Prasinophytes Tchla 1.00000000
## 800 152 Chlorophytes Tchla 1.00000000
## 801 152 Cryptophytes Tchla 1.00000000
## 802 152 Diatoms-2 Tchla 1.00000000
## 803 152 Dinoflagellates-1 Tchla 1.00000000
## 804 152 Haptophytes Tchla 1.00000000
## 805 152 Pelagophytes Tchla 1.00000000
## 806 152 Syn Tchla 1.00000000
## 807 157 Dinoflagellates-1 Per 0.48920000
## 808 157 Haptophytes X19but 0.21100000
## 809 157 Pelagophytes X19but 1.06970000
## 810 157 Diatoms-2 Fuco 0.78170000
## 811 157 Haptophytes Fuco 0.31630000
## 812 157 Pelagophytes Fuco 1.16350000
## 813 157 Prasinophytes Neox 0.07740000
## 814 157 Chlorophytes Neox 0.01100000
## 815 157 Prasinophytes Pra 0.18120000
## 816 157 Prasinophytes Viol 0.09151216
## 817 157 Chlorophytes Viol 0.01700000
## 818 157 Haptophytes X19hex 0.75230000
## 819 157 Cryptophytes Allo 0.38710000
## 820 157 Prasinophytes Zea 0.12740000
## 821 157 Chlorophytes Zea 0.00880000
## 822 157 Syn Zea 1.16067022
## 823 157 Prasinophytes Chl_b 0.75480000
## 824 157 Chlorophytes Chl_b 0.16694439
## 825 157 Prasinophytes Tchla 1.00000000
## 826 157 Chlorophytes Tchla 1.00000000
## 827 157 Cryptophytes Tchla 1.00000000
## 828 157 Diatoms-2 Tchla 1.00000000
## 829 157 Dinoflagellates-1 Tchla 1.00000000
## 830 157 Haptophytes Tchla 1.00000000
## 831 157 Pelagophytes Tchla 1.00000000
## 832 157 Syn Tchla 1.00000000
## 833 162 Dinoflagellates-1 Per 0.48920000
## 834 162 Haptophytes X19but 0.21100000
## 835 162 Pelagophytes X19but 1.06970000
## 836 162 Diatoms-2 Fuco 0.78170000
## 837 162 Haptophytes Fuco 0.31630000
## 838 162 Pelagophytes Fuco 1.16350000
## 839 162 Prasinophytes Neox 0.07740000
## 840 162 Chlorophytes Neox 0.01100000
## 841 162 Prasinophytes Pra 0.18120000
## 842 162 Prasinophytes Viol 0.09151216
## 843 162 Chlorophytes Viol 0.01700000
## 844 162 Haptophytes X19hex 0.75230000
## 845 162 Cryptophytes Allo 0.38710000
## 846 162 Prasinophytes Zea 0.12740000
## 847 162 Chlorophytes Zea 0.00880000
## 848 162 Syn Zea 1.16067022
## 849 162 Prasinophytes Chl_b 0.75480000
## 850 162 Chlorophytes Chl_b 0.16694439
## 851 162 Prasinophytes Tchla 1.00000000
## 852 162 Chlorophytes Tchla 1.00000000
## 853 162 Cryptophytes Tchla 1.00000000
## 854 162 Diatoms-2 Tchla 1.00000000
## 855 162 Dinoflagellates-1 Tchla 1.00000000
## 856 162 Haptophytes Tchla 1.00000000
## 857 162 Pelagophytes Tchla 1.00000000
## 858 162 Syn Tchla 1.00000000
## 859 167 Dinoflagellates-1 Per 0.48920000
## 860 167 Haptophytes X19but 0.21100000
## 861 167 Pelagophytes X19but 1.06970000
## 862 167 Diatoms-2 Fuco 0.78170000
## 863 167 Haptophytes Fuco 0.31630000
## 864 167 Pelagophytes Fuco 1.16350000
## 865 167 Prasinophytes Neox 0.07740000
## 866 167 Chlorophytes Neox 0.01100000
## 867 167 Prasinophytes Pra 0.18120000
## 868 167 Prasinophytes Viol 0.09151216
## 869 167 Chlorophytes Viol 0.01700000
## 870 167 Haptophytes X19hex 0.75230000
## 871 167 Cryptophytes Allo 0.38710000
## 872 167 Prasinophytes Zea 0.12740000
## 873 167 Chlorophytes Zea 0.00880000
## 874 167 Syn Zea 1.16067022
## 875 167 Prasinophytes Chl_b 0.75480000
## 876 167 Chlorophytes Chl_b 0.16694439
## 877 167 Prasinophytes Tchla 1.00000000
## 878 167 Chlorophytes Tchla 1.00000000
## 879 167 Cryptophytes Tchla 1.00000000
## 880 167 Diatoms-2 Tchla 1.00000000
## 881 167 Dinoflagellates-1 Tchla 1.00000000
## 882 167 Haptophytes Tchla 1.00000000
## 883 167 Pelagophytes Tchla 1.00000000
## 884 167 Syn Tchla 1.00000000
## 885 172 Dinoflagellates-1 Per 0.48920000
## 886 172 Haptophytes X19but 0.21100000
## 887 172 Pelagophytes X19but 1.06970000
## 888 172 Diatoms-2 Fuco 0.78170000
## 889 172 Haptophytes Fuco 0.31630000
## 890 172 Pelagophytes Fuco 1.16350000
## 891 172 Prasinophytes Neox 0.07740000
## 892 172 Chlorophytes Neox 0.01100000
## 893 172 Prasinophytes Pra 0.18120000
## 894 172 Prasinophytes Viol 0.09151216
## 895 172 Chlorophytes Viol 0.01700000
## 896 172 Haptophytes X19hex 0.75230000
## 897 172 Cryptophytes Allo 0.38710000
## 898 172 Prasinophytes Zea 0.12740000
## 899 172 Chlorophytes Zea 0.00880000
## 900 172 Syn Zea 1.16067022
## 901 172 Prasinophytes Chl_b 0.75480000
## 902 172 Chlorophytes Chl_b 0.16694439
## 903 172 Prasinophytes Tchla 1.00000000
## 904 172 Chlorophytes Tchla 1.00000000
## 905 172 Cryptophytes Tchla 1.00000000
## 906 172 Diatoms-2 Tchla 1.00000000
## 907 172 Dinoflagellates-1 Tchla 1.00000000
## 908 172 Haptophytes Tchla 1.00000000
## 909 172 Pelagophytes Tchla 1.00000000
## 910 172 Syn Tchla 1.00000000
## 911 177 Dinoflagellates-1 Per 0.48920000
## 912 177 Haptophytes X19but 0.21100000
## 913 177 Pelagophytes X19but 1.06970000
## 914 177 Diatoms-2 Fuco 0.78170000
## 915 177 Haptophytes Fuco 0.31630000
## 916 177 Pelagophytes Fuco 1.16350000
## 917 177 Prasinophytes Neox 0.07740000
## 918 177 Chlorophytes Neox 0.01100000
## 919 177 Prasinophytes Pra 0.18120000
## 920 177 Prasinophytes Viol 0.09151216
## 921 177 Chlorophytes Viol 0.01700000
## 922 177 Haptophytes X19hex 0.75230000
## 923 177 Cryptophytes Allo 0.38710000
## 924 177 Prasinophytes Zea 0.12740000
## 925 177 Chlorophytes Zea 0.00880000
## 926 177 Syn Zea 1.16067022
## 927 177 Prasinophytes Chl_b 0.75480000
## 928 177 Chlorophytes Chl_b 0.16694439
## 929 177 Prasinophytes Tchla 1.00000000
## 930 177 Chlorophytes Tchla 1.00000000
## 931 177 Cryptophytes Tchla 1.00000000
## 932 177 Diatoms-2 Tchla 1.00000000
## 933 177 Dinoflagellates-1 Tchla 1.00000000
## 934 177 Haptophytes Tchla 1.00000000
## 935 177 Pelagophytes Tchla 1.00000000
## 936 177 Syn Tchla 1.00000000
## 937 182 Dinoflagellates-1 Per 0.48920000
## 938 182 Haptophytes X19but 0.21100000
## 939 182 Pelagophytes X19but 1.06970000
## 940 182 Diatoms-2 Fuco 0.78170000
## 941 182 Haptophytes Fuco 0.31630000
## 942 182 Pelagophytes Fuco 1.16350000
## 943 182 Prasinophytes Neox 0.07740000
## 944 182 Chlorophytes Neox 0.01100000
## 945 182 Prasinophytes Pra 0.18120000
## 946 182 Prasinophytes Viol 0.09151216
## 947 182 Chlorophytes Viol 0.01700000
## 948 182 Haptophytes X19hex 0.75230000
## 949 182 Cryptophytes Allo 0.38710000
## 950 182 Prasinophytes Zea 0.12740000
## 951 182 Chlorophytes Zea 0.00880000
## 952 182 Syn Zea 1.16067022
## 953 182 Prasinophytes Chl_b 0.75480000
## 954 182 Chlorophytes Chl_b 0.16694439
## 955 182 Prasinophytes Tchla 1.00000000
## 956 182 Chlorophytes Tchla 1.00000000
## 957 182 Cryptophytes Tchla 1.00000000
## 958 182 Diatoms-2 Tchla 1.00000000
## 959 182 Dinoflagellates-1 Tchla 1.00000000
## 960 182 Haptophytes Tchla 1.00000000
## 961 182 Pelagophytes Tchla 1.00000000
## 962 182 Syn Tchla 1.00000000
## 963 187 Dinoflagellates-1 Per 0.48920000
## 964 187 Haptophytes X19but 0.21100000
## 965 187 Pelagophytes X19but 1.06970000
## 966 187 Diatoms-2 Fuco 0.78170000
## 967 187 Haptophytes Fuco 0.31630000
## 968 187 Pelagophytes Fuco 1.16350000
## 969 187 Prasinophytes Neox 0.07740000
## 970 187 Chlorophytes Neox 0.01100000
## 971 187 Prasinophytes Pra 0.18120000
## 972 187 Prasinophytes Viol 0.09151216
## 973 187 Chlorophytes Viol 0.01700000
## 974 187 Haptophytes X19hex 0.75230000
## 975 187 Cryptophytes Allo 0.38710000
## 976 187 Prasinophytes Zea 0.12740000
## 977 187 Chlorophytes Zea 0.00880000
## 978 187 Syn Zea 1.16067022
## 979 187 Prasinophytes Chl_b 0.75480000
## 980 187 Chlorophytes Chl_b 0.16694439
## 981 187 Prasinophytes Tchla 1.00000000
## 982 187 Chlorophytes Tchla 1.00000000
## 983 187 Cryptophytes Tchla 1.00000000
## 984 187 Diatoms-2 Tchla 1.00000000
## 985 187 Dinoflagellates-1 Tchla 1.00000000
## 986 187 Haptophytes Tchla 1.00000000
## 987 187 Pelagophytes Tchla 1.00000000
## 988 187 Syn Tchla 1.00000000
## 989 193 Dinoflagellates-1 Per 0.48920000
## 990 193 Haptophytes X19but 0.21100000
## 991 193 Pelagophytes X19but 1.06970000
## 992 193 Diatoms-2 Fuco 0.78170000
## 993 193 Haptophytes Fuco 0.31630000
## 994 193 Pelagophytes Fuco 1.16350000
## 995 193 Prasinophytes Neox 0.07740000
## 996 193 Chlorophytes Neox 0.01100000
## 997 193 Prasinophytes Pra 0.18120000
## 998 193 Prasinophytes Viol 0.09151216
## 999 193 Chlorophytes Viol 0.01700000
## 1000 193 Haptophytes X19hex 0.75230000
## 1001 193 Cryptophytes Allo 0.38710000
## 1002 193 Prasinophytes Zea 0.12740000
## 1003 193 Chlorophytes Zea 0.00880000
## 1004 193 Syn Zea 1.16067022
## 1005 193 Prasinophytes Chl_b 0.75480000
## 1006 193 Chlorophytes Chl_b 0.16694439
## 1007 193 Prasinophytes Tchla 1.00000000
## 1008 193 Chlorophytes Tchla 1.00000000
## 1009 193 Cryptophytes Tchla 1.00000000
## 1010 193 Diatoms-2 Tchla 1.00000000
## 1011 193 Dinoflagellates-1 Tchla 1.00000000
## 1012 193 Haptophytes Tchla 1.00000000
## 1013 193 Pelagophytes Tchla 1.00000000
## 1014 193 Syn Tchla 1.00000000
## 1015 198 Dinoflagellates-1 Per 0.48920000
## 1016 198 Haptophytes X19but 0.21100000
## 1017 198 Pelagophytes X19but 1.06970000
## 1018 198 Diatoms-2 Fuco 0.78170000
## 1019 198 Haptophytes Fuco 0.31630000
## 1020 198 Pelagophytes Fuco 1.16350000
## 1021 198 Prasinophytes Neox 0.07740000
## 1022 198 Chlorophytes Neox 0.01100000
## 1023 198 Prasinophytes Pra 0.18120000
## 1024 198 Prasinophytes Viol 0.09151216
## 1025 198 Chlorophytes Viol 0.01700000
## 1026 198 Haptophytes X19hex 0.75230000
## 1027 198 Cryptophytes Allo 0.38710000
## 1028 198 Prasinophytes Zea 0.12740000
## 1029 198 Chlorophytes Zea 0.00880000
## 1030 198 Syn Zea 1.16067022
## 1031 198 Prasinophytes Chl_b 0.75480000
## 1032 198 Chlorophytes Chl_b 0.16694439
## 1033 198 Prasinophytes Tchla 1.00000000
## 1034 198 Chlorophytes Tchla 1.00000000
## 1035 198 Cryptophytes Tchla 1.00000000
## 1036 198 Diatoms-2 Tchla 1.00000000
## 1037 198 Dinoflagellates-1 Tchla 1.00000000
## 1038 198 Haptophytes Tchla 1.00000000
## 1039 198 Pelagophytes Tchla 1.00000000
## 1040 198 Syn Tchla 1.00000000
## 1041 203 Dinoflagellates-1 Per 0.48920000
## 1042 203 Haptophytes X19but 0.21100000
## 1043 203 Pelagophytes X19but 1.06970000
## 1044 203 Diatoms-2 Fuco 0.78170000
## 1045 203 Haptophytes Fuco 0.31630000
## 1046 203 Pelagophytes Fuco 1.16350000
## 1047 203 Prasinophytes Neox 0.07740000
## 1048 203 Chlorophytes Neox 0.01100000
## 1049 203 Prasinophytes Pra 0.18120000
## 1050 203 Prasinophytes Viol 0.09151216
## 1051 203 Chlorophytes Viol 0.01700000
## 1052 203 Haptophytes X19hex 0.75230000
## 1053 203 Cryptophytes Allo 0.38710000
## 1054 203 Prasinophytes Zea 0.12740000
## 1055 203 Chlorophytes Zea 0.00880000
## 1056 203 Syn Zea 1.16067022
## 1057 203 Prasinophytes Chl_b 0.75480000
## 1058 203 Chlorophytes Chl_b 0.16694439
## 1059 203 Prasinophytes Tchla 1.00000000
## 1060 203 Chlorophytes Tchla 1.00000000
## 1061 203 Cryptophytes Tchla 1.00000000
## 1062 203 Diatoms-2 Tchla 1.00000000
## 1063 203 Dinoflagellates-1 Tchla 1.00000000
## 1064 203 Haptophytes Tchla 1.00000000
## 1065 203 Pelagophytes Tchla 1.00000000
## 1066 203 Syn Tchla 1.00000000
## 1067 208 Dinoflagellates-1 Per 0.45550000
## 1068 208 Haptophytes X19but 0.23336287
## 1069 208 Pelagophytes X19but 0.93690000
## 1070 208 Diatoms-2 Fuco 0.78020000
## 1071 208 Haptophytes Fuco 0.25820000
## 1072 208 Pelagophytes Fuco 1.11240000
## 1073 208 Prasinophytes Neox 0.08908113
## 1074 208 Chlorophytes Neox 0.00950000
## 1075 208 Prasinophytes Pra 0.18540000
## 1076 208 Prasinophytes Viol 0.09049220
## 1077 208 Chlorophytes Viol 0.01690000
## 1078 208 Haptophytes X19hex 0.86450000
## 1079 208 Cryptophytes Allo 0.42632045
## 1080 208 Prasinophytes Zea 0.12182575
## 1081 208 Chlorophytes Zea 0.01010000
## 1082 208 Syn Zea 1.01450000
## 1083 208 Prasinophytes Chl_b 0.75230000
## 1084 208 Chlorophytes Chl_b 0.16692215
## 1085 208 Prasinophytes Tchla 1.00000000
## 1086 208 Chlorophytes Tchla 1.00000000
## 1087 208 Cryptophytes Tchla 1.00000000
## 1088 208 Diatoms-2 Tchla 1.00000000
## 1089 208 Dinoflagellates-1 Tchla 1.00000000
## 1090 208 Haptophytes Tchla 1.00000000
## 1091 208 Pelagophytes Tchla 1.00000000
## 1092 208 Syn Tchla 1.00000000
## 1093 213 Dinoflagellates-1 Per 0.45550000
## 1094 213 Haptophytes X19but 0.23336287
## 1095 213 Pelagophytes X19but 0.93690000
## 1096 213 Diatoms-2 Fuco 0.78020000
## 1097 213 Haptophytes Fuco 0.25820000
## 1098 213 Pelagophytes Fuco 1.11240000
## 1099 213 Prasinophytes Neox 0.08908113
## 1100 213 Chlorophytes Neox 0.00950000
## 1101 213 Prasinophytes Pra 0.18540000
## 1102 213 Prasinophytes Viol 0.09049220
## 1103 213 Chlorophytes Viol 0.01690000
## 1104 213 Haptophytes X19hex 0.86450000
## 1105 213 Cryptophytes Allo 0.42632045
## 1106 213 Prasinophytes Zea 0.12182575
## 1107 213 Chlorophytes Zea 0.01010000
## 1108 213 Syn Zea 1.01450000
## 1109 213 Prasinophytes Chl_b 0.75230000
## 1110 213 Chlorophytes Chl_b 0.16692215
## 1111 213 Prasinophytes Tchla 1.00000000
## 1112 213 Chlorophytes Tchla 1.00000000
## 1113 213 Cryptophytes Tchla 1.00000000
## 1114 213 Diatoms-2 Tchla 1.00000000
## 1115 213 Dinoflagellates-1 Tchla 1.00000000
## 1116 213 Haptophytes Tchla 1.00000000
## 1117 213 Pelagophytes Tchla 1.00000000
## 1118 213 Syn Tchla 1.00000000
## 1119 218 Dinoflagellates-1 Per 0.45550000
## 1120 218 Haptophytes X19but 0.23336287
## 1121 218 Pelagophytes X19but 0.93690000
## 1122 218 Diatoms-2 Fuco 0.78020000
## 1123 218 Haptophytes Fuco 0.25820000
## 1124 218 Pelagophytes Fuco 1.11240000
## 1125 218 Prasinophytes Neox 0.08908113
## 1126 218 Chlorophytes Neox 0.00950000
## 1127 218 Prasinophytes Pra 0.18540000
## 1128 218 Prasinophytes Viol 0.09049220
## 1129 218 Chlorophytes Viol 0.01690000
## 1130 218 Haptophytes X19hex 0.86450000
## 1131 218 Cryptophytes Allo 0.42632045
## 1132 218 Prasinophytes Zea 0.12182575
## 1133 218 Chlorophytes Zea 0.01010000
## 1134 218 Syn Zea 1.01450000
## 1135 218 Prasinophytes Chl_b 0.75230000
## 1136 218 Chlorophytes Chl_b 0.16692215
## 1137 218 Prasinophytes Tchla 1.00000000
## 1138 218 Chlorophytes Tchla 1.00000000
## 1139 218 Cryptophytes Tchla 1.00000000
## 1140 218 Diatoms-2 Tchla 1.00000000
## 1141 218 Dinoflagellates-1 Tchla 1.00000000
## 1142 218 Haptophytes Tchla 1.00000000
## 1143 218 Pelagophytes Tchla 1.00000000
## 1144 218 Syn Tchla 1.00000000
## 1145 223 Dinoflagellates-1 Per 0.45550000
## 1146 223 Haptophytes X19but 0.23336287
## 1147 223 Pelagophytes X19but 0.93690000
## 1148 223 Diatoms-2 Fuco 0.78020000
## 1149 223 Haptophytes Fuco 0.25820000
## 1150 223 Pelagophytes Fuco 1.11240000
## 1151 223 Prasinophytes Neox 0.08908113
## 1152 223 Chlorophytes Neox 0.00950000
## 1153 223 Prasinophytes Pra 0.18540000
## 1154 223 Prasinophytes Viol 0.09049220
## 1155 223 Chlorophytes Viol 0.01690000
## 1156 223 Haptophytes X19hex 0.86450000
## 1157 223 Cryptophytes Allo 0.42632045
## 1158 223 Prasinophytes Zea 0.12182575
## 1159 223 Chlorophytes Zea 0.01010000
## 1160 223 Syn Zea 1.01450000
## 1161 223 Prasinophytes Chl_b 0.75230000
## 1162 223 Chlorophytes Chl_b 0.16692215
## 1163 223 Prasinophytes Tchla 1.00000000
## 1164 223 Chlorophytes Tchla 1.00000000
## 1165 223 Cryptophytes Tchla 1.00000000
## 1166 223 Diatoms-2 Tchla 1.00000000
## 1167 223 Dinoflagellates-1 Tchla 1.00000000
## 1168 223 Haptophytes Tchla 1.00000000
## 1169 223 Pelagophytes Tchla 1.00000000
## 1170 223 Syn Tchla 1.00000000
## 1171 228 Dinoflagellates-1 Per 0.45550000
## 1172 228 Haptophytes X19but 0.23336287
## 1173 228 Pelagophytes X19but 0.93690000
## 1174 228 Diatoms-2 Fuco 0.78020000
## 1175 228 Haptophytes Fuco 0.25820000
## 1176 228 Pelagophytes Fuco 1.11240000
## 1177 228 Prasinophytes Neox 0.08908113
## 1178 228 Chlorophytes Neox 0.00950000
## 1179 228 Prasinophytes Pra 0.18540000
## 1180 228 Prasinophytes Viol 0.09049220
## 1181 228 Chlorophytes Viol 0.01690000
## 1182 228 Haptophytes X19hex 0.86450000
## 1183 228 Cryptophytes Allo 0.42632045
## 1184 228 Prasinophytes Zea 0.12182575
## 1185 228 Chlorophytes Zea 0.01010000
## 1186 228 Syn Zea 1.01450000
## 1187 228 Prasinophytes Chl_b 0.75230000
## 1188 228 Chlorophytes Chl_b 0.16692215
## 1189 228 Prasinophytes Tchla 1.00000000
## 1190 228 Chlorophytes Tchla 1.00000000
## 1191 228 Cryptophytes Tchla 1.00000000
## 1192 228 Diatoms-2 Tchla 1.00000000
## 1193 228 Dinoflagellates-1 Tchla 1.00000000
## 1194 228 Haptophytes Tchla 1.00000000
## 1195 228 Pelagophytes Tchla 1.00000000
## 1196 228 Syn Tchla 1.00000000
## 1197 233 Dinoflagellates-1 Per 0.45550000
## 1198 233 Haptophytes X19but 0.23336287
## 1199 233 Pelagophytes X19but 0.93690000
## 1200 233 Diatoms-2 Fuco 0.78020000
## 1201 233 Haptophytes Fuco 0.25820000
## 1202 233 Pelagophytes Fuco 1.11240000
## 1203 233 Prasinophytes Neox 0.08908113
## 1204 233 Chlorophytes Neox 0.00950000
## 1205 233 Prasinophytes Pra 0.18540000
## 1206 233 Prasinophytes Viol 0.09049220
## 1207 233 Chlorophytes Viol 0.01690000
## 1208 233 Haptophytes X19hex 0.86450000
## 1209 233 Cryptophytes Allo 0.42632045
## 1210 233 Prasinophytes Zea 0.12182575
## 1211 233 Chlorophytes Zea 0.01010000
## 1212 233 Syn Zea 1.01450000
## 1213 233 Prasinophytes Chl_b 0.75230000
## 1214 233 Chlorophytes Chl_b 0.16692215
## 1215 233 Prasinophytes Tchla 1.00000000
## 1216 233 Chlorophytes Tchla 1.00000000
## 1217 233 Cryptophytes Tchla 1.00000000
## 1218 233 Diatoms-2 Tchla 1.00000000
## 1219 233 Dinoflagellates-1 Tchla 1.00000000
## 1220 233 Haptophytes Tchla 1.00000000
## 1221 233 Pelagophytes Tchla 1.00000000
## 1222 233 Syn Tchla 1.00000000
## 1223 238 Dinoflagellates-1 Per 0.43610000
## 1224 238 Haptophytes X19but 0.21780000
## 1225 238 Pelagophytes X19but 0.63050000
## 1226 238 Diatoms-2 Fuco 0.74020000
## 1227 238 Haptophytes Fuco 0.31830000
## 1228 238 Pelagophytes Fuco 0.98290000
## 1229 238 Prasinophytes Neox 0.10140000
## 1230 238 Chlorophytes Neox 0.01440000
## 1231 238 Prasinophytes Pra 0.08630000
## 1232 238 Prasinophytes Viol 0.09958401
## 1233 238 Chlorophytes Viol 0.01640000
## 1234 238 Haptophytes X19hex 1.03560000
## 1235 238 Cryptophytes Allo 0.49280000
## 1236 238 Prasinophytes Zea 0.13300000
## 1237 238 Chlorophytes Zea 0.00960000
## 1238 238 Syn Zea 1.12360000
## 1239 238 Prasinophytes Chl_b 0.67200000
## 1240 238 Chlorophytes Chl_b 0.17100000
## 1241 238 Prasinophytes Tchla 1.00000000
## 1242 238 Chlorophytes Tchla 1.00000000
## 1243 238 Cryptophytes Tchla 1.00000000
## 1244 238 Diatoms-2 Tchla 1.00000000
## 1245 238 Dinoflagellates-1 Tchla 1.00000000
## 1246 238 Haptophytes Tchla 1.00000000
## 1247 238 Pelagophytes Tchla 1.00000000
## 1248 238 Syn Tchla 1.00000000
## 1249 243 Dinoflagellates-1 Per 0.43610000
## 1250 243 Haptophytes X19but 0.21780000
## 1251 243 Pelagophytes X19but 0.63050000
## 1252 243 Diatoms-2 Fuco 0.74020000
## 1253 243 Haptophytes Fuco 0.31830000
## 1254 243 Pelagophytes Fuco 0.98290000
## 1255 243 Prasinophytes Neox 0.10140000
## 1256 243 Chlorophytes Neox 0.01440000
## 1257 243 Prasinophytes Pra 0.08630000
## 1258 243 Prasinophytes Viol 0.09958401
## 1259 243 Chlorophytes Viol 0.01640000
## 1260 243 Haptophytes X19hex 1.03560000
## 1261 243 Cryptophytes Allo 0.49280000
## 1262 243 Prasinophytes Zea 0.13300000
## 1263 243 Chlorophytes Zea 0.00960000
## 1264 243 Syn Zea 1.12360000
## 1265 243 Prasinophytes Chl_b 0.67200000
## 1266 243 Chlorophytes Chl_b 0.17100000
## 1267 243 Prasinophytes Tchla 1.00000000
## 1268 243 Chlorophytes Tchla 1.00000000
## 1269 243 Cryptophytes Tchla 1.00000000
## 1270 243 Diatoms-2 Tchla 1.00000000
## 1271 243 Dinoflagellates-1 Tchla 1.00000000
## 1272 243 Haptophytes Tchla 1.00000000
## 1273 243 Pelagophytes Tchla 1.00000000
## 1274 243 Syn Tchla 1.00000000
## 1275 248 Dinoflagellates-1 Per 0.46920000
## 1276 248 Haptophytes X19but 0.24760000
## 1277 248 Pelagophytes X19but 0.57400000
## 1278 248 Diatoms-2 Fuco 0.77240000
## 1279 248 Haptophytes Fuco 0.29150000
## 1280 248 Pelagophytes Fuco 0.90760000
## 1281 248 Prasinophytes Neox 0.10010000
## 1282 248 Chlorophytes Neox 0.00940000
## 1283 248 Prasinophytes Pra 0.08990000
## 1284 248 Prasinophytes Viol 0.09800000
## 1285 248 Chlorophytes Viol 0.01630000
## 1286 248 Haptophytes X19hex 1.04010000
## 1287 248 Cryptophytes Allo 0.49850000
## 1288 248 Prasinophytes Zea 0.13840000
## 1289 248 Chlorophytes Zea 0.00910000
## 1290 248 Syn Zea 1.18140000
## 1291 248 Prasinophytes Chl_b 0.65940000
## 1292 248 Chlorophytes Chl_b 0.16692877
## 1293 248 Prasinophytes Tchla 1.00000000
## 1294 248 Chlorophytes Tchla 1.00000000
## 1295 248 Cryptophytes Tchla 1.00000000
## 1296 248 Diatoms-2 Tchla 1.00000000
## 1297 248 Dinoflagellates-1 Tchla 1.00000000
## 1298 248 Haptophytes Tchla 1.00000000
## 1299 248 Pelagophytes Tchla 1.00000000
## 1300 248 Syn Tchla 1.00000000
## 1301 253 Dinoflagellates-1 Per 0.46920000
## 1302 253 Haptophytes X19but 0.24760000
## 1303 253 Pelagophytes X19but 0.57400000
## 1304 253 Diatoms-2 Fuco 0.77240000
## 1305 253 Haptophytes Fuco 0.29150000
## 1306 253 Pelagophytes Fuco 0.90760000
## 1307 253 Prasinophytes Neox 0.10010000
## 1308 253 Chlorophytes Neox 0.00940000
## 1309 253 Prasinophytes Pra 0.08990000
## 1310 253 Prasinophytes Viol 0.09800000
## 1311 253 Chlorophytes Viol 0.01630000
## 1312 253 Haptophytes X19hex 1.04010000
## 1313 253 Cryptophytes Allo 0.49850000
## 1314 253 Prasinophytes Zea 0.13840000
## 1315 253 Chlorophytes Zea 0.00910000
## 1316 253 Syn Zea 1.18140000
## 1317 253 Prasinophytes Chl_b 0.65940000
## 1318 253 Chlorophytes Chl_b 0.16692877
## 1319 253 Prasinophytes Tchla 1.00000000
## 1320 253 Chlorophytes Tchla 1.00000000
## 1321 253 Cryptophytes Tchla 1.00000000
## 1322 253 Diatoms-2 Tchla 1.00000000
## 1323 253 Dinoflagellates-1 Tchla 1.00000000
## 1324 253 Haptophytes Tchla 1.00000000
## 1325 253 Pelagophytes Tchla 1.00000000
## 1326 253 Syn Tchla 1.00000000
## 1327 258 Dinoflagellates-1 Per 0.48314171
## 1328 258 Haptophytes X19but 0.24150000
## 1329 258 Pelagophytes X19but 0.66610000
## 1330 258 Diatoms-2 Fuco 0.77670000
## 1331 258 Haptophytes Fuco 0.33083108
## 1332 258 Pelagophytes Fuco 0.97660000
## 1333 258 Prasinophytes Neox 0.09750000
## 1334 258 Chlorophytes Neox 0.01530000
## 1335 258 Prasinophytes Pra 0.10360000
## 1336 258 Prasinophytes Viol 0.09610000
## 1337 258 Chlorophytes Viol 0.01515151
## 1338 258 Haptophytes X19hex 1.00690000
## 1339 258 Cryptophytes Allo 0.51780000
## 1340 258 Prasinophytes Zea 0.13941610
## 1341 258 Chlorophytes Zea 0.01450000
## 1342 258 Syn Zea 1.11650000
## 1343 258 Prasinophytes Chl_b 0.63360000
## 1344 258 Chlorophytes Chl_b 0.16840000
## 1345 258 Prasinophytes Tchla 1.00000000
## 1346 258 Chlorophytes Tchla 1.00000000
## 1347 258 Cryptophytes Tchla 1.00000000
## 1348 258 Diatoms-2 Tchla 1.00000000
## 1349 258 Dinoflagellates-1 Tchla 1.00000000
## 1350 258 Haptophytes Tchla 1.00000000
## 1351 258 Pelagophytes Tchla 1.00000000
## 1352 258 Syn Tchla 1.00000000
## 1353 263 Dinoflagellates-1 Per 0.45500000
## 1354 263 Haptophytes X19but 0.26150000
## 1355 263 Pelagophytes X19but 0.47550000
## 1356 263 Diatoms-2 Fuco 0.79950000
## 1357 263 Haptophytes Fuco 0.24900000
## 1358 263 Pelagophytes Fuco 1.01590000
## 1359 263 Prasinophytes Neox 0.09850000
## 1360 263 Chlorophytes Neox 0.01320000
## 1361 263 Prasinophytes Pra 0.08390000
## 1362 263 Prasinophytes Viol 0.09750000
## 1363 263 Chlorophytes Viol 0.01590000
## 1364 263 Haptophytes X19hex 1.01737749
## 1365 263 Cryptophytes Allo 0.46760000
## 1366 263 Prasinophytes Zea 0.13670000
## 1367 263 Chlorophytes Zea 0.01830000
## 1368 263 Syn Zea 1.10170000
## 1369 263 Prasinophytes Chl_b 0.59350000
## 1370 263 Chlorophytes Chl_b 0.17010000
## 1371 263 Prasinophytes Tchla 1.00000000
## 1372 263 Chlorophytes Tchla 1.00000000
## 1373 263 Cryptophytes Tchla 1.00000000
## 1374 263 Diatoms-2 Tchla 1.00000000
## 1375 263 Dinoflagellates-1 Tchla 1.00000000
## 1376 263 Haptophytes Tchla 1.00000000
## 1377 263 Pelagophytes Tchla 1.00000000
## 1378 263 Syn Tchla 1.00000000
## 1379 268 Dinoflagellates-1 Per 0.44060000
## 1380 268 Haptophytes X19but 0.23962493
## 1381 268 Pelagophytes X19but 0.55691628
## 1382 268 Diatoms-2 Fuco 0.81350000
## 1383 268 Haptophytes Fuco 0.25410000
## 1384 268 Pelagophytes Fuco 1.03350000
## 1385 268 Prasinophytes Neox 0.10250000
## 1386 268 Chlorophytes Neox 0.01400000
## 1387 268 Prasinophytes Pra 0.06634729
## 1388 268 Prasinophytes Viol 0.09957141
## 1389 268 Chlorophytes Viol 0.01670000
## 1390 268 Haptophytes X19hex 0.90740000
## 1391 268 Cryptophytes Allo 0.47630000
## 1392 268 Prasinophytes Zea 0.13850000
## 1393 268 Chlorophytes Zea 0.02090000
## 1394 268 Syn Zea 1.19812193
## 1395 268 Prasinophytes Chl_b 0.60232796
## 1396 268 Chlorophytes Chl_b 0.17520000
## 1397 268 Prasinophytes Tchla 1.00000000
## 1398 268 Chlorophytes Tchla 1.00000000
## 1399 268 Cryptophytes Tchla 1.00000000
## 1400 268 Diatoms-2 Tchla 1.00000000
## 1401 268 Dinoflagellates-1 Tchla 1.00000000
## 1402 268 Haptophytes Tchla 1.00000000
## 1403 268 Pelagophytes Tchla 1.00000000
## 1404 268 Syn Tchla 1.00000000
## 1405 273 Dinoflagellates-1 Per 0.40610000
## 1406 273 Haptophytes X19but 0.22400000
## 1407 273 Pelagophytes X19but 0.47590000
## 1408 273 Diatoms-2 Fuco 0.77843793
## 1409 273 Haptophytes Fuco 0.22230000
## 1410 273 Pelagophytes Fuco 1.09790000
## 1411 273 Prasinophytes Neox 0.09890000
## 1412 273 Chlorophytes Neox 0.01220000
## 1413 273 Prasinophytes Pra 0.06450000
## 1414 273 Prasinophytes Viol 0.09941393
## 1415 273 Chlorophytes Viol 0.01650000
## 1416 273 Haptophytes X19hex 0.98630000
## 1417 273 Cryptophytes Allo 0.48720000
## 1418 273 Prasinophytes Zea 0.13820000
## 1419 273 Chlorophytes Zea 0.01580000
## 1420 273 Syn Zea 1.14420000
## 1421 273 Prasinophytes Chl_b 0.64670000
## 1422 273 Chlorophytes Chl_b 0.16740000
## 1423 273 Prasinophytes Tchla 1.00000000
## 1424 273 Chlorophytes Tchla 1.00000000
## 1425 273 Cryptophytes Tchla 1.00000000
## 1426 273 Diatoms-2 Tchla 1.00000000
## 1427 273 Dinoflagellates-1 Tchla 1.00000000
## 1428 273 Haptophytes Tchla 1.00000000
## 1429 273 Pelagophytes Tchla 1.00000000
## 1430 273 Syn Tchla 1.00000000
## 1431 278 Dinoflagellates-1 Per 0.40610000
## 1432 278 Haptophytes X19but 0.22400000
## 1433 278 Pelagophytes X19but 0.47590000
## 1434 278 Diatoms-2 Fuco 0.77843793
## 1435 278 Haptophytes Fuco 0.22230000
## 1436 278 Pelagophytes Fuco 1.09790000
## 1437 278 Prasinophytes Neox 0.09890000
## 1438 278 Chlorophytes Neox 0.01220000
## 1439 278 Prasinophytes Pra 0.06450000
## 1440 278 Prasinophytes Viol 0.09941393
## 1441 278 Chlorophytes Viol 0.01650000
## 1442 278 Haptophytes X19hex 0.98630000
## 1443 278 Cryptophytes Allo 0.48720000
## 1444 278 Prasinophytes Zea 0.13820000
## 1445 278 Chlorophytes Zea 0.01580000
## 1446 278 Syn Zea 1.14420000
## 1447 278 Prasinophytes Chl_b 0.64670000
## 1448 278 Chlorophytes Chl_b 0.16740000
## 1449 278 Prasinophytes Tchla 1.00000000
## 1450 278 Chlorophytes Tchla 1.00000000
## 1451 278 Cryptophytes Tchla 1.00000000
## 1452 278 Diatoms-2 Tchla 1.00000000
## 1453 278 Dinoflagellates-1 Tchla 1.00000000
## 1454 278 Haptophytes Tchla 1.00000000
## 1455 278 Pelagophytes Tchla 1.00000000
## 1456 278 Syn Tchla 1.00000000
## 1457 283 Dinoflagellates-1 Per 0.40610000
## 1458 283 Haptophytes X19but 0.22400000
## 1459 283 Pelagophytes X19but 0.47590000
## 1460 283 Diatoms-2 Fuco 0.77843793
## 1461 283 Haptophytes Fuco 0.22230000
## 1462 283 Pelagophytes Fuco 1.09790000
## 1463 283 Prasinophytes Neox 0.09890000
## 1464 283 Chlorophytes Neox 0.01220000
## 1465 283 Prasinophytes Pra 0.06450000
## 1466 283 Prasinophytes Viol 0.09941393
## 1467 283 Chlorophytes Viol 0.01650000
## 1468 283 Haptophytes X19hex 0.98630000
## 1469 283 Cryptophytes Allo 0.48720000
## 1470 283 Prasinophytes Zea 0.13820000
## 1471 283 Chlorophytes Zea 0.01580000
## 1472 283 Syn Zea 1.14420000
## 1473 283 Prasinophytes Chl_b 0.64670000
## 1474 283 Chlorophytes Chl_b 0.16740000
## 1475 283 Prasinophytes Tchla 1.00000000
## 1476 283 Chlorophytes Tchla 1.00000000
## 1477 283 Cryptophytes Tchla 1.00000000
## 1478 283 Diatoms-2 Tchla 1.00000000
## 1479 283 Dinoflagellates-1 Tchla 1.00000000
## 1480 283 Haptophytes Tchla 1.00000000
## 1481 283 Pelagophytes Tchla 1.00000000
## 1482 283 Syn Tchla 1.00000000
## 1483 288 Dinoflagellates-1 Per 0.40610000
## 1484 288 Haptophytes X19but 0.22400000
## 1485 288 Pelagophytes X19but 0.47590000
## 1486 288 Diatoms-2 Fuco 0.77843793
## 1487 288 Haptophytes Fuco 0.22230000
## 1488 288 Pelagophytes Fuco 1.09790000
## 1489 288 Prasinophytes Neox 0.09890000
## 1490 288 Chlorophytes Neox 0.01220000
## 1491 288 Prasinophytes Pra 0.06450000
## 1492 288 Prasinophytes Viol 0.09941393
## 1493 288 Chlorophytes Viol 0.01650000
## 1494 288 Haptophytes X19hex 0.98630000
## 1495 288 Cryptophytes Allo 0.48720000
## 1496 288 Prasinophytes Zea 0.13820000
## 1497 288 Chlorophytes Zea 0.01580000
## 1498 288 Syn Zea 1.14420000
## 1499 288 Prasinophytes Chl_b 0.64670000
## 1500 288 Chlorophytes Chl_b 0.16740000
## 1501 288 Prasinophytes Tchla 1.00000000
## 1502 288 Chlorophytes Tchla 1.00000000
## 1503 288 Cryptophytes Tchla 1.00000000
## 1504 288 Diatoms-2 Tchla 1.00000000
## 1505 288 Dinoflagellates-1 Tchla 1.00000000
## 1506 288 Haptophytes Tchla 1.00000000
## 1507 288 Pelagophytes Tchla 1.00000000
## 1508 288 Syn Tchla 1.00000000
## 1509 293 Dinoflagellates-1 Per 0.40610000
## 1510 293 Haptophytes X19but 0.22400000
## 1511 293 Pelagophytes X19but 0.47590000
## 1512 293 Diatoms-2 Fuco 0.77843793
## 1513 293 Haptophytes Fuco 0.22230000
## 1514 293 Pelagophytes Fuco 1.09790000
## 1515 293 Prasinophytes Neox 0.09890000
## 1516 293 Chlorophytes Neox 0.01220000
## 1517 293 Prasinophytes Pra 0.06450000
## 1518 293 Prasinophytes Viol 0.09941393
## 1519 293 Chlorophytes Viol 0.01650000
## 1520 293 Haptophytes X19hex 0.98630000
## 1521 293 Cryptophytes Allo 0.48720000
## 1522 293 Prasinophytes Zea 0.13820000
## 1523 293 Chlorophytes Zea 0.01580000
## 1524 293 Syn Zea 1.14420000
## 1525 293 Prasinophytes Chl_b 0.64670000
## 1526 293 Chlorophytes Chl_b 0.16740000
## 1527 293 Prasinophytes Tchla 1.00000000
## 1528 293 Chlorophytes Tchla 1.00000000
## 1529 293 Cryptophytes Tchla 1.00000000
## 1530 293 Diatoms-2 Tchla 1.00000000
## 1531 293 Dinoflagellates-1 Tchla 1.00000000
## 1532 293 Haptophytes Tchla 1.00000000
## 1533 293 Pelagophytes Tchla 1.00000000
## 1534 293 Syn Tchla 1.00000000
## 1535 298 Dinoflagellates-1 Per 0.40610000
## 1536 298 Haptophytes X19but 0.22400000
## 1537 298 Pelagophytes X19but 0.47590000
## 1538 298 Diatoms-2 Fuco 0.77843793
## 1539 298 Haptophytes Fuco 0.22230000
## 1540 298 Pelagophytes Fuco 1.09790000
## 1541 298 Prasinophytes Neox 0.09890000
## 1542 298 Chlorophytes Neox 0.01220000
## 1543 298 Prasinophytes Pra 0.06450000
## 1544 298 Prasinophytes Viol 0.09941393
## 1545 298 Chlorophytes Viol 0.01650000
## 1546 298 Haptophytes X19hex 0.98630000
## 1547 298 Cryptophytes Allo 0.48720000
## 1548 298 Prasinophytes Zea 0.13820000
## 1549 298 Chlorophytes Zea 0.01580000
## 1550 298 Syn Zea 1.14420000
## 1551 298 Prasinophytes Chl_b 0.64670000
## 1552 298 Chlorophytes Chl_b 0.16740000
## 1553 298 Prasinophytes Tchla 1.00000000
## 1554 298 Chlorophytes Tchla 1.00000000
## 1555 298 Cryptophytes Tchla 1.00000000
## 1556 298 Diatoms-2 Tchla 1.00000000
## 1557 298 Dinoflagellates-1 Tchla 1.00000000
## 1558 298 Haptophytes Tchla 1.00000000
## 1559 298 Pelagophytes Tchla 1.00000000
## 1560 298 Syn Tchla 1.00000000
## 1561 303 Dinoflagellates-1 Per 0.40610000
## 1562 303 Haptophytes X19but 0.22400000
## 1563 303 Pelagophytes X19but 0.47590000
## 1564 303 Diatoms-2 Fuco 0.77843793
## 1565 303 Haptophytes Fuco 0.22230000
## 1566 303 Pelagophytes Fuco 1.09790000
## 1567 303 Prasinophytes Neox 0.09890000
## 1568 303 Chlorophytes Neox 0.01220000
## 1569 303 Prasinophytes Pra 0.06450000
## 1570 303 Prasinophytes Viol 0.09941393
## 1571 303 Chlorophytes Viol 0.01650000
## 1572 303 Haptophytes X19hex 0.98630000
## 1573 303 Cryptophytes Allo 0.48720000
## 1574 303 Prasinophytes Zea 0.13820000
## 1575 303 Chlorophytes Zea 0.01580000
## 1576 303 Syn Zea 1.14420000
## 1577 303 Prasinophytes Chl_b 0.64670000
## 1578 303 Chlorophytes Chl_b 0.16740000
## 1579 303 Prasinophytes Tchla 1.00000000
## 1580 303 Chlorophytes Tchla 1.00000000
## 1581 303 Cryptophytes Tchla 1.00000000
## 1582 303 Diatoms-2 Tchla 1.00000000
## 1583 303 Dinoflagellates-1 Tchla 1.00000000
## 1584 303 Haptophytes Tchla 1.00000000
## 1585 303 Pelagophytes Tchla 1.00000000
## 1586 303 Syn Tchla 1.00000000
## 1587 308 Dinoflagellates-1 Per 0.40610000
## 1588 308 Haptophytes X19but 0.22400000
## 1589 308 Pelagophytes X19but 0.47590000
## 1590 308 Diatoms-2 Fuco 0.77843793
## 1591 308 Haptophytes Fuco 0.22230000
## 1592 308 Pelagophytes Fuco 1.09790000
## 1593 308 Prasinophytes Neox 0.09890000
## 1594 308 Chlorophytes Neox 0.01220000
## 1595 308 Prasinophytes Pra 0.06450000
## 1596 308 Prasinophytes Viol 0.09941393
## 1597 308 Chlorophytes Viol 0.01650000
## 1598 308 Haptophytes X19hex 0.98630000
## 1599 308 Cryptophytes Allo 0.48720000
## 1600 308 Prasinophytes Zea 0.13820000
## 1601 308 Chlorophytes Zea 0.01580000
## 1602 308 Syn Zea 1.14420000
## 1603 308 Prasinophytes Chl_b 0.64670000
## 1604 308 Chlorophytes Chl_b 0.16740000
## 1605 308 Prasinophytes Tchla 1.00000000
## 1606 308 Chlorophytes Tchla 1.00000000
## 1607 308 Cryptophytes Tchla 1.00000000
## 1608 308 Diatoms-2 Tchla 1.00000000
## 1609 308 Dinoflagellates-1 Tchla 1.00000000
## 1610 308 Haptophytes Tchla 1.00000000
## 1611 308 Pelagophytes Tchla 1.00000000
## 1612 308 Syn Tchla 1.00000000
## 1613 314 Dinoflagellates-1 Per 0.40610000
## 1614 314 Haptophytes X19but 0.22400000
## 1615 314 Pelagophytes X19but 0.47590000
## 1616 314 Diatoms-2 Fuco 0.77843793
## 1617 314 Haptophytes Fuco 0.22230000
## 1618 314 Pelagophytes Fuco 1.09790000
## 1619 314 Prasinophytes Neox 0.09890000
## 1620 314 Chlorophytes Neox 0.01220000
## 1621 314 Prasinophytes Pra 0.06450000
## 1622 314 Prasinophytes Viol 0.09941393
## 1623 314 Chlorophytes Viol 0.01650000
## 1624 314 Haptophytes X19hex 0.98630000
## 1625 314 Cryptophytes Allo 0.48720000
## 1626 314 Prasinophytes Zea 0.13820000
## 1627 314 Chlorophytes Zea 0.01580000
## 1628 314 Syn Zea 1.14420000
## 1629 314 Prasinophytes Chl_b 0.64670000
## 1630 314 Chlorophytes Chl_b 0.16740000
## 1631 314 Prasinophytes Tchla 1.00000000
## 1632 314 Chlorophytes Tchla 1.00000000
## 1633 314 Cryptophytes Tchla 1.00000000
## 1634 314 Diatoms-2 Tchla 1.00000000
## 1635 314 Dinoflagellates-1 Tchla 1.00000000
## 1636 314 Haptophytes Tchla 1.00000000
## 1637 314 Pelagophytes Tchla 1.00000000
## 1638 314 Syn Tchla 1.00000000
## 1639 319 Dinoflagellates-1 Per 0.39400000
## 1640 319 Haptophytes X19but 0.21547163
## 1641 319 Pelagophytes X19but 0.50030000
## 1642 319 Diatoms-2 Fuco 0.75573074
## 1643 319 Haptophytes Fuco 0.22280000
## 1644 319 Pelagophytes Fuco 1.06890000
## 1645 319 Prasinophytes Neox 0.10150000
## 1646 319 Chlorophytes Neox 0.01330000
## 1647 319 Prasinophytes Pra 0.06429393
## 1648 319 Prasinophytes Viol 0.09871423
## 1649 319 Chlorophytes Viol 0.01610000
## 1650 319 Haptophytes X19hex 1.06120000
## 1651 319 Cryptophytes Allo 0.48991161
## 1652 319 Prasinophytes Zea 0.13941040
## 1653 319 Chlorophytes Zea 0.01550000
## 1654 319 Syn Zea 1.16120000
## 1655 319 Prasinophytes Chl_b 0.66530000
## 1656 319 Chlorophytes Chl_b 0.16720617
## 1657 319 Prasinophytes Tchla 1.00000000
## 1658 319 Chlorophytes Tchla 1.00000000
## 1659 319 Cryptophytes Tchla 1.00000000
## 1660 319 Diatoms-2 Tchla 1.00000000
## 1661 319 Dinoflagellates-1 Tchla 1.00000000
## 1662 319 Haptophytes Tchla 1.00000000
## 1663 319 Pelagophytes Tchla 1.00000000
## 1664 319 Syn Tchla 1.00000000
## 1665 324 Dinoflagellates-1 Per 0.39400000
## 1666 324 Haptophytes X19but 0.21547163
## 1667 324 Pelagophytes X19but 0.50030000
## 1668 324 Diatoms-2 Fuco 0.75573074
## 1669 324 Haptophytes Fuco 0.22280000
## 1670 324 Pelagophytes Fuco 1.06890000
## 1671 324 Prasinophytes Neox 0.10150000
## 1672 324 Chlorophytes Neox 0.01330000
## 1673 324 Prasinophytes Pra 0.06429393
## 1674 324 Prasinophytes Viol 0.09871423
## 1675 324 Chlorophytes Viol 0.01610000
## 1676 324 Haptophytes X19hex 1.06120000
## 1677 324 Cryptophytes Allo 0.48991161
## 1678 324 Prasinophytes Zea 0.13941040
## 1679 324 Chlorophytes Zea 0.01550000
## 1680 324 Syn Zea 1.16120000
## 1681 324 Prasinophytes Chl_b 0.66530000
## 1682 324 Chlorophytes Chl_b 0.16720617
## 1683 324 Prasinophytes Tchla 1.00000000
## 1684 324 Chlorophytes Tchla 1.00000000
## 1685 324 Cryptophytes Tchla 1.00000000
## 1686 324 Diatoms-2 Tchla 1.00000000
## 1687 324 Dinoflagellates-1 Tchla 1.00000000
## 1688 324 Haptophytes Tchla 1.00000000
## 1689 324 Pelagophytes Tchla 1.00000000
## 1690 324 Syn Tchla 1.00000000
## 1691 329 Dinoflagellates-1 Per 0.39400000
## 1692 329 Haptophytes X19but 0.21547163
## 1693 329 Pelagophytes X19but 0.50030000
## 1694 329 Diatoms-2 Fuco 0.75573074
## 1695 329 Haptophytes Fuco 0.22280000
## 1696 329 Pelagophytes Fuco 1.06890000
## 1697 329 Prasinophytes Neox 0.10150000
## 1698 329 Chlorophytes Neox 0.01330000
## 1699 329 Prasinophytes Pra 0.06429393
## 1700 329 Prasinophytes Viol 0.09871423
## 1701 329 Chlorophytes Viol 0.01610000
## 1702 329 Haptophytes X19hex 1.06120000
## 1703 329 Cryptophytes Allo 0.48991161
## 1704 329 Prasinophytes Zea 0.13941040
## 1705 329 Chlorophytes Zea 0.01550000
## 1706 329 Syn Zea 1.16120000
## 1707 329 Prasinophytes Chl_b 0.66530000
## 1708 329 Chlorophytes Chl_b 0.16720617
## 1709 329 Prasinophytes Tchla 1.00000000
## 1710 329 Chlorophytes Tchla 1.00000000
## 1711 329 Cryptophytes Tchla 1.00000000
## 1712 329 Diatoms-2 Tchla 1.00000000
## 1713 329 Dinoflagellates-1 Tchla 1.00000000
## 1714 329 Haptophytes Tchla 1.00000000
## 1715 329 Pelagophytes Tchla 1.00000000
## 1716 329 Syn Tchla 1.00000000
## 1717 334 Dinoflagellates-1 Per 0.39400000
## 1718 334 Haptophytes X19but 0.21547163
## 1719 334 Pelagophytes X19but 0.50030000
## 1720 334 Diatoms-2 Fuco 0.75573074
## 1721 334 Haptophytes Fuco 0.22280000
## 1722 334 Pelagophytes Fuco 1.06890000
## 1723 334 Prasinophytes Neox 0.10150000
## 1724 334 Chlorophytes Neox 0.01330000
## 1725 334 Prasinophytes Pra 0.06429393
## 1726 334 Prasinophytes Viol 0.09871423
## 1727 334 Chlorophytes Viol 0.01610000
## 1728 334 Haptophytes X19hex 1.06120000
## 1729 334 Cryptophytes Allo 0.48991161
## 1730 334 Prasinophytes Zea 0.13941040
## 1731 334 Chlorophytes Zea 0.01550000
## 1732 334 Syn Zea 1.16120000
## 1733 334 Prasinophytes Chl_b 0.66530000
## 1734 334 Chlorophytes Chl_b 0.16720617
## 1735 334 Prasinophytes Tchla 1.00000000
## 1736 334 Chlorophytes Tchla 1.00000000
## 1737 334 Cryptophytes Tchla 1.00000000
## 1738 334 Diatoms-2 Tchla 1.00000000
## 1739 334 Dinoflagellates-1 Tchla 1.00000000
## 1740 334 Haptophytes Tchla 1.00000000
## 1741 334 Pelagophytes Tchla 1.00000000
## 1742 334 Syn Tchla 1.00000000
## 1743 339 Dinoflagellates-1 Per 0.39400000
## 1744 339 Haptophytes X19but 0.21547163
## 1745 339 Pelagophytes X19but 0.50030000
## 1746 339 Diatoms-2 Fuco 0.75573074
## 1747 339 Haptophytes Fuco 0.22280000
## 1748 339 Pelagophytes Fuco 1.06890000
## 1749 339 Prasinophytes Neox 0.10150000
## 1750 339 Chlorophytes Neox 0.01330000
## 1751 339 Prasinophytes Pra 0.06429393
## 1752 339 Prasinophytes Viol 0.09871423
## 1753 339 Chlorophytes Viol 0.01610000
## 1754 339 Haptophytes X19hex 1.06120000
## 1755 339 Cryptophytes Allo 0.48991161
## 1756 339 Prasinophytes Zea 0.13941040
## 1757 339 Chlorophytes Zea 0.01550000
## 1758 339 Syn Zea 1.16120000
## 1759 339 Prasinophytes Chl_b 0.66530000
## 1760 339 Chlorophytes Chl_b 0.16720617
## 1761 339 Prasinophytes Tchla 1.00000000
## 1762 339 Chlorophytes Tchla 1.00000000
## 1763 339 Cryptophytes Tchla 1.00000000
## 1764 339 Diatoms-2 Tchla 1.00000000
## 1765 339 Dinoflagellates-1 Tchla 1.00000000
## 1766 339 Haptophytes Tchla 1.00000000
## 1767 339 Pelagophytes Tchla 1.00000000
## 1768 339 Syn Tchla 1.00000000
## 1769 344 Dinoflagellates-1 Per 0.39400000
## 1770 344 Haptophytes X19but 0.21547163
## 1771 344 Pelagophytes X19but 0.50030000
## 1772 344 Diatoms-2 Fuco 0.75573074
## 1773 344 Haptophytes Fuco 0.22280000
## 1774 344 Pelagophytes Fuco 1.06890000
## 1775 344 Prasinophytes Neox 0.10150000
## 1776 344 Chlorophytes Neox 0.01330000
## 1777 344 Prasinophytes Pra 0.06429393
## 1778 344 Prasinophytes Viol 0.09871423
## 1779 344 Chlorophytes Viol 0.01610000
## 1780 344 Haptophytes X19hex 1.06120000
## 1781 344 Cryptophytes Allo 0.48991161
## 1782 344 Prasinophytes Zea 0.13941040
## 1783 344 Chlorophytes Zea 0.01550000
## 1784 344 Syn Zea 1.16120000
## 1785 344 Prasinophytes Chl_b 0.66530000
## 1786 344 Chlorophytes Chl_b 0.16720617
## 1787 344 Prasinophytes Tchla 1.00000000
## 1788 344 Chlorophytes Tchla 1.00000000
## 1789 344 Cryptophytes Tchla 1.00000000
## 1790 344 Diatoms-2 Tchla 1.00000000
## 1791 344 Dinoflagellates-1 Tchla 1.00000000
## 1792 344 Haptophytes Tchla 1.00000000
## 1793 344 Pelagophytes Tchla 1.00000000
## 1794 344 Syn Tchla 1.00000000
## 1795 349 Dinoflagellates-1 Per 0.38420000
## 1796 349 Haptophytes X19but 0.22780000
## 1797 349 Pelagophytes X19but 0.55320000
## 1798 349 Diatoms-2 Fuco 0.76321025
## 1799 349 Haptophytes Fuco 0.21190000
## 1800 349 Pelagophytes Fuco 1.04900000
## 1801 349 Prasinophytes Neox 0.10259845
## 1802 349 Chlorophytes Neox 0.01240000
## 1803 349 Prasinophytes Pra 0.06450000
## 1804 349 Prasinophytes Viol 0.09930000
## 1805 349 Chlorophytes Viol 0.01500000
## 1806 349 Haptophytes X19hex 1.03670000
## 1807 349 Cryptophytes Allo 0.49720000
## 1808 349 Prasinophytes Zea 0.13950000
## 1809 349 Chlorophytes Zea 0.01780000
## 1810 349 Syn Zea 1.17190000
## 1811 349 Prasinophytes Chl_b 0.66040000
## 1812 349 Chlorophytes Chl_b 0.16670000
## 1813 349 Prasinophytes Tchla 1.00000000
## 1814 349 Chlorophytes Tchla 1.00000000
## 1815 349 Cryptophytes Tchla 1.00000000
## 1816 349 Diatoms-2 Tchla 1.00000000
## 1817 349 Dinoflagellates-1 Tchla 1.00000000
## 1818 349 Haptophytes Tchla 1.00000000
## 1819 349 Pelagophytes Tchla 1.00000000
## 1820 349 Syn Tchla 1.00000000
## 1821 354 Dinoflagellates-1 Per 0.38420000
## 1822 354 Haptophytes X19but 0.22780000
## 1823 354 Pelagophytes X19but 0.55320000
## 1824 354 Diatoms-2 Fuco 0.76321025
## 1825 354 Haptophytes Fuco 0.21190000
## 1826 354 Pelagophytes Fuco 1.04900000
## 1827 354 Prasinophytes Neox 0.10259845
## 1828 354 Chlorophytes Neox 0.01240000
## 1829 354 Prasinophytes Pra 0.06450000
## 1830 354 Prasinophytes Viol 0.09930000
## 1831 354 Chlorophytes Viol 0.01500000
## 1832 354 Haptophytes X19hex 1.03670000
## 1833 354 Cryptophytes Allo 0.49720000
## 1834 354 Prasinophytes Zea 0.13950000
## 1835 354 Chlorophytes Zea 0.01780000
## 1836 354 Syn Zea 1.17190000
## 1837 354 Prasinophytes Chl_b 0.66040000
## 1838 354 Chlorophytes Chl_b 0.16670000
## 1839 354 Prasinophytes Tchla 1.00000000
## 1840 354 Chlorophytes Tchla 1.00000000
## 1841 354 Cryptophytes Tchla 1.00000000
## 1842 354 Diatoms-2 Tchla 1.00000000
## 1843 354 Dinoflagellates-1 Tchla 1.00000000
## 1844 354 Haptophytes Tchla 1.00000000
## 1845 354 Pelagophytes Tchla 1.00000000
## 1846 354 Syn Tchla 1.00000000
## 1847 359 Dinoflagellates-1 Per 0.38420000
## 1848 359 Haptophytes X19but 0.22780000
## 1849 359 Pelagophytes X19but 0.55320000
## 1850 359 Diatoms-2 Fuco 0.76321025
## 1851 359 Haptophytes Fuco 0.21190000
## 1852 359 Pelagophytes Fuco 1.04900000
## 1853 359 Prasinophytes Neox 0.10259845
## 1854 359 Chlorophytes Neox 0.01240000
## 1855 359 Prasinophytes Pra 0.06450000
## 1856 359 Prasinophytes Viol 0.09930000
## 1857 359 Chlorophytes Viol 0.01500000
## 1858 359 Haptophytes X19hex 1.03670000
## 1859 359 Cryptophytes Allo 0.49720000
## 1860 359 Prasinophytes Zea 0.13950000
## 1861 359 Chlorophytes Zea 0.01780000
## 1862 359 Syn Zea 1.17190000
## 1863 359 Prasinophytes Chl_b 0.66040000
## 1864 359 Chlorophytes Chl_b 0.16670000
## 1865 359 Prasinophytes Tchla 1.00000000
## 1866 359 Chlorophytes Tchla 1.00000000
## 1867 359 Cryptophytes Tchla 1.00000000
## 1868 359 Diatoms-2 Tchla 1.00000000
## 1869 359 Dinoflagellates-1 Tchla 1.00000000
## 1870 359 Haptophytes Tchla 1.00000000
## 1871 359 Pelagophytes Tchla 1.00000000
## 1872 359 Syn Tchla 1.00000000
## 1873 364 Dinoflagellates-1 Per 0.38420000
## 1874 364 Haptophytes X19but 0.22780000
## 1875 364 Pelagophytes X19but 0.55320000
## 1876 364 Diatoms-2 Fuco 0.76321025
## 1877 364 Haptophytes Fuco 0.21190000
## 1878 364 Pelagophytes Fuco 1.04900000
## 1879 364 Prasinophytes Neox 0.10259845
## 1880 364 Chlorophytes Neox 0.01240000
## 1881 364 Prasinophytes Pra 0.06450000
## 1882 364 Prasinophytes Viol 0.09930000
## 1883 364 Chlorophytes Viol 0.01500000
## 1884 364 Haptophytes X19hex 1.03670000
## 1885 364 Cryptophytes Allo 0.49720000
## 1886 364 Prasinophytes Zea 0.13950000
## 1887 364 Chlorophytes Zea 0.01780000
## 1888 364 Syn Zea 1.17190000
## 1889 364 Prasinophytes Chl_b 0.66040000
## 1890 364 Chlorophytes Chl_b 0.16670000
## 1891 364 Prasinophytes Tchla 1.00000000
## 1892 364 Chlorophytes Tchla 1.00000000
## 1893 364 Cryptophytes Tchla 1.00000000
## 1894 364 Diatoms-2 Tchla 1.00000000
## 1895 364 Dinoflagellates-1 Tchla 1.00000000
## 1896 364 Haptophytes Tchla 1.00000000
## 1897 364 Pelagophytes Tchla 1.00000000
## 1898 364 Syn Tchla 1.00000000
## 1899 369 Dinoflagellates-1 Per 0.38420000
## 1900 369 Haptophytes X19but 0.22780000
## 1901 369 Pelagophytes X19but 0.55320000
## 1902 369 Diatoms-2 Fuco 0.76321025
## 1903 369 Haptophytes Fuco 0.21190000
## 1904 369 Pelagophytes Fuco 1.04900000
## 1905 369 Prasinophytes Neox 0.10259845
## 1906 369 Chlorophytes Neox 0.01240000
## 1907 369 Prasinophytes Pra 0.06450000
## 1908 369 Prasinophytes Viol 0.09930000
## 1909 369 Chlorophytes Viol 0.01500000
## 1910 369 Haptophytes X19hex 1.03670000
## 1911 369 Cryptophytes Allo 0.49720000
## 1912 369 Prasinophytes Zea 0.13950000
## 1913 369 Chlorophytes Zea 0.01780000
## 1914 369 Syn Zea 1.17190000
## 1915 369 Prasinophytes Chl_b 0.66040000
## 1916 369 Chlorophytes Chl_b 0.16670000
## 1917 369 Prasinophytes Tchla 1.00000000
## 1918 369 Chlorophytes Tchla 1.00000000
## 1919 369 Cryptophytes Tchla 1.00000000
## 1920 369 Diatoms-2 Tchla 1.00000000
## 1921 369 Dinoflagellates-1 Tchla 1.00000000
## 1922 369 Haptophytes Tchla 1.00000000
## 1923 369 Pelagophytes Tchla 1.00000000
## 1924 369 Syn Tchla 1.00000000
## 1925 374 Dinoflagellates-1 Per 0.38420000
## 1926 374 Haptophytes X19but 0.22780000
## 1927 374 Pelagophytes X19but 0.55320000
## 1928 374 Diatoms-2 Fuco 0.76321025
## 1929 374 Haptophytes Fuco 0.21190000
## 1930 374 Pelagophytes Fuco 1.04900000
## 1931 374 Prasinophytes Neox 0.10259845
## 1932 374 Chlorophytes Neox 0.01240000
## 1933 374 Prasinophytes Pra 0.06450000
## 1934 374 Prasinophytes Viol 0.09930000
## 1935 374 Chlorophytes Viol 0.01500000
## 1936 374 Haptophytes X19hex 1.03670000
## 1937 374 Cryptophytes Allo 0.49720000
## 1938 374 Prasinophytes Zea 0.13950000
## 1939 374 Chlorophytes Zea 0.01780000
## 1940 374 Syn Zea 1.17190000
## 1941 374 Prasinophytes Chl_b 0.66040000
## 1942 374 Chlorophytes Chl_b 0.16670000
## 1943 374 Prasinophytes Tchla 1.00000000
## 1944 374 Chlorophytes Tchla 1.00000000
## 1945 374 Cryptophytes Tchla 1.00000000
## 1946 374 Diatoms-2 Tchla 1.00000000
## 1947 374 Dinoflagellates-1 Tchla 1.00000000
## 1948 374 Haptophytes Tchla 1.00000000
## 1949 374 Pelagophytes Tchla 1.00000000
## 1950 374 Syn Tchla 1.00000000
## 1951 379 Dinoflagellates-1 Per 0.38420000
## 1952 379 Haptophytes X19but 0.22780000
## 1953 379 Pelagophytes X19but 0.55320000
## 1954 379 Diatoms-2 Fuco 0.76321025
## 1955 379 Haptophytes Fuco 0.21190000
## 1956 379 Pelagophytes Fuco 1.04900000
## 1957 379 Prasinophytes Neox 0.10259845
## 1958 379 Chlorophytes Neox 0.01240000
## 1959 379 Prasinophytes Pra 0.06450000
## 1960 379 Prasinophytes Viol 0.09930000
## 1961 379 Chlorophytes Viol 0.01500000
## 1962 379 Haptophytes X19hex 1.03670000
## 1963 379 Cryptophytes Allo 0.49720000
## 1964 379 Prasinophytes Zea 0.13950000
## 1965 379 Chlorophytes Zea 0.01780000
## 1966 379 Syn Zea 1.17190000
## 1967 379 Prasinophytes Chl_b 0.66040000
## 1968 379 Chlorophytes Chl_b 0.16670000
## 1969 379 Prasinophytes Tchla 1.00000000
## 1970 379 Chlorophytes Tchla 1.00000000
## 1971 379 Cryptophytes Tchla 1.00000000
## 1972 379 Diatoms-2 Tchla 1.00000000
## 1973 379 Dinoflagellates-1 Tchla 1.00000000
## 1974 379 Haptophytes Tchla 1.00000000
## 1975 379 Pelagophytes Tchla 1.00000000
## 1976 379 Syn Tchla 1.00000000
## 1977 384 Dinoflagellates-1 Per 0.38420000
## 1978 384 Haptophytes X19but 0.22780000
## 1979 384 Pelagophytes X19but 0.55320000
## 1980 384 Diatoms-2 Fuco 0.76321025
## 1981 384 Haptophytes Fuco 0.21190000
## 1982 384 Pelagophytes Fuco 1.04900000
## 1983 384 Prasinophytes Neox 0.10259845
## 1984 384 Chlorophytes Neox 0.01240000
## 1985 384 Prasinophytes Pra 0.06450000
## 1986 384 Prasinophytes Viol 0.09930000
## 1987 384 Chlorophytes Viol 0.01500000
## 1988 384 Haptophytes X19hex 1.03670000
## 1989 384 Cryptophytes Allo 0.49720000
## 1990 384 Prasinophytes Zea 0.13950000
## 1991 384 Chlorophytes Zea 0.01780000
## 1992 384 Syn Zea 1.17190000
## 1993 384 Prasinophytes Chl_b 0.66040000
## 1994 384 Chlorophytes Chl_b 0.16670000
## 1995 384 Prasinophytes Tchla 1.00000000
## 1996 384 Chlorophytes Tchla 1.00000000
## 1997 384 Cryptophytes Tchla 1.00000000
## 1998 384 Diatoms-2 Tchla 1.00000000
## 1999 384 Dinoflagellates-1 Tchla 1.00000000
## 2000 384 Haptophytes Tchla 1.00000000
## 2001 384 Pelagophytes Tchla 1.00000000
## 2002 384 Syn Tchla 1.00000000
## 2003 389 Dinoflagellates-1 Per 0.38420000
## 2004 389 Haptophytes X19but 0.22780000
## 2005 389 Pelagophytes X19but 0.55320000
## 2006 389 Diatoms-2 Fuco 0.76321025
## 2007 389 Haptophytes Fuco 0.21190000
## 2008 389 Pelagophytes Fuco 1.04900000
## 2009 389 Prasinophytes Neox 0.10259845
## 2010 389 Chlorophytes Neox 0.01240000
## 2011 389 Prasinophytes Pra 0.06450000
## 2012 389 Prasinophytes Viol 0.09930000
## 2013 389 Chlorophytes Viol 0.01500000
## 2014 389 Haptophytes X19hex 1.03670000
## 2015 389 Cryptophytes Allo 0.49720000
## 2016 389 Prasinophytes Zea 0.13950000
## 2017 389 Chlorophytes Zea 0.01780000
## 2018 389 Syn Zea 1.17190000
## 2019 389 Prasinophytes Chl_b 0.66040000
## 2020 389 Chlorophytes Chl_b 0.16670000
## 2021 389 Prasinophytes Tchla 1.00000000
## 2022 389 Chlorophytes Tchla 1.00000000
## 2023 389 Cryptophytes Tchla 1.00000000
## 2024 389 Diatoms-2 Tchla 1.00000000
## 2025 389 Dinoflagellates-1 Tchla 1.00000000
## 2026 389 Haptophytes Tchla 1.00000000
## 2027 389 Pelagophytes Tchla 1.00000000
## 2028 389 Syn Tchla 1.00000000
## 2029 394 Dinoflagellates-1 Per 0.38420000
## 2030 394 Haptophytes X19but 0.22780000
## 2031 394 Pelagophytes X19but 0.55320000
## 2032 394 Diatoms-2 Fuco 0.76321025
## 2033 394 Haptophytes Fuco 0.21190000
## 2034 394 Pelagophytes Fuco 1.04900000
## 2035 394 Prasinophytes Neox 0.10259845
## 2036 394 Chlorophytes Neox 0.01240000
## 2037 394 Prasinophytes Pra 0.06450000
## 2038 394 Prasinophytes Viol 0.09930000
## 2039 394 Chlorophytes Viol 0.01500000
## 2040 394 Haptophytes X19hex 1.03670000
## 2041 394 Cryptophytes Allo 0.49720000
## 2042 394 Prasinophytes Zea 0.13950000
## 2043 394 Chlorophytes Zea 0.01780000
## 2044 394 Syn Zea 1.17190000
## 2045 394 Prasinophytes Chl_b 0.66040000
## 2046 394 Chlorophytes Chl_b 0.16670000
## 2047 394 Prasinophytes Tchla 1.00000000
## 2048 394 Chlorophytes Tchla 1.00000000
## 2049 394 Cryptophytes Tchla 1.00000000
## 2050 394 Diatoms-2 Tchla 1.00000000
## 2051 394 Dinoflagellates-1 Tchla 1.00000000
## 2052 394 Haptophytes Tchla 1.00000000
## 2053 394 Pelagophytes Tchla 1.00000000
## 2054 394 Syn Tchla 1.00000000
## 2055 399 Dinoflagellates-1 Per 0.38090000
## 2056 399 Haptophytes X19but 0.23510000
## 2057 399 Pelagophytes X19but 0.51860000
## 2058 399 Diatoms-2 Fuco 0.77960000
## 2059 399 Haptophytes Fuco 0.22350000
## 2060 399 Pelagophytes Fuco 1.07985238
## 2061 399 Prasinophytes Neox 0.10232484
## 2062 399 Chlorophytes Neox 0.01300000
## 2063 399 Prasinophytes Pra 0.06611577
## 2064 399 Prasinophytes Viol 0.09930076
## 2065 399 Chlorophytes Viol 0.01620000
## 2066 399 Haptophytes X19hex 1.05687282
## 2067 399 Cryptophytes Allo 0.43810000
## 2068 399 Prasinophytes Zea 0.13920000
## 2069 399 Chlorophytes Zea 0.01620000
## 2070 399 Syn Zea 1.20980041
## 2071 399 Prasinophytes Chl_b 0.64540000
## 2072 399 Chlorophytes Chl_b 0.16692060
## 2073 399 Prasinophytes Tchla 1.00000000
## 2074 399 Chlorophytes Tchla 1.00000000
## 2075 399 Cryptophytes Tchla 1.00000000
## 2076 399 Diatoms-2 Tchla 1.00000000
## 2077 399 Dinoflagellates-1 Tchla 1.00000000
## 2078 399 Haptophytes Tchla 1.00000000
## 2079 399 Pelagophytes Tchla 1.00000000
## 2080 399 Syn Tchla 1.00000000
## 2081 404 Dinoflagellates-1 Per 0.38090000
## 2082 404 Haptophytes X19but 0.23510000
## 2083 404 Pelagophytes X19but 0.51860000
## 2084 404 Diatoms-2 Fuco 0.77960000
## 2085 404 Haptophytes Fuco 0.22350000
## 2086 404 Pelagophytes Fuco 1.07985238
## 2087 404 Prasinophytes Neox 0.10232484
## 2088 404 Chlorophytes Neox 0.01300000
## 2089 404 Prasinophytes Pra 0.06611577
## 2090 404 Prasinophytes Viol 0.09930076
## 2091 404 Chlorophytes Viol 0.01620000
## 2092 404 Haptophytes X19hex 1.05687282
## 2093 404 Cryptophytes Allo 0.43810000
## 2094 404 Prasinophytes Zea 0.13920000
## 2095 404 Chlorophytes Zea 0.01620000
## 2096 404 Syn Zea 1.20980041
## 2097 404 Prasinophytes Chl_b 0.64540000
## 2098 404 Chlorophytes Chl_b 0.16692060
## 2099 404 Prasinophytes Tchla 1.00000000
## 2100 404 Chlorophytes Tchla 1.00000000
## 2101 404 Cryptophytes Tchla 1.00000000
## 2102 404 Diatoms-2 Tchla 1.00000000
## 2103 404 Dinoflagellates-1 Tchla 1.00000000
## 2104 404 Haptophytes Tchla 1.00000000
## 2105 404 Pelagophytes Tchla 1.00000000
## 2106 404 Syn Tchla 1.00000000
## 2107 409 Dinoflagellates-1 Per 0.37470000
## 2108 409 Haptophytes X19but 0.23220000
## 2109 409 Pelagophytes X19but 0.48940000
## 2110 409 Diatoms-2 Fuco 0.77930000
## 2111 409 Haptophytes Fuco 0.21680000
## 2112 409 Pelagophytes Fuco 1.10380000
## 2113 409 Prasinophytes Neox 0.10170000
## 2114 409 Chlorophytes Neox 0.01150000
## 2115 409 Prasinophytes Pra 0.06497768
## 2116 409 Prasinophytes Viol 0.09957566
## 2117 409 Chlorophytes Viol 0.01560000
## 2118 409 Haptophytes X19hex 1.03330000
## 2119 409 Cryptophytes Allo 0.42660000
## 2120 409 Prasinophytes Zea 0.13919013
## 2121 409 Chlorophytes Zea 0.01770000
## 2122 409 Syn Zea 1.20080000
## 2123 409 Prasinophytes Chl_b 0.64350000
## 2124 409 Chlorophytes Chl_b 0.16730727
## 2125 409 Prasinophytes Tchla 1.00000000
## 2126 409 Chlorophytes Tchla 1.00000000
## 2127 409 Cryptophytes Tchla 1.00000000
## 2128 409 Diatoms-2 Tchla 1.00000000
## 2129 409 Dinoflagellates-1 Tchla 1.00000000
## 2130 409 Haptophytes Tchla 1.00000000
## 2131 409 Pelagophytes Tchla 1.00000000
## 2132 409 Syn Tchla 1.00000000
## 2133 414 Dinoflagellates-1 Per 0.37470000
## 2134 414 Haptophytes X19but 0.23220000
## 2135 414 Pelagophytes X19but 0.48940000
## 2136 414 Diatoms-2 Fuco 0.77930000
## 2137 414 Haptophytes Fuco 0.21680000
## 2138 414 Pelagophytes Fuco 1.10380000
## 2139 414 Prasinophytes Neox 0.10170000
## 2140 414 Chlorophytes Neox 0.01150000
## 2141 414 Prasinophytes Pra 0.06497768
## 2142 414 Prasinophytes Viol 0.09957566
## 2143 414 Chlorophytes Viol 0.01560000
## 2144 414 Haptophytes X19hex 1.03330000
## 2145 414 Cryptophytes Allo 0.42660000
## 2146 414 Prasinophytes Zea 0.13919013
## 2147 414 Chlorophytes Zea 0.01770000
## 2148 414 Syn Zea 1.20080000
## 2149 414 Prasinophytes Chl_b 0.64350000
## 2150 414 Chlorophytes Chl_b 0.16730727
## 2151 414 Prasinophytes Tchla 1.00000000
## 2152 414 Chlorophytes Tchla 1.00000000
## 2153 414 Cryptophytes Tchla 1.00000000
## 2154 414 Diatoms-2 Tchla 1.00000000
## 2155 414 Dinoflagellates-1 Tchla 1.00000000
## 2156 414 Haptophytes Tchla 1.00000000
## 2157 414 Pelagophytes Tchla 1.00000000
## 2158 414 Syn Tchla 1.00000000
## 2159 419 Dinoflagellates-1 Per 0.37470000
## 2160 419 Haptophytes X19but 0.23220000
## 2161 419 Pelagophytes X19but 0.48940000
## 2162 419 Diatoms-2 Fuco 0.77930000
## 2163 419 Haptophytes Fuco 0.21680000
## 2164 419 Pelagophytes Fuco 1.10380000
## 2165 419 Prasinophytes Neox 0.10170000
## 2166 419 Chlorophytes Neox 0.01150000
## 2167 419 Prasinophytes Pra 0.06497768
## 2168 419 Prasinophytes Viol 0.09957566
## 2169 419 Chlorophytes Viol 0.01560000
## 2170 419 Haptophytes X19hex 1.03330000
## 2171 419 Cryptophytes Allo 0.42660000
## 2172 419 Prasinophytes Zea 0.13919013
## 2173 419 Chlorophytes Zea 0.01770000
## 2174 419 Syn Zea 1.20080000
## 2175 419 Prasinophytes Chl_b 0.64350000
## 2176 419 Chlorophytes Chl_b 0.16730727
## 2177 419 Prasinophytes Tchla 1.00000000
## 2178 419 Chlorophytes Tchla 1.00000000
## 2179 419 Cryptophytes Tchla 1.00000000
## 2180 419 Diatoms-2 Tchla 1.00000000
## 2181 419 Dinoflagellates-1 Tchla 1.00000000
## 2182 419 Haptophytes Tchla 1.00000000
## 2183 419 Pelagophytes Tchla 1.00000000
## 2184 419 Syn Tchla 1.00000000
## 2185 424 Dinoflagellates-1 Per 0.35070000
## 2186 424 Haptophytes X19but 0.22210000
## 2187 424 Pelagophytes X19but 0.45030000
## 2188 424 Diatoms-2 Fuco 0.77170000
## 2189 424 Haptophytes Fuco 0.23650000
## 2190 424 Pelagophytes Fuco 1.18080000
## 2191 424 Prasinophytes Neox 0.10190000
## 2192 424 Chlorophytes Neox 0.01220000
## 2193 424 Prasinophytes Pra 0.06600000
## 2194 424 Prasinophytes Viol 0.09943871
## 2195 424 Chlorophytes Viol 0.01520929
## 2196 424 Haptophytes X19hex 1.00840000
## 2197 424 Cryptophytes Allo 0.40490000
## 2198 424 Prasinophytes Zea 0.13957650
## 2199 424 Chlorophytes Zea 0.01870000
## 2200 424 Syn Zea 0.93000000
## 2201 424 Prasinophytes Chl_b 0.62870000
## 2202 424 Chlorophytes Chl_b 0.16740000
## 2203 424 Prasinophytes Tchla 1.00000000
## 2204 424 Chlorophytes Tchla 1.00000000
## 2205 424 Cryptophytes Tchla 1.00000000
## 2206 424 Diatoms-2 Tchla 1.00000000
## 2207 424 Dinoflagellates-1 Tchla 1.00000000
## 2208 424 Haptophytes Tchla 1.00000000
## 2209 424 Pelagophytes Tchla 1.00000000
## 2210 424 Syn Tchla 1.00000000
## 2211 429 Dinoflagellates-1 Per 0.35290000
## 2212 429 Haptophytes X19but 0.22830000
## 2213 429 Pelagophytes X19but 0.44410000
## 2214 429 Diatoms-2 Fuco 0.77150000
## 2215 429 Haptophytes Fuco 0.22140000
## 2216 429 Pelagophytes Fuco 1.16370000
## 2217 429 Prasinophytes Neox 0.10210623
## 2218 429 Chlorophytes Neox 0.01090000
## 2219 429 Prasinophytes Pra 0.06560000
## 2220 429 Prasinophytes Viol 0.09930209
## 2221 429 Chlorophytes Viol 0.01550000
## 2222 429 Haptophytes X19hex 1.01760000
## 2223 429 Cryptophytes Allo 0.38640000
## 2224 429 Prasinophytes Zea 0.13960000
## 2225 429 Chlorophytes Zea 0.01770000
## 2226 429 Syn Zea 0.95480000
## 2227 429 Prasinophytes Chl_b 0.62927789
## 2228 429 Chlorophytes Chl_b 0.16660967
## 2229 429 Prasinophytes Tchla 1.00000000
## 2230 429 Chlorophytes Tchla 1.00000000
## 2231 429 Cryptophytes Tchla 1.00000000
## 2232 429 Diatoms-2 Tchla 1.00000000
## 2233 429 Dinoflagellates-1 Tchla 1.00000000
## 2234 429 Haptophytes Tchla 1.00000000
## 2235 429 Pelagophytes Tchla 1.00000000
## 2236 429 Syn Tchla 1.00000000
## 2237 434 Dinoflagellates-1 Per 0.35290000
## 2238 434 Haptophytes X19but 0.22830000
## 2239 434 Pelagophytes X19but 0.44410000
## 2240 434 Diatoms-2 Fuco 0.77150000
## 2241 434 Haptophytes Fuco 0.22140000
## 2242 434 Pelagophytes Fuco 1.16370000
## 2243 434 Prasinophytes Neox 0.10210623
## 2244 434 Chlorophytes Neox 0.01090000
## 2245 434 Prasinophytes Pra 0.06560000
## 2246 434 Prasinophytes Viol 0.09930209
## 2247 434 Chlorophytes Viol 0.01550000
## 2248 434 Haptophytes X19hex 1.01760000
## 2249 434 Cryptophytes Allo 0.38640000
## 2250 434 Prasinophytes Zea 0.13960000
## 2251 434 Chlorophytes Zea 0.01770000
## 2252 434 Syn Zea 0.95480000
## 2253 434 Prasinophytes Chl_b 0.62927789
## 2254 434 Chlorophytes Chl_b 0.16660967
## 2255 434 Prasinophytes Tchla 1.00000000
## 2256 434 Chlorophytes Tchla 1.00000000
## 2257 434 Cryptophytes Tchla 1.00000000
## 2258 434 Diatoms-2 Tchla 1.00000000
## 2259 434 Dinoflagellates-1 Tchla 1.00000000
## 2260 434 Haptophytes Tchla 1.00000000
## 2261 434 Pelagophytes Tchla 1.00000000
## 2262 434 Syn Tchla 1.00000000
## 2263 440 Dinoflagellates-1 Per 0.35290000
## 2264 440 Haptophytes X19but 0.22830000
## 2265 440 Pelagophytes X19but 0.44410000
## 2266 440 Diatoms-2 Fuco 0.77150000
## 2267 440 Haptophytes Fuco 0.22140000
## 2268 440 Pelagophytes Fuco 1.16370000
## 2269 440 Prasinophytes Neox 0.10210623
## 2270 440 Chlorophytes Neox 0.01090000
## 2271 440 Prasinophytes Pra 0.06560000
## 2272 440 Prasinophytes Viol 0.09930209
## 2273 440 Chlorophytes Viol 0.01550000
## 2274 440 Haptophytes X19hex 1.01760000
## 2275 440 Cryptophytes Allo 0.38640000
## 2276 440 Prasinophytes Zea 0.13960000
## 2277 440 Chlorophytes Zea 0.01770000
## 2278 440 Syn Zea 0.95480000
## 2279 440 Prasinophytes Chl_b 0.62927789
## 2280 440 Chlorophytes Chl_b 0.16660967
## 2281 440 Prasinophytes Tchla 1.00000000
## 2282 440 Chlorophytes Tchla 1.00000000
## 2283 440 Cryptophytes Tchla 1.00000000
## 2284 440 Diatoms-2 Tchla 1.00000000
## 2285 440 Dinoflagellates-1 Tchla 1.00000000
## 2286 440 Haptophytes Tchla 1.00000000
## 2287 440 Pelagophytes Tchla 1.00000000
## 2288 440 Syn Tchla 1.00000000
## 2289 445 Dinoflagellates-1 Per 0.35290000
## 2290 445 Haptophytes X19but 0.22830000
## 2291 445 Pelagophytes X19but 0.44410000
## 2292 445 Diatoms-2 Fuco 0.77150000
## 2293 445 Haptophytes Fuco 0.22140000
## 2294 445 Pelagophytes Fuco 1.16370000
## 2295 445 Prasinophytes Neox 0.10210623
## 2296 445 Chlorophytes Neox 0.01090000
## 2297 445 Prasinophytes Pra 0.06560000
## 2298 445 Prasinophytes Viol 0.09930209
## 2299 445 Chlorophytes Viol 0.01550000
## 2300 445 Haptophytes X19hex 1.01760000
## 2301 445 Cryptophytes Allo 0.38640000
## 2302 445 Prasinophytes Zea 0.13960000
## 2303 445 Chlorophytes Zea 0.01770000
## 2304 445 Syn Zea 0.95480000
## 2305 445 Prasinophytes Chl_b 0.62927789
## 2306 445 Chlorophytes Chl_b 0.16660967
## 2307 445 Prasinophytes Tchla 1.00000000
## 2308 445 Chlorophytes Tchla 1.00000000
## 2309 445 Cryptophytes Tchla 1.00000000
## 2310 445 Diatoms-2 Tchla 1.00000000
## 2311 445 Dinoflagellates-1 Tchla 1.00000000
## 2312 445 Haptophytes Tchla 1.00000000
## 2313 445 Pelagophytes Tchla 1.00000000
## 2314 445 Syn Tchla 1.00000000
## 2315 450 Dinoflagellates-1 Per 0.36209798
## 2316 450 Haptophytes X19but 0.22798977
## 2317 450 Pelagophytes X19but 0.45870192
## 2318 450 Diatoms-2 Fuco 0.76640858
## 2319 450 Haptophytes Fuco 0.22512597
## 2320 450 Pelagophytes Fuco 1.16089230
## 2321 450 Prasinophytes Neox 0.10170251
## 2322 450 Chlorophytes Neox 0.01149041
## 2323 450 Prasinophytes Pra 0.06424559
## 2324 450 Prasinophytes Viol 0.09883439
## 2325 450 Chlorophytes Viol 0.01555686
## 2326 450 Haptophytes X19hex 1.01518686
## 2327 450 Cryptophytes Allo 0.38486206
## 2328 450 Prasinophytes Zea 0.13894375
## 2329 450 Chlorophytes Zea 0.01779070
## 2330 450 Syn Zea 0.97410502
## 2331 450 Prasinophytes Chl_b 0.62914260
## 2332 450 Chlorophytes Chl_b 0.16672406
## 2333 450 Prasinophytes Tchla 1.00000000
## 2334 450 Chlorophytes Tchla 1.00000000
## 2335 450 Cryptophytes Tchla 1.00000000
## 2336 450 Diatoms-2 Tchla 1.00000000
## 2337 450 Dinoflagellates-1 Tchla 1.00000000
## 2338 450 Haptophytes Tchla 1.00000000
## 2339 450 Pelagophytes Tchla 1.00000000
## 2340 450 Syn Tchla 1.00000000
## 2341 455 Dinoflagellates-1 Per 0.36209798
## 2342 455 Haptophytes X19but 0.22798977
## 2343 455 Pelagophytes X19but 0.45870192
## 2344 455 Diatoms-2 Fuco 0.76640858
## 2345 455 Haptophytes Fuco 0.22512597
## 2346 455 Pelagophytes Fuco 1.16089230
## 2347 455 Prasinophytes Neox 0.10170251
## 2348 455 Chlorophytes Neox 0.01149041
## 2349 455 Prasinophytes Pra 0.06424559
## 2350 455 Prasinophytes Viol 0.09883439
## 2351 455 Chlorophytes Viol 0.01555686
## 2352 455 Haptophytes X19hex 1.01518686
## 2353 455 Cryptophytes Allo 0.38486206
## 2354 455 Prasinophytes Zea 0.13894375
## 2355 455 Chlorophytes Zea 0.01779070
## 2356 455 Syn Zea 0.97410502
## 2357 455 Prasinophytes Chl_b 0.62914260
## 2358 455 Chlorophytes Chl_b 0.16672406
## 2359 455 Prasinophytes Tchla 1.00000000
## 2360 455 Chlorophytes Tchla 1.00000000
## 2361 455 Cryptophytes Tchla 1.00000000
## 2362 455 Diatoms-2 Tchla 1.00000000
## 2363 455 Dinoflagellates-1 Tchla 1.00000000
## 2364 455 Haptophytes Tchla 1.00000000
## 2365 455 Pelagophytes Tchla 1.00000000
## 2366 455 Syn Tchla 1.00000000
## 2367 460 Dinoflagellates-1 Per 0.36209798
## 2368 460 Haptophytes X19but 0.22798977
## 2369 460 Pelagophytes X19but 0.45870192
## 2370 460 Diatoms-2 Fuco 0.76640858
## 2371 460 Haptophytes Fuco 0.22512597
## 2372 460 Pelagophytes Fuco 1.16089230
## 2373 460 Prasinophytes Neox 0.10170251
## 2374 460 Chlorophytes Neox 0.01149041
## 2375 460 Prasinophytes Pra 0.06424559
## 2376 460 Prasinophytes Viol 0.09883439
## 2377 460 Chlorophytes Viol 0.01555686
## 2378 460 Haptophytes X19hex 1.01518686
## 2379 460 Cryptophytes Allo 0.38486206
## 2380 460 Prasinophytes Zea 0.13894375
## 2381 460 Chlorophytes Zea 0.01779070
## 2382 460 Syn Zea 0.97410502
## 2383 460 Prasinophytes Chl_b 0.62914260
## 2384 460 Chlorophytes Chl_b 0.16672406
## 2385 460 Prasinophytes Tchla 1.00000000
## 2386 460 Chlorophytes Tchla 1.00000000
## 2387 460 Cryptophytes Tchla 1.00000000
## 2388 460 Diatoms-2 Tchla 1.00000000
## 2389 460 Dinoflagellates-1 Tchla 1.00000000
## 2390 460 Haptophytes Tchla 1.00000000
## 2391 460 Pelagophytes Tchla 1.00000000
## 2392 460 Syn Tchla 1.00000000
## 2393 465 Dinoflagellates-1 Per 0.36209798
## 2394 465 Haptophytes X19but 0.22798977
## 2395 465 Pelagophytes X19but 0.45870192
## 2396 465 Diatoms-2 Fuco 0.76640858
## 2397 465 Haptophytes Fuco 0.22512597
## 2398 465 Pelagophytes Fuco 1.16089230
## 2399 465 Prasinophytes Neox 0.10170251
## 2400 465 Chlorophytes Neox 0.01149041
## 2401 465 Prasinophytes Pra 0.06424559
## 2402 465 Prasinophytes Viol 0.09883439
## 2403 465 Chlorophytes Viol 0.01555686
## 2404 465 Haptophytes X19hex 1.01518686
## 2405 465 Cryptophytes Allo 0.38486206
## 2406 465 Prasinophytes Zea 0.13894375
## 2407 465 Chlorophytes Zea 0.01779070
## 2408 465 Syn Zea 0.97410502
## 2409 465 Prasinophytes Chl_b 0.62914260
## 2410 465 Chlorophytes Chl_b 0.16672406
## 2411 465 Prasinophytes Tchla 1.00000000
## 2412 465 Chlorophytes Tchla 1.00000000
## 2413 465 Cryptophytes Tchla 1.00000000
## 2414 465 Diatoms-2 Tchla 1.00000000
## 2415 465 Dinoflagellates-1 Tchla 1.00000000
## 2416 465 Haptophytes Tchla 1.00000000
## 2417 465 Pelagophytes Tchla 1.00000000
## 2418 465 Syn Tchla 1.00000000
## 2419 470 Dinoflagellates-1 Per 0.35930000
## 2420 470 Haptophytes X19but 0.22930000
## 2421 470 Pelagophytes X19but 0.46380000
## 2422 470 Diatoms-2 Fuco 0.77980000
## 2423 470 Haptophytes Fuco 0.22430000
## 2424 470 Pelagophytes Fuco 1.15580000
## 2425 470 Prasinophytes Neox 0.10260000
## 2426 470 Chlorophytes Neox 0.01170000
## 2427 470 Prasinophytes Pra 0.06439076
## 2428 470 Prasinophytes Viol 0.09951940
## 2429 470 Chlorophytes Viol 0.01500000
## 2430 470 Haptophytes X19hex 1.04550000
## 2431 470 Cryptophytes Allo 0.38030000
## 2432 470 Prasinophytes Zea 0.13932818
## 2433 470 Chlorophytes Zea 0.01860000
## 2434 470 Syn Zea 1.00430000
## 2435 470 Prasinophytes Chl_b 0.62645484
## 2436 470 Chlorophytes Chl_b 0.16660763
## 2437 470 Prasinophytes Tchla 1.00000000
## 2438 470 Chlorophytes Tchla 1.00000000
## 2439 470 Cryptophytes Tchla 1.00000000
## 2440 470 Diatoms-2 Tchla 1.00000000
## 2441 470 Dinoflagellates-1 Tchla 1.00000000
## 2442 470 Haptophytes Tchla 1.00000000
## 2443 470 Pelagophytes Tchla 1.00000000
## 2444 470 Syn Tchla 1.00000000
## 2445 475 Dinoflagellates-1 Per 0.35930000
## 2446 475 Haptophytes X19but 0.22930000
## 2447 475 Pelagophytes X19but 0.46380000
## 2448 475 Diatoms-2 Fuco 0.77980000
## 2449 475 Haptophytes Fuco 0.22430000
## 2450 475 Pelagophytes Fuco 1.15580000
## 2451 475 Prasinophytes Neox 0.10260000
## 2452 475 Chlorophytes Neox 0.01170000
## 2453 475 Prasinophytes Pra 0.06439076
## 2454 475 Prasinophytes Viol 0.09951940
## 2455 475 Chlorophytes Viol 0.01500000
## 2456 475 Haptophytes X19hex 1.04550000
## 2457 475 Cryptophytes Allo 0.38030000
## 2458 475 Prasinophytes Zea 0.13932818
## 2459 475 Chlorophytes Zea 0.01860000
## 2460 475 Syn Zea 1.00430000
## 2461 475 Prasinophytes Chl_b 0.62645484
## 2462 475 Chlorophytes Chl_b 0.16660763
## 2463 475 Prasinophytes Tchla 1.00000000
## 2464 475 Chlorophytes Tchla 1.00000000
## 2465 475 Cryptophytes Tchla 1.00000000
## 2466 475 Diatoms-2 Tchla 1.00000000
## 2467 475 Dinoflagellates-1 Tchla 1.00000000
## 2468 475 Haptophytes Tchla 1.00000000
## 2469 475 Pelagophytes Tchla 1.00000000
## 2470 475 Syn Tchla 1.00000000
## 2471 480 Dinoflagellates-1 Per 0.35930000
## 2472 480 Haptophytes X19but 0.22930000
## 2473 480 Pelagophytes X19but 0.46380000
## 2474 480 Diatoms-2 Fuco 0.77980000
## 2475 480 Haptophytes Fuco 0.22430000
## 2476 480 Pelagophytes Fuco 1.15580000
## 2477 480 Prasinophytes Neox 0.10260000
## 2478 480 Chlorophytes Neox 0.01170000
## 2479 480 Prasinophytes Pra 0.06439076
## 2480 480 Prasinophytes Viol 0.09951940
## 2481 480 Chlorophytes Viol 0.01500000
## 2482 480 Haptophytes X19hex 1.04550000
## 2483 480 Cryptophytes Allo 0.38030000
## 2484 480 Prasinophytes Zea 0.13932818
## 2485 480 Chlorophytes Zea 0.01860000
## 2486 480 Syn Zea 1.00430000
## 2487 480 Prasinophytes Chl_b 0.62645484
## 2488 480 Chlorophytes Chl_b 0.16660763
## 2489 480 Prasinophytes Tchla 1.00000000
## 2490 480 Chlorophytes Tchla 1.00000000
## 2491 480 Cryptophytes Tchla 1.00000000
## 2492 480 Diatoms-2 Tchla 1.00000000
## 2493 480 Dinoflagellates-1 Tchla 1.00000000
## 2494 480 Haptophytes Tchla 1.00000000
## 2495 480 Pelagophytes Tchla 1.00000000
## 2496 480 Syn Tchla 1.00000000
## 2497 485 Dinoflagellates-1 Per 0.35930000
## 2498 485 Haptophytes X19but 0.22930000
## 2499 485 Pelagophytes X19but 0.46380000
## 2500 485 Diatoms-2 Fuco 0.77980000
## 2501 485 Haptophytes Fuco 0.22430000
## 2502 485 Pelagophytes Fuco 1.15580000
## 2503 485 Prasinophytes Neox 0.10260000
## 2504 485 Chlorophytes Neox 0.01170000
## 2505 485 Prasinophytes Pra 0.06439076
## 2506 485 Prasinophytes Viol 0.09951940
## 2507 485 Chlorophytes Viol 0.01500000
## 2508 485 Haptophytes X19hex 1.04550000
## 2509 485 Cryptophytes Allo 0.38030000
## 2510 485 Prasinophytes Zea 0.13932818
## 2511 485 Chlorophytes Zea 0.01860000
## 2512 485 Syn Zea 1.00430000
## 2513 485 Prasinophytes Chl_b 0.62645484
## 2514 485 Chlorophytes Chl_b 0.16660763
## 2515 485 Prasinophytes Tchla 1.00000000
## 2516 485 Chlorophytes Tchla 1.00000000
## 2517 485 Cryptophytes Tchla 1.00000000
## 2518 485 Diatoms-2 Tchla 1.00000000
## 2519 485 Dinoflagellates-1 Tchla 1.00000000
## 2520 485 Haptophytes Tchla 1.00000000
## 2521 485 Pelagophytes Tchla 1.00000000
## 2522 485 Syn Tchla 1.00000000
## 2523 490 Dinoflagellates-1 Per 0.35930000
## 2524 490 Haptophytes X19but 0.22930000
## 2525 490 Pelagophytes X19but 0.46380000
## 2526 490 Diatoms-2 Fuco 0.77980000
## 2527 490 Haptophytes Fuco 0.22430000
## 2528 490 Pelagophytes Fuco 1.15580000
## 2529 490 Prasinophytes Neox 0.10260000
## 2530 490 Chlorophytes Neox 0.01170000
## 2531 490 Prasinophytes Pra 0.06439076
## 2532 490 Prasinophytes Viol 0.09951940
## 2533 490 Chlorophytes Viol 0.01500000
## 2534 490 Haptophytes X19hex 1.04550000
## 2535 490 Cryptophytes Allo 0.38030000
## 2536 490 Prasinophytes Zea 0.13932818
## 2537 490 Chlorophytes Zea 0.01860000
## 2538 490 Syn Zea 1.00430000
## 2539 490 Prasinophytes Chl_b 0.62645484
## 2540 490 Chlorophytes Chl_b 0.16660763
## 2541 490 Prasinophytes Tchla 1.00000000
## 2542 490 Chlorophytes Tchla 1.00000000
## 2543 490 Cryptophytes Tchla 1.00000000
## 2544 490 Diatoms-2 Tchla 1.00000000
## 2545 490 Dinoflagellates-1 Tchla 1.00000000
## 2546 490 Haptophytes Tchla 1.00000000
## 2547 490 Pelagophytes Tchla 1.00000000
## 2548 490 Syn Tchla 1.00000000
## 2549 495 Dinoflagellates-1 Per 0.35930000
## 2550 495 Haptophytes X19but 0.22930000
## 2551 495 Pelagophytes X19but 0.46380000
## 2552 495 Diatoms-2 Fuco 0.77980000
## 2553 495 Haptophytes Fuco 0.22430000
## 2554 495 Pelagophytes Fuco 1.15580000
## 2555 495 Prasinophytes Neox 0.10260000
## 2556 495 Chlorophytes Neox 0.01170000
## 2557 495 Prasinophytes Pra 0.06439076
## 2558 495 Prasinophytes Viol 0.09951940
## 2559 495 Chlorophytes Viol 0.01500000
## 2560 495 Haptophytes X19hex 1.04550000
## 2561 495 Cryptophytes Allo 0.38030000
## 2562 495 Prasinophytes Zea 0.13932818
## 2563 495 Chlorophytes Zea 0.01860000
## 2564 495 Syn Zea 1.00430000
## 2565 495 Prasinophytes Chl_b 0.62645484
## 2566 495 Chlorophytes Chl_b 0.16660763
## 2567 495 Prasinophytes Tchla 1.00000000
## 2568 495 Chlorophytes Tchla 1.00000000
## 2569 495 Cryptophytes Tchla 1.00000000
## 2570 495 Diatoms-2 Tchla 1.00000000
## 2571 495 Dinoflagellates-1 Tchla 1.00000000
## 2572 495 Haptophytes Tchla 1.00000000
## 2573 495 Pelagophytes Tchla 1.00000000
## 2574 495 Syn Tchla 1.00000000
## 2575 500 Dinoflagellates-1 Per 0.35930000
## 2576 500 Haptophytes X19but 0.22930000
## 2577 500 Pelagophytes X19but 0.46380000
## 2578 500 Diatoms-2 Fuco 0.77980000
## 2579 500 Haptophytes Fuco 0.22430000
## 2580 500 Pelagophytes Fuco 1.15580000
## 2581 500 Prasinophytes Neox 0.10260000
## 2582 500 Chlorophytes Neox 0.01170000
## 2583 500 Prasinophytes Pra 0.06439076
## 2584 500 Prasinophytes Viol 0.09951940
## 2585 500 Chlorophytes Viol 0.01500000
## 2586 500 Haptophytes X19hex 1.04550000
## 2587 500 Cryptophytes Allo 0.38030000
## 2588 500 Prasinophytes Zea 0.13932818
## 2589 500 Chlorophytes Zea 0.01860000
## 2590 500 Syn Zea 1.00430000
## 2591 500 Prasinophytes Chl_b 0.62645484
## 2592 500 Chlorophytes Chl_b 0.16660763
## 2593 500 Prasinophytes Tchla 1.00000000
## 2594 500 Chlorophytes Tchla 1.00000000
## 2595 500 Cryptophytes Tchla 1.00000000
## 2596 500 Diatoms-2 Tchla 1.00000000
## 2597 500 Dinoflagellates-1 Tchla 1.00000000
## 2598 500 Haptophytes Tchla 1.00000000
## 2599 500 Pelagophytes Tchla 1.00000000
## 2600 500 Syn Tchla 1.00000000
##
## $converge_plot
