"; echo "

Currently available genomes ($num genomes; only proteins >= 35 aa are included)

"; echo ""; echo ""; echo ""; // plants: plant, moss_fern, green algae, rhodophyta $moss = array(); $galgae = array(); $rhodo = array(); // $diatom = array(); // $fungi = array(); $vert = array(); // urochordata + cephalochordata $urochor = array(); // $echino = array(); $arthro = array(); $nematode = array(); $annelida = array(); $platyhelminthes = array(); $mollusca = array(); $cnidaria = array(); $porifera = array(); $placozoa = array(); // other metazoa $metazoa = array(); // choanoflagellates $choanozoa = array(); // $amoebozoa = array(); // alveolata: ciliates $alveolata = array(); // stramenopile: (diatom), oomycetes, brown algae $stramenopile = array(); $haptophyte = array(); // excavata: euglenids $excavata = array(); echo ""; for ($i=0; $i <$num; $i++){ $row = mysql_fetch_array($result1); if ($row["taxonomy"] == "plant") { echo "" . ""; } elseif ($row["taxonomy"] == "moss_fern") { array_push ($moss, $row); } elseif ($row["taxonomy"] == "g_algae") { array_push ($galgae, $row); } elseif ($row["taxonomy"] == "rhodophyta") { array_push ($rhodo, $row); } elseif ($row["taxonomy"] == "diatom") { array_push ($diatom, $row); } elseif ($row["taxonomy"] == "fungi") { array_push ($fungi, $row); } elseif ($row["taxonomy"] == "vert") { array_push ($vert, $row); } elseif ($row["taxonomy"] == "urochor") { array_push ($urochor, $row); } elseif ($row["taxonomy"] == "echino") { array_push ($echino, $row); } elseif ($row["taxonomy"] == "arthro") { array_push ($arthro, $row); } elseif ($row["taxonomy"] == "nematode") { array_push ($nematode, $row); } elseif ($row["taxonomy"] == "annelida") { array_push ($annelida, $row); } elseif ($row["taxonomy"] == "mollusca") { array_push ($mollusca, $row); } elseif ($row["taxonomy"] == "cnidaria") { array_push ($cnidaria, $row); } elseif ($row["taxonomy"] == "choanozoa") { array_push ($choanozoa, $row); } elseif ($row["taxonomy"] == "amoebozoa") { array_push ($amoebozoa, $row); } elseif ($row["taxonomy"] == "alveolata") { array_push ($alveolata, $row); } elseif ($row["taxonomy"] == "stramenopile") { array_push ($stramenopile, $row); } elseif ($row["taxonomy"] == "haptophyte") { array_push ($haptophyte, $row); } elseif ($row["taxonomy"] == "excavata") { array_push ($excavata, $row); } elseif ($row["taxonomy"] == "porifera") { array_push ($porifera, $row); } elseif ($row["taxonomy"] == "platyhelminthes") { array_push ($platyhelminthes, $row); } elseif ($row["taxonomy"] == "placozoa") { array_push ($placozoa, $row); } } mysql_close(); echo ""; $num = count($moss); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($galgae); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($rhodo); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($fungi); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($vert); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($urochor); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($echino); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($arthro); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($nematode); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($annelida); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($platyhelminthes); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($mollusca); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($cnidaria); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($porifera); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($placozoa); for ($i=0; $i <$num; $i++){ echo "" . ""; } // echo ""; // $num = count($metazoa); // for ($i=0; $i <$num; $i++){ // echo "" . // ""; // } echo ""; $num = count($choanozoa); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($amoebozoa); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($alveolata); for ($i=0; $i <$num; $i++){ echo "" . ""; } // echo ""; // $num = count($diatom); // for ($i=0; $i <$num; $i++){ // echo "" . // ""; // } echo ""; $num = count($stramenopile); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($haptophyte); for ($i=0; $i <$num; $i++){ echo "" . ""; } echo ""; $num = count($excavata); for ($i=0; $i <$num; $i++){ echo "" . ""; } ?>
Genome nameNo. proteinsDescriptionDate added
[Land plants]
" . $row["species"] . "" . $row["nseq"] . "" . $row["description"] . "" . $row["date"] . "
[Mosses & Ferns]
" . $moss[$i]["species"] . "" . $moss[$i]["nseq"] . "" . $moss[$i]["description"] . "" . $moss[$i]["date"] . "
[Green algae]
" . $galgae[$i]["species"] . "" . $galgae[$i]["nseq"] . "" . $galgae[$i]["description"] . "" . $galgae[$i]["date"] . "
[Rhodophytes]
" . $rhodo[$i]["species"] . "" . $rhodo[$i]["nseq"] . "" . $rhodo[$i]["description"] . "" . $rhodo[$i]["date"] . "
[Fungi]
" . $fungi[$i]["species"] . "" . $fungi[$i]["nseq"] . "" . $fungi[$i]["description"] . "" . $fungi[$i]["date"] . "
[Vertebrates]
" . $vert[$i]["species"] . "" . $vert[$i]["nseq"] . "" . $vert[$i]["description"] . "" . $vert[$i]["date"] . "
[Urochordates & Cephalochordata]
" . $urochor[$i]["species"] . "" . $urochor[$i]["nseq"] . "" . $urochor[$i]["description"] . "" . $urochor[$i]["date"] . "
[Echinoderms]
" . $echino[$i]["species"] . "" . $echino[$i]["nseq"] . "" . $echino[$i]["description"] . "" . $echino[$i]["date"] . "
[Arthropodes]
" . $arthro[$i]["species"] . "" . $arthro[$i]["nseq"] . "" . $arthro[$i]["description"] . "" . $arthro[$i]["date"] . "
[Nematodes]
" . $nematode[$i]["species"] . "" . $nematode[$i]["nseq"] . "" . $nematode[$i]["description"] . "" . $nematode[$i]["date"] . "
[Annelida]
" . $annelida[$i]["species"] . "" . $annelida[$i]["nseq"] . "" . $annelida[$i]["description"] . "" . $annelida[$i]["date"] . "
[Platyhelminthes]
" . $platyhelminthes[$i]["species"] . "" . $platyhelminthes[$i]["nseq"] . "" . $platyhelminthes[$i]["description"] . "" . $platyhelminthes[$i]["date"] . "
[Mollusca]
" . $mollusca[$i]["species"] . "" . $mollusca[$i]["nseq"] . "" . $mollusca[$i]["description"] . "" . $mollusca[$i]["date"] . "
[Cnidaria]
" . $cnidaria[$i]["species"] . "" . $cnidaria[$i]["nseq"] . "" . $cnidaria[$i]["description"] . "" . $cnidaria[$i]["date"] . "
[Porifera]
" . $porifera[$i]["species"] . "" . $porifera[$i]["nseq"] . "" . $porifera[$i]["description"] . "" . $porifera[$i]["date"] . "
[Placozoa]
" . $placozoa[$i]["species"] . "" . $placozoa[$i]["nseq"] . "" . $placozoa[$i]["description"] . "" . $placozoa[$i]["date"] . "
[Other metazoa]
" . $metazoa[$i]["species"] . "" . // $metazoa[$i]["nseq"] . "" . $metazoa[$i]["description"] . "" . $metazoa[$i]["date"] . "
[Choanoflagellates]
" . $choanozoa[$i]["species"] . "" . $choanozoa[$i]["nseq"] . "" . $choanozoa[$i]["description"] . "" . $choanozoa[$i]["date"] . "
[Amoebozoa]
" . $amoebozoa[$i]["species"] . "" . $amoebozoa[$i]["nseq"] . "" . $amoebozoa[$i]["description"] . "" . $amoebozoa[$i]["date"] . "
[Alveolates]
" . $alveolata[$i]["species"] . "" . $alveolata[$i]["nseq"] . "" . $alveolata[$i]["description"] . "" . $alveolata[$i]["date"] . "
[Stramenopiles (Heterokonts): Diatoms]
" . $diatom[$i]["species"] . "" . // $diatom[$i]["nseq"] . "" . $diatom[$i]["description"] . "" . $diatom[$i]["date"] . "
[Stramenopiles (Heterokonts)]
" . $stramenopile[$i]["species"] . "" . $stramenopile[$i]["nseq"] . "" . $stramenopile[$i]["description"] . "" . $stramenopile[$i]["date"] . "
[Haptophyte]
" . $haptophyte[$i]["species"] . "" . $haptophyte[$i]["nseq"] . "" . $haptophyte[$i]["description"] . "" . $haptophyte[$i]["date"] . "
[Excavates]
" . $excavata[$i]["species"] . "" . $excavata[$i]["nseq"] . "" . $excavata[$i]["description"] . "" . $excavata[$i]["date"] . "