blob: 8477e3eb39a7effa274bffded9b7ea57eb28432d [file] [log] [blame]
Paul Lewis911c1b82019-12-02 12:46:15 +00001var treeify = require('../treeify');
2
3// Based on information taken from the Tree of Life web project
4// http://tolweb.org/Eukaryotes/3
5var Eukaryotes = {
6 'Archaeplastida (Plantae)': {
7 'Green plants': 'green algae & land plants',
8 'Rhodophyta': 'red algae',
9 'Glaucophytes': 'microalgae'
10 },
11 'Unikonts': {
12 'Opisthokonts': {
13 'Animals': null,
14 'Choanoflagellates': null,
15 'Filasterea': null,
16 'Ichthyosporea': null,
17 'Fungi': 'mushrooms, sac fungi, yeast, molds, etc',
18 'Nucleariidae': 'filose amoebae'
19 },
20 'Amoebozoa': 'amoebae, slime molds, and parasitic protists',
21 },
22 'Chromalveolates': {
23 '': {
24 'Rhizaria': {
25 'Cercozoa': 'amoeboflagellates',
26 'Foraminifera': 'complex cells with reticulopodia',
27 'Radiolaria': null
28 },
29 'Alveolates': 'dinoflagellates, ciliates and apicomplexan parasites',
30 'Stramenopiles': 'e.g. water molds, diatoms, brown algae'
31 },
32 'Hacrobia': 'Haptophyta, Cryptomonads, etc.'
33 },
34 'Excavates': {
35 'Malawimonads': null,
36 'Discicristates': {
37 'Euglenozoa': 'euglenids, diplonemids and kinetoplastids',
38 'Heterolobosea': 'amoeboflagellates with discoidal mitchondrial cristae',
39 'Jakobida': 'free-living, heterotrophic flagellates'
40 },
41 'Parabasalids': 'trichomonads and hypermastigotes',
42 'Fornicata': 'diplomonads and retortamonads',
43 'Preaxostyla': 'oxymonads and Trimastix'
44 }
45};
46
47console.log('Eukaryotes');
48
49treeify.asLines(Eukaryotes, true, function(line) {
50 console.log(line);
51});