HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/treeify/examples/eukaryotes.js
var treeify = require('../treeify');

// Based on information taken from the Tree of Life web project
// http://tolweb.org/Eukaryotes/3
var Eukaryotes = {
   'Archaeplastida (Plantae)': {
      'Green plants': 'green algae & land plants',
      'Rhodophyta': 'red algae',
      'Glaucophytes': 'microalgae'
   },
   'Unikonts': {
      'Opisthokonts': {
         'Animals': null,
         'Choanoflagellates': null,
         'Filasterea': null,
         'Ichthyosporea': null,
         'Fungi': 'mushrooms, sac fungi, yeast, molds, etc',
         'Nucleariidae': 'filose amoebae'
      },
      'Amoebozoa': 'amoebae, slime molds, and parasitic protists',
   },
   'Chromalveolates': {
      '': {
         'Rhizaria': {
            'Cercozoa': 'amoeboflagellates',
            'Foraminifera': 'complex cells with reticulopodia',
            'Radiolaria': null
         },
         'Alveolates': 'dinoflagellates, ciliates and apicomplexan parasites',
         'Stramenopiles': 'e.g. water molds, diatoms, brown algae'
      },
      'Hacrobia': 'Haptophyta, Cryptomonads, etc.'
   },
   'Excavates': {
      'Malawimonads': null,
      'Discicristates': {
         'Euglenozoa': 'euglenids, diplonemids and kinetoplastids',
         'Heterolobosea': 'amoeboflagellates with discoidal mitchondrial cristae',
         'Jakobida': 'free-living, heterotrophic flagellates'
      },
      'Parabasalids': 'trichomonads and hypermastigotes',
      'Fornicata': 'diplomonads and retortamonads',
      'Preaxostyla': 'oxymonads and Trimastix'
   }
};

console.log('Eukaryotes');

treeify.asLines(Eukaryotes, true, function(line) {
   console.log(line);
});