Paul Lewis | 911c1b8 | 2019-12-02 12:46:15 +0000 | [diff] [blame^] | 1 | var treeify = require('../treeify'); |
| 2 | |
| 3 | // Based on information taken from the Tree of Life web project |
| 4 | // http://tolweb.org/Eukaryotes/3 |
| 5 | var 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 | |
| 47 | console.log('Eukaryotes'); |
| 48 | |
| 49 | treeify.asLines(Eukaryotes, true, function(line) { |
| 50 | console.log(line); |
| 51 | }); |