-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvolume4-tables.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 666.
4549 lines (3952 loc) · 242 KB
/
volume4-tables.csv
File metadata and controls
4549 lines (3952 loc) · 242 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#####
TABLE 1. Some characteristics that differentiate the genera of the family Bacteroidaceae a
Characteristic Bacteroides Acetofilamentum Acetomicrobium Acetothermus Anaerorhabdus
Cell size (mm) 0.5–2.0 × 1.6–12 0.18–0.3 × 2–8 0.6–0.8 × 2–7 0.5 × 5–8 0.3–1.5 × 1–3
Motility − − + − −
Saccharolytic + + + + −
Growth occurs below 50°C + + + − +
Major products of glucose Succinate and acetate; trace to Acetate and H2 (in a molar Acetate and H2 or Acetate and H2 in a molar Acetate and lactate
fermentation moderate amounts of isobutyrate ratio of 1:2) and CO2 acetate, lactate, ethanol, ratio of 1:1:2.
and isovalerate and H2
Isolated from Major constituents of the normal Secondary sewage sludge Sewage sludge Thermophilically Infected appendix, lung
human colonic flora; also found in fermenting sewage sludge abscesses and abdominal
smaller numbers in the female genital abscesses; infrequently
tract; not common in the mouth or from human and pig feces
DNA G+C content (mol%) 39–49 ~47 47 ~62 34
footnote a: Symbols: +, >85% positive; −, 0–15% positive.
#####
TABLE 2. Descriptive characteristics of different Bacteroides speciesa,b
1. B. fragilis 2. B. acidifaciens 3. B. caccae 4. B. coprocola 5. B. coprosuis 6. B. distasonis 7. B. dorei 8. B. eggerthii 9. B. finegoldii 10. B. goldsteinii 11. B. helcogenes
Characteristic
Cell size (µm) 0.8–1.3 × 0.8–1.3 × 1.4–1.6 × 0.8–1.0 × 0.8–3.0 × 1.3–1.9 × 1.6–4.2 × 0.4–1.0 × 0.8 × 0.9–1.5 × 0.5–0.6 ×
1.6–8.0 1.6–8.0 2.5–12 4.0 0.5–1.5 1.6–5.0 0.8–1.2 1.0–6.0 1.5–4.5 1.2–10 0.8–4.0
Growth in 20% bile + + + + + + + + + + w
Production of:
Indole − v − + − − − + − − −
Catalase + nr d − − d nr − nr nr −
Starch hydrolyzed + d w nr + + nr w nr nr +
Gelatin digested w nr w − − w nr − − nr −
G6PDH and 6PGDH + + + nr nr + nr + nr nr nr
Acid produced from:
Arabinose − nr + − − d + + + − −
Cellobiose d nr d + − + − d + + +
Xylan − nr − nr nr − nr + nr − +
Glucose + nr + + + + + + + + +
Glycogen + nr w nr nr − nr + nr nr +
Inositol − nr nr nr nr − nr − nr nr nr
Lactose + nr nr + nr + + + + nr +
Maltose + nr nr + + + + + + nr +
Mannitol − nr nr − nr − − − − nr nr
Mannose + nr nr + nr + + + + + +
Melezitose − nr d − nr + − − − nr −
Melibiose w nr + nr nr + nr − nr nr +
Raffinose + nr + + nr + + − + + +
Rhamnose − nr d + nr d + w + + nr
Ribose − nr + nr nr d nr − nr nr nr
Salicin − nr d + nr + − − + − +
Sucrose + nr + + nr + + − nr + +
Trehalose − nr + − nr + − − − − −
Xylose + nr + + − + + + + + +
Enzyme activity: d
a-Galactosidase + nr + + w + + + + + nr
b-Galactosidase + nr + + + + + + + + nr
a-Glucosidase + nr w + + + + + + + nr
b-Glucosidase + nr w + + + + + + − nr
a-Arabinosidase − nr + + − + + + + − nr
b-Glucuronidase − nr − − − − + − − − +
N-Acety1- + nr + + + + + + + + nr
b-glucosaminidase
Glutamic acid + nr w + nr + + + + − v
decarboxylase
a-Fucosidase + nr + + + − + − − − nr
Alkaline phosphatase + nr + + + + + + + + nr
Arginine arylamidase + nr + − + + + − − + −
Leucine arylamidase + nr + − − + + − − + −
Glutamyl glutamic + nr + + + + + + + + nr
acid arylamidase
Glycine arylamidase − nr − − − + + − − + −
Leucyl glycine + nr + + + + + + + + nr
arylamidase
Alanine arylamidase + nr + + + + + + + + nr
Major metabolic A, S, p, pa A, S A, S, p, nr A, S, p A, S, p nr A, S, p nr A, S, p A, S (p, iv)
end product(s)e (ib, iv, l) (iv) (pa, ib, (pa, ib, (iv, f)
iv, l) iv, l)
footnote a: Symbols: +, >85% positive; d, different strains give different reactions (16–84% positive); −, 0–15% positive; +−, usually positive, sometimes negative; w, weak reaction; nr, not reported.
footnote b: Esculin is usually hydrolyzed and nitrate is not reduced to nitrite.
footnote c: Type strain is negative.
footnote d: Enzyme activity tested using API kits.
footnote e: Fermentation products: A, acetic acid; B, butyric acid; P, propionic acid; PA, phenylacetic acid; S, succinic acid; ib, isobutyric acid; iv, isovaleric acid; f, formic acid; l, lactic acid. Capital letters indicate >1 meq/100 ml of broth; small letters, <1 meq/100 ml; products in parentheses may or may not be detected.
#####
TABLE 3. Descriptive characteristics of Bacteroides and related generaa
Bacteroides b Porphyromonas c Prevotella Alistipes d Tannerella
Characteristic
Pigment production − +− +/− +− −
Growth in 20% bile + − − +− −
Susceptibility to: e
Vancomycin (5 mg) R S/R R R R
Kanamycin (1 mg) R R S/R R S
Colistin (10 mg) R R S/R R S
Catalase production − − − −+ −
Indole production +/− +/− +/− +− −
Nitrate reduction − − − − −
G6PDH and 6PGDH dehydrogenase production + − − − −
Proteolytic activity − +/− +/− + +
Carbohydrate fermentation + −+ + +− −
Major metabolic end product(s)f A, S A, B A, S S A, S, PA
Major cellular fatty acids C15:0 anteiso C15:0 iso C15:0 anteiso C15:0 iso C15:0 anteiso
DNA G+C content (mol%) 40–48 40–55 39–60 55–58 44–48
Type species B. fragilis P. asaccharolytica P. melaninogenica A. putredinis T. forsythia
footnote a: Symbols: +, positive; −, negative; −+, usually negative, sometimes positive; +/−, positive or negative; +−, usually positive, sometimes negative.
footnote b: Bacteroides sensu stricto.
footnote c: Unlike other Porphyromonas spp., P. catoniae does not produce pigment and is moderately saccharolytic.
footnote d: Unlike other Alistipes spp., A. putredinis does not produce pigment, is susceptible to bile, catalase-positive, and nonsaccharolytic.
footnote e: Special potency antimicrobial identification disks; R, resistant; S, susceptible; S/R, either sensitive or resistant.
footnote f: A, acetic acid; B, butyric acid; PA, phenylacetic acid; S, succinic acid.
#####
TABLE 4. Taxonomy changes in the genus Bacteroides
Previous name References Current name Reference(s)
Species reclassified into the genus
Porphyromonas:
B. asaccharolyticus Holdeman and Moore (1970) Porphyromonas asaccharolytica Shah and Collins (1988)
B. endodontalis van Steenbergen et al. (1984) Porphyromonas endodontalis Shah and Collins (1988)
B. gingivalis Coykendall et al. (1980) Porphyromonas gingivalis Shah and Collins (1988)
B. levii Johnson and Holdeman (1983) Porphyromonas levii Shah et al. (1995)
B. macacae Slots and Genco (1980) Porphyromonas macacae Love (1995)
B. salivosus Love et al. (1987) Porphyromonas macacae Love (1995)
Species reclassified into the genus
Prevotella:
B. bivius Holdeman and Johnson (1977) Prevotella bivia Shah and Collins (1990)
B. ruminicola subsp. brevis Bryant et al. (1958) Prevotella brevis Avgustin et al. (1997)
B. buccae Holdeman and Johnson (1982) Prevotella buccae Shah and Collins (1990)
B. capillus Kornman and Holt (1981) Prevotella buccae Shah and Collins (1990)
B. pentosaceus Shah and Collins (1981) Prevotella buccae Shah and Collins (1990)
B. buccalis Shah and Collins (1981) Prevotella buccalis Shah and Collins (1990)
B. corporis Johnson and Holdeman (1983) Prevotella corporis Shah and Collins (1990)
B. denticola Shah and Collins (1981) Prevotella denticola Shah and Collins (1990) emend.
Wu et al. (1992)
B. disiens Holdeman and Johnson (1977) Prevotella disiens Shah and Collins (1990)
B. heparinolyticus Okuda et al. (1985) Prevotella heparinolytica Shah and Collins (1990)
B. intermedius Holdeman and Moore (1970) Prevotella intermedia Shah and Collins (1990)
B. loescheii Holdeman and Johnson (1982) Prevotella loescheii Shah and Collins (1990) emend.
Wu et al. (1992)
B. melaninogenicus Oliver and Wherry (1921) emend. Prevotella melaninogenica Shah and Collins (1990) emend.
Roy and Kelly (1939) Wu et al. (1992)
B. oralis Loesche et al. (1964) Prevotella oralis Shah and Collins (1990)
B. oris Holdeman and Johnson (1982) Prevotella oris Shah and Collins (1990)
B. oulorum Shah et al. (1985) Prevotella oulorum Shah and Collins (1990)
B. ruminicola subsp. ruminicola Bryant et al. (1958) Prevotella ruminicola Shah and Collins (1990)
B. veroralis Watabe et al. (1983) Prevotella veroralis Shah and Collins (1990) emend.
Wu et al. (1992)
B. zoogleoformans Weinberg et al. (1937) emend. Prevotella zoogleoformans Shah and Collins (1990) emend.
Cato et al. (1982) Moore et al. (1994)
Species reclassified into other genera:
B. amylophilus Hamlin and Hungate (1956) Ruminobacter amylophilus Stackebrandt and Hippe (1986)
B. forsythus Tanner et al. (1986) Tannerella forsythia Sakamoto et al. (2002)
B. furcosus Veillon and Zuber (1898) Anaerorhabdus furcosa Shah and Collins (1986)
B. gracilis Tanner et al. (1981) Campylobacter gracilis Vandamme et al. (1995)
B. hypermegas Harrison and Hansen (1963) Megamonas hypermegale Shah and Collins (1982b)
B. microfusus Kaneuchi and Mitsuoka (1978) Rikenella microfusus Collins et al. (1985)
B. multiacidus Mitsuoka et al. (1974) Mitsuokella multacida Shah and Collins (1982a)
B. nodosus Beveridge (1941) Dichelobacter nodosus Dewhirst et al. (1990)
B. ochraceus Prévot et al. (1956) Capnocytophaga ochracea Leadbetter et al. (1979)
B. pneumosintes Olitsky and Gates (1921) Dialister pneumosintes Moore and Moore (1994)
B. praeacutus Tissier (1908) Tissierella praeacuta Collins and Shah (1986b)
B. putredinis Weinberg et al. (1937) Alistipes putredinis Rautio et al. (2003)
B. succinogenes Hungate (1950) Fibrobacter succinogenes Montgomery et al. (1988)
B. termitidis Sebald (1962) Sebaldella termitidis Collins and Shah (1986a)
#####
TABLE 5. Characteristics of misplaced Bacteroides speciesa,b
1. B. capillosus 2. B. cellulosolvens 3. B. coagulans 4. B. galacturonicus 5. B. pectinophilus 6. B. polypragmatus 7. B. splanchnicus 8. B. xylanolyticus
Characteristic
Growth in 20% bile − − nr + + nr + nr
Esculin hydrolyzed + nr − − − + + nr
Indole produced − − + nr nr + + nr
Nitrate reduced − − − nr nr − − nr
Catalase produced nr − nr − − − nr nr
Starch hydrolyzed − − nr − nr + − nr
Gelatin digested w − + − + − d nr
Acid produced from:
Arabinose − − − − − + + +
Cellobiose − − − − − + − +
Xylan − − − − − nr nr +
Sorbitol − − − nr nr nr nr nr
Fructose − − − d − + d nr
Glucose w − − − − + + +
Glycogen − − − nr nr + − nr
Inositol − − − nr nr − − nr
Lactose − − − − − + + nr
Maltose − − − − − + − nr
Mannitol − − − nr nr + − nr
Mannose − − − − − + + +
Melezitose − − − nr nr + − nr
Melibiose − − − nr nr + d nr
Raffinose − − − nr nr + − nr
Rhamnose − − − − − + − nr
Ribose − − − − − + − nr
Salicin − − − nr nr + − nr
Sucrose − − − − − − − nr
Trehalose − − − nr nr + − nr
Xylose − − − − − + − +
Fermentation productsc
s, a (l, f, p) H2, CO2, a, a (f, s, l) A, F A, F (l)e H2, CO2, S, A, P H2, CO2,
ethanol, ld (l, ethanol)e ethanol, a (b) (b, ib, iv, l) ethanol, a
footnote a: Symbols: +, >85% positive; d, different strains give different reactions (16–84% positive); –, 0–15% positive; w, weak reaction; nr, not reported. Fermentation products: A, acetic acid; B, butyric acid; F, formic acid; ib, isobutyric acid; iv, isobutyric acid; l, lactic acid; p, propionic acid; S, succinic acid. Upper-case letters indicate >1 meq/100 ml of broth; lower-case letters, <1 meq/100 ml; products in parentheses may or may not be detected.
footnote b: Bacteroides ureolyticus is not included because it was described under the genus Campylobacter in Bergey’s Manual of Systematic Bacteriology, 2nd edition, vol. 2, part C.
footnote c: End products from glucose fermentation unless indicated.
footnote d: End products from cellobiose fermentation.
footnote e: End products from polygalacturonate or pectin.
#####
TABLE 6. Characteristics differentiating the genus Acetofilamentum from other generaa
Characteristic Acetofilamentum Acetomicrobium Acetothermus Acetivibrio
Shape of single cells Straight tapered rods Straight tapered rods Straight rods Curved rods
Long filaments formed + − −b −
Peptidoglycan contains ornithine + − + nr
Dimensions of single cells (mm):
Width 0.18–0.3 0.6–0.8 0.5 0.4–0.8
Length 2–8 2.0–7.0 5.0–8.0 4.0–10.0
Motility − + − +
Flagellar arrangement − Single subpolar or 1 or − Single attached one-third of the way
2 lateral along the concave side, or by a bundle
attached linearly on the concave side
Optimum temperature(°C) 35–38 58–73 58 35
Ethanol formed from glucose − D − +
Substrates fermented:
Cellulose − nr − D
Galactose + nr − D
Glucose + + + D
Glycogen − − D nr
Maltose − + − D
Mannitol − − − D
Mannose − nr − D
Ribose + D − −
Starch − D − nr
Sucrose − D − −
Xylose − D − −
Glycerol nr D nr nr
DNA G+C content (mol%) 47 45–47 62 37–44
footnote a: Symbols: +, >85% positive; −, 0–15% positive; D, different reactions occur in different taxa (species of genus or genera of a family); w, weak reaction; nr, not reported.
footnote b: Except in the absence of Vitamin B12, when filaments up to 50 mm long may be formed.
#####
TABLE 7. Characteristics differentiating species of the genus Acetomicrobium a
Characteristic A. faecale A. flavidum
Source Sewage sludge incubated at 72°C Sewage sludge incubated at 60°C
Morphology:
Cell width (mm) 0.6 0.8
Cell length (mm) 3–7 2–3
Flagellar arrangement 1–2 subpolar Single polar, or a few lateral
Optimum temperature (°C) 70–73 58
Temperature range (°C) 60–75 35–65
Yellow pigmented colonies – +
Fermentation of arabinose, ribose, xylose + –
End products from glucose fermentation Acetate, lactate, ethanol, CO2, H2 Acetate, CO2, H2
footnote a: Symbols: +, >85% positive; –, 0–15% positive.
#####
TABLE 8. Some characteristics that differentiate the genera of the family Marinilabiliaceae a
Characteristic Marinilabilia Alkaliflexus Anaerophaga
Motile by gliding + + nt
Can grow aerobically + − −
Major products of glucose Acetate, succinate, propionate, Propionate, acetate, succinate Propionate, acetate, and succinate
fermentation lactate, formate and H2 and formate
Growth above 50°C − − +
Isolated from Marine mud containing decayed Mud from an alkaline soda lake Oil contaminated sediment in
algae an oil separation tank
DNA G+C content (mol%) 37–41 44 41
footnote a: nt, Not tested.
#####
TABLE 9. Differential characteristics of Marinilabilia and related organismsa
Marinilabilia Anaerophaga Alkaliflexus Cytophaga fermentans Cytophaga xylanolytica Alistipes Rikenella
Characteristic
Cell size, mm 0.3–0.5 × 2–20 0.3 × 4–8 0.3–0.4 × 4–10 0.5–0.7 × 2–10 0.4 × 3–24 0.3–0.5 × 0.9–3.0 0.2–0.3 × 0.3–1.5
Gliding motility + − + + + − −
Cell mass color Pink to salmon Orange to Pink Yellow Orange to salmon Gray, brown to black Gray
red
Relation to oxygen
Facultative + − − + − − −
anaerobe
Strict anaerobe − + + − − + +
Aerotolerant − − − − + − −
anaerobe
Catalase + − + + w trace nd
Salt requirement + + + + − nd −
DNA G+C 37–41 42 44 39 46 55–58 60–61
content
(mol%)
footnote a: Symbols: +, >85% positive; −, 0–15% positive; w, weak reaction; nd, not determined.
#####
TABLE 10. Some characteristics that differentiate the genera of the family Rikenellaceae a
Characteristic Rikenella Alistipes
Major products of glucose fermentation Propionic and succinic acids, with moderate amounts Succinic acid with minor amounts
of acetic acid and trace amounts of alcohols of acetic acid
Major quinone MK-8 nr
Source Fecal or cecal specimens from calves, chickens, Human and animal specimens
and Japanese quails of intestinal origin
DNA G+C content (mol%) 59.5-60.7 55–58
footnote a: nr, Not reported.
#####
TABLE 11. Characteristics differentiating Alistipes from related generaa
Characteristic Alistipes b Bacteroides c Porphyromonas d Prevotella Rikenella Tannerella
Growth in air and CO2 – – – – – –
Gram reaction – – – – – –
Pigment production + – + D – –
Growth in 20% bile + + – – + –
Susceptibility to:e
Vancomycin (5 mg) R R D R R R
Kanamycin (1 mg) R R R D S S
Colistin (10 mg) R R R D R S
Catalase production – – – – – –
Indole production + D D D – –
Nitrate reduction – – – – – –
Proteolytic activity + – D D D +
Carbohydrate fermentation + + – + – –
Major metabolic end product(s)f S A, S A, B A, S P, S A, B, IV, P, PA
Major cellular fatty acid C15:0 iso C15:0 anteiso C15:0 iso C15:0 anteiso C15:0 iso C15:0 anteiso
DNA G+C content (mol%) 55–58 40–48 40–55 39–60 60–61 44–48
Type species A. putredinis B. fragilis P. asaccharolytica P. melaninogenica R. microfusus T. forsythia
footnote a: Symbols: +, positive; –, negative; D, different reactions in different taxa (species).
footnote b: Unlike other Alistipes spp., Alistipes putredinis does not produce pigment, and is susceptible to bile, catalase positive, and asaccharolytic.
footnote c: Bacteroides sensu stricto.
footnote d: Unlike other Porphyromonas spp., Porphyromonas catoniae does not produce pigment, and is moderately saccharolytic.
footnote e: Special potency antimicrobial identification disks. Symbols: R, resistant; S, susceptible.
footnote f: Symbols: A, acetic acid; B, butyric acid; IV, isovaleric acid; P, propionic acid; PA, phenylacetic acid; S, succinic acid.
#####
TABLE 12. Characteristics differentiating species of the genus Alistipesa.
Characteristic Alistipes putredinis Alistipes finegoldii Alistipes onderdonkii Alistipes shahii
Cell morphology Straight or slightly curved rods, 0.3–0.5 × Straight rods, 0.2 × 0.8–2 mm, singly, Straight rods, 0.3–0.9 × 0.5–3 mm, Straight rods, 0.5–0.8 × 0.6–4 mm,
0.9–3 mm, singly or in pairs long filaments occur singly or in pairs singly or in pairs
Colony morphology Pinpoint to 0.5 mm, circular, slightly 0.3–1.0 mm, circular, entire, 0.5–0.8 mm, circular, entire, opaque 0.5–1 mm, circular, entire, opaque
irregular, low convex, translucent translucent or opaque
Hemolysis – b b b
Pigment production – + + +
Growth in 20% bile – + + +
Catalase production + – – –
Enzyme activities: b
a-Chymotrypsinase – + d d
a-Fucosidase – + – +
a-Glucosidase + + + +
b-Glucosidase – – – +
Glucose fermentation – + + +
Metabolic end products:
Major S S S S
Genus II. Alistipes
Minor (trace) amountsc a, iv, p a, p, (iv, l) a, p, (iv, l) a, iv
Major cellular fatty acid C15:0 iso C15:0 iso C15:0 iso C15:0 iso
DNA G+C content (mol%) 55 57 56 58
Type strain ATCC 29800 CCUG 46020 CCUG 48946 CCUG 48947
Isolation sit Human and animal feces, appendicitis Human feces, appendix tissue Human feces, appendix tissue, Human feces, appendix tissue,
and, related infections, intraabdominal abdominal abscess, urine intraabdominal fluid
and, perianal infections, sheep foot rot,
farm soil
footnote a: Symbols: +, >85% positive; d, different strains give different reactions (16–84% positive); -, 0–15% positive.
footnote b: Based on the reactions generated by the API ZYM test kit.
footnote c: Symbols: a, acetic acid; iv, isovaleric acid; l, lactic acid; p, propionic acid; S, major amount of succinic acid.
#####
TABLE 13. Some characteristics that differentiate the genera of the family Porpyromonadaceae a
Characteristic Porphyromonas Barnesiella Dysgonomonas Paludibacter Petrimonas Proteiniphilum Tannerella
Cell shape Short rods or Rods Coccobacilli Rods with Rods Rods Fusiform cells
coccobacilli to short rods ends usually
round to slightly
tapered
Growth in the − − + − nt − −
presence of bile
Can grow aerobically − − + − − − −
N-Acetylglucosamine − − − − − − +, except bite wound
required for isolates
growth
Saccharolytic −; Some species + + + + − +
are weakly
positive
Products of glucose Butyric and Acetic Propionic, Acetic and Acetic acid na Acetic, butyric,
fermentation: acetic acids; and lactic, and propionic acids; and H2 isovaleric, propionic,
propionic, succinic succinic acids succinic acid is a and phenylacetic acids;
isovaleric, acids minor product smaller amounts of
isobutyric, and isobutyric and succinic
phenylacetic acids may be produced
acids may also
be produced
Predominant MK-9, MK-10 MK-11, nt MK-8 MK-8 nt MK-10, MK-11
menaquinone MK-12
Isolated from: Oral infections Chicken Human Rice plant Oilfield UASB reactor Human subgingival,
and various cecum clinical residue (rice well head treating gingival, and
other clinical specimens and straw) collected brewery periodontal pockets, in
specimens of stools from irrigated wastewater dental root canals, and
human and rice-field soil around infected dental
animal origin implants
DNA G+C content 44–55 52 38 39 41 47–49 44–48
(mol%)
footnote a: Symbols: +, >85% positive; -, 0–15% positive; w, weak reaction; na, not available; nt, not tested.
#####
TABLE 14. Differentiation of the genus Porphyromonas from other anaerobic Gram-negative rods a
Characteristic Porphyromonas b Alistipes c Bacteroides d Prevotella Rikenella Tannerella
Susceptibility to:
Vancomycin (5 mg) S R R R R R
Kanamycin (1000 mg) R R R R S S
Colistin (10 mg) R R R D R S
Pigment + + - D - -
Growth in 20% bile - + + - + -
Proteolytic activity D + - D - +
Major metabolic end products from PYGf A, B, iV S A, S A, S P, S A, S, PA
Major long-chain fatty acids C15:0 iso C15:0 iso C15:0 anteiso C15:0 anteiso C15:0 iso C15:0 anteiso
DNA G+C (mol%) 40–55 55–58 40–48 39–60 60–61 44–48
footnote a: +, 90% or more of the strains are positive; -, 10% or more of the strains are negative; D, different reaction in different species.
footnote b: Porphyromonas catoniae does not produce pigment, is vancomycin-resistant, and fermentative.
footnote c: Alistipes putredinis does not produce pigment, is susceptible to bile, and nonfermentative.
footnote d: Bacteroides sensu stricto.
footnote e: Special potency antimicrobial identification disks; R, resistant; S, susceptible; D, differs among species.
footnote f: A, acetic acid; B, butyric acid; iV, isovaleric acid; P, propionic acid; PA, phenylacetic acid; S, succinic acid.
#####
TABLE 15. Differentiation of the species of the genus Porphyromonas a
P. asaccharolytica P. cangingivalis P. canoris P. cansulci P. catoniae P. circumdentaria P. crevioricanis P. endodontalis P. gingivalis P. gingivicanis P. gulae P. levii P. macacaee P. somerae P. uenonis
Characteristic
Pigment
+ + + + - + + + + + + + + + +
production
Fluorescence + - + + - + + + - + - d - d +
Hemagglutinin
- - - - na - + - + - + - - na na
activity
Indole + + + + - + + + + + + - + - +
Catalase - + + + - + - - - + + - + - -
Lipase - - - - - - - - - - - - +− - -
Preformed enzyme activ-
ity: b
a-Fucosidase + - - - + - - - - - - - - - -
a-Galactosidase - - - - d - - - - - - - + - -
b-Galactosidase - - + - + - - - -f - + + -f + -
N-Acetyl-b-
- - + - + - - - + - + + + + d
glucosaminidase
Chymotrypsin - + + - d + - - - - na + + + -
Trypsin - - - - d - - - + - + - + - -
Fermentation of: c
Glucose - - - - + - - - - - - w w w -
Lactose - - - - + - - - - - - w w w -
Maltose - - - - + - - - - - - w - w -
Glucose-6-
phosphate and
6-phosphoglucon- - + + - + - - - - - na d d na na
ate dehydroge-
nases present
Major long-chain C15:0 C15:0 C15:0 C15:0 C15:0 C15:0 C15:0 C15:0 C15:0 C15:0 na C15:0 C15:0 C15:0 C15:0
fatty acids iso iso iso iso iso, iso iso iso iso iso iso, iso iso, C15:0 iso
C15:0 C15:0 anteiso
anteiso anteiso
Metabolic end A, P, A, p, A, P, A, P, a, P.iv, A, P, A, p, A, P, A, P, A, p, A, P, A, P, A, P, A, P, A, P,
products ib, B, ib, B, ib, b, ib, B, l, S ib, b, ib, B, ib, B, ib, B, ib, B, ib, B, ib, B, ib, B, ib, B, ib, B,
from PYGd IV, s IV IV, s IV, S, IV, s, IV, s, IV, s IV, s, IV, s IV, s, IV, s IV, s, IV, s IV, s
pa pa pa pa pa pa
footnote a: +, 90% or more of the strains are positive; –, 10% or more of the strains are negative; d, 11–89% of the strains are positive; w, weak positive reaction; na, data not avail- able.
footnote b: Reaction by API ZYM System or Rosco Diagnostic tablets. Reactivity in these systems is not always identical (see footnote f).
footnote c: Fermentation of most other carbohydrates have been reported negative.
footnote d: Upper-case letters indicate major metabolic products from peptone-yeast-glucose (PYG), lower-case letters indicate minor products, and parentheses indicate a vari- able reaction for the following acids: A, acetic; P, propionic; IB, isobutyric; B, butyric; IV, isovaleric; V, valeric; L, lactic; S, succinic; PA, phenylacetic.
footnote e: Porphyromonas salivosa is a later heterotypic synonym. The cat biovar (Porphyromonas salivosa) is lipase-positive, does not ferment sorbitol, and may fluoresce under UV light.
footnote f: Negative by the API ZYM System; positive with the Rosco o-nitrophenyl-b-d-galactopyranoside test.
#####
TABLE 16. Some characteristics differentiating the genus Barnesiella from other related generaa,b
Barnsiella Dysgonmonas Paludibacter Parabacteroides Porphyomonas Proteiniphilum Tannerella
Characteristic
Growth in presence of 20% - + - + - - -
bile
Saccharolytic + + + + - - -
Major end products of Acetic, succinic Propionic, Acetic, propi- Acetic, succinic na na na
glucose fermentation acids lactic, succinic onic acids acids
acids
Major menaquinones MK-10, MK-11 nr MK-8 MK-9, MK-10 MK-9, MK-10 nr MK-10, MK-11
Brown to black colonies - - - - + - -
on blood agar
DNA G+C content (mol%) 52 38–39 39 43–46 40–55 47 44–48
footnote a: Symbols: +, >85% positive; -, 0–15% positive; na, not applicable; nr, not reported.
footnote b: Data taken from Chen and Dong (2005); Hofstad et al. (2000); Lawson et al. (2002a); Sakamoto and Benno (2006); Sakamoto et al. (2002); Ueki et al. (2006); Sakamoto et al. (2007b).
#####
TABLE 17. Salient characteristics of the species of the genus Dysgon-
D. gadei D. capnocytophagoides D. mossii
Characteristic
Colony Gray–white Gray–white Gray–white
pigmentation
Aromatic odor Slight Slight Slight
Cells Coccobacilli Coccobacilli Coccobacilli
and short rods and short rods
Growth on blood agar:
CO2 required + + +
at 25°C + + +
at 35–37°C + + +
at 42–43°C - nd -
Microaerophilic + + nd
Anaerobic + + +
Growth on MacConkey - - -
agar
Catalase + - -
Indole + d +
Acetoin - - -
Esculin hydrolysis + d +
Gelatin hydrolysis - - -
H2S production - - nd
Nitrate reduction - - -
Oxidase - - -
Resistant to ox bile + + +
Starch hydrolysis nd nd +
Urea hydrolysis - - -
footnote a: Symbols: +, >85% positive; d, different strains give different reactions (16–84% positive); -, 0–15% positive; nd, not determined.
#####
TABLE 18. Fermentation profiles of species of the genus Dysgonomonas aomonas a
D. gadei D. capnocytophagoides D. mossii
Acid produced from
Adonitol, dulcitol - - nd
l-Arabinose, lactose, d-mannose, + + +
sucrose, d-xylose
d-Arabitol, l-arabitol nd - nd
Cellobiose, fructose, salicin + nd +
Erythritol, glycogen - nd nd
Inositol, d-mannitol - - w
Maltose nd + +
Melibiose, melezitose + + nd
Raffinose + + d
l-Rhamnose + nd w
d-Ribose w nd nd
d-Sorbitol - - nd
Starch + nd nd
Trehalose + - +
footnote a: Symbols: +, >85% positive; -, 0–15% positive; w, weak reaction; nd, not determined.
#####
TABLE 19. Enzymic profiles of species of the genus Dysgonomonas a,b
Enzyme D. gadei D. capnocytophagoides D. mossii
a-Arabinosidase + + d
Acid phosphatase, phosphoamidase + + nd
a-Fucosidase + - +
a-Galactosidase, a-glucosidase, alanine, arylamidase, alkaline phosphatase, b-glucosidase, + + +
leucyl glycine arylamidase
a-Mannosidase w - w
Arginine arylamidase, arginine, dihydrolase, glutamic acid, decarboxylase, glycine - - -
arylamidase, histidine arylamidase, leucine arylamidase, proline arylamidase, phenylalanine
arylamidase, pyroglutamic acid arylamidase, serine arylamidase, tyrosine arylamidase
b-Galactosidase w + +
b-Galactosidase 6-phosphate - + w
b-Glucuronidase +a - -
Chymotrypsin + - nd
Cystine arylamidase, lipase C-14, valine arylamidase - - nd
Esterase C-4 - d nd
Ester lipase C-8 w - nd
Glutamyl glutamic acid arylamidase + + -
Lysine decarboxylase, ornithine decarboxylase nd - nd
N-Acetyl-b-glucosaminidase + - +
Trypsin + - nd
Urease - nd nd
footnote a: Symbols: +, >85% positive; d, different strains give different reactions (16–84% positive); -, 0–15% positive; nd, not determined.
footnote b: Positive with API ID32A and rapid ID32E, negative with API ZYM.
#####
TABLE 20. Differential characteristics of the genus Tannerella and some related taxaa
Characteristic Tannerella Parabacteroides Bacteroides Dysgonomonas Paludibacter Porphyromonas Prevotella Proteiniphilum
Growth in bile - + + + - - - -
Aerobic growth - - - + - - - -
NAM required +b - - - - - - -
a-Fucosidase + - D D nt -c D nt
produced
Catalase produced D D D D - D D -
Indole produced D - D D - D D -
Esculin hydrolyzed + + D D + - D +
Pigment produced - - - - - +d D -
Metabolism NF F F F F NFe MF NF
Major end products A, B, IV, P, PA A, S A, S P, L, S A, P A, B, IV, P, A, S A, P
PA, S
Presence of:
G6PDH + + + nt nt D - nt
6PGDH + + + nt nt D - nt
Proteolytic activity + - - D nt D D +
Major cellular fatty C15:0 anteiso C15:0 anteiso C15:0 anteiso C14:0 iso, C15:0 C15:0 anteiso, C15:0 isof C15:0 C15:0 anteiso
acids anteiso and C16:0 C15:0 and C17:0 anteiso
iso 3-OH anteiso-3-OH
Ratio of C15:0 anteiso 22.8–95.2 3.1–10.3 1.9–8.2 6.0–8.8 28 <1 1.2–11.3 12.3
to C15:0 iso
Predominant MK-10, MK-11 MK-9, MK-10 MK-10, MK-11 nt MK-8 MK-9, MK-10 MK-10, nt
menaquinones MK-11,
MK-12,
MK-13g
Growth at 37°C + + + + - + + +
DNA G+C content 44–48 43–46 40–49 38–38.5 39.3 40–55 40–60 46.6
(mol%)
Principal habitat Periodontal Feces Feces Human clinical Irrigated rice Oral cavities Oral UASB sludge
pockets specimen field soil cavities
footnote a: Data from Chen and Dong (2005), Hofstad et al. (2000), Lawson et al. (2002a), Sakamoto et al. (2002, 2006), Song et al. (2005), and Ueki et al. (2006). Symbols and abbreviations: +, positive; -, negative; D, different reactions in different species; nt, not tested; NF, nonfermentative; F, fermentative; MF, moderately fermentative; A, acetic acid; B, butyric acid; IV, isovaleric acid; L, lactic acid; P, propionic acid; PA, phenylacetic acid; S, succinic acid; G6PDH, glucose-6-phosphate dehydrogenase; 6PDGH, 6-phosphogluconate dehydrogenase; UASB, upflow anaerobic sludge blanket.
footnote b: The bite wound isolates do not require N-acetylmuramic acid (NAM) for growth.
footnote c: Porphyromonas asaccharolytica produces a-fucosidase.
footnote e: Some species are weakly saccharolytic.
footnote f: Porphyromonas catoniae contains approximately equal amounts of C15:0 anteiso and C15:0 iso as the predominant fatty acids.
footnote g: Prevotella dentalis lacks menaquinones.
#####
TABLE 21. Some characteristics that differentiate the genera of the family Prevotellaceae
Characteristic Prevotella Xylanibacter
Cell shape Short rods Short to filamentous rods
Major products of glucose fermentation Succinate and acetate Acetate, propionate, and succinate
Isolated from Primarily isolated from oral cavity, but also urogenital Anoxic rice-plant residue
and intestinal tracts of animals
DNA G+C content (mol%) 40–52 44
#####
TABLE 22. Distinguishing physiological characteristics of species of the genus Prevotella a,b
P. albensis P. baroniae P. bergensis P. bivia P. brevis P. bryantii P. buccae P. buccalis P. corpri P. corporis P. dentalis P. denticola P. disiens P. enoeca P. heparinolytica P. intermedia P. loescheii P. marshii P. massiliensis P. melaninogenica P. multiformis P. multisaccharivorax P. nigrescens P. oralis P. oris P. oulora P. pallens P. ruminicola P. salivae P. shahii P. stercorea P. tannerae P. timonensis P. veroralis P. zoogleoformans
Characteristic
Pigment production – – – – – – – – – + – ± – – – + + – – + – – + – – – + – – + – + – – –
on blood agar
Arabinose nd – + – nd nd + – nd – + – – – + – – – – – – + – – + – – +/w + – nd – – – v
Cellobiose nd + + – nd nd + + nd – + – – – + – + – – – + + – + + – – +/w + – nd – – + +
Indole nd – – – nd nd – – nd – – – – – + + +(–)– – + – – – + – – – + – – – – – – – –(+)
Lactose nd + nd + nd nd + + + – + + – + + – + – – + + + – + + + – +/w + + – v + + +
Mannose – + + nd nd nd + + nd + + + – + + v + v – + + + + + + + – nd + + – v – + nd
Raffinose – + – nd nd nd + + + – + + – – – v + – – + + + + + + + + nd + + – v – + nd
Rhamnose nd – + – – + + (–) – nd – nd – – nd nd – – – – – – + nd + – (+) – nd + – – nd nd – – –
Salicin nd + + – – + + – + – – – – – + – – – – – – + – + + – – +/w + – nd – – – v
Sucrose – + – – nd nd + + + – w + – – + + + – nd + + + + + + – + + + + – v – + +
Xylose + – + – – + + – nd – – – – – + – – – – – – + – – + – – ± + – nd – – – v
Esculin hydrolysis nd + + – nd nd + + nd – + + – v + – +(–)+ – – –v – + – + + – – + + – – – – + +
Gelatin nd w – nd nd nd + – – + – + + + – + + + – + + + + v v – + nd – + – + + v nd
liquefacation
b-N-Acetyl- nd nd nd + nd nd – + nd + nd + – nd nd – + nd nd + nd nd nd + + + nd + nd nd nd nd + + +
glucosaminidase
a-Fucosidase nd nd nd + nd nd – + – – nd + – nd + +(–) + nd nd +(–) v nd nd + + + nd + nd nd + nd + + nd
b-Xylosidase nd nd nd – nd nd + – nd nd nd nd nd nd + – nd nd nd – nd nd nd – + – nd nd nd nd nd nd nd nd nd
b-Glucosidase nd nd nd – nd nd + + + – nd – – nd + – +(–) nd nd – – nd nd + + + nd nd nd nd – nd – v nd
Glycine nd nd nd + nd nd – – nd – nd – + nd + nd – nd nd nd – nd nd + – – nd – nd nd nd nd nd – –
aminopeptidase
a
Symbols: +, Acid produced from sugar or enzyme activity; -, negative; v, variable; w, weak; (-), some strains are negative; nd, no data available.
#####
TABLE 23. Differential characteristics of genera in the family Flavobacteriaceae a,b
Flavobacterium (35) Aequorivita (4) Algibacter (1) Aquimarina (1) Arenibacter (4) Bergeyella (1) Bizionia (5) Capnocytophaga (7) Cellulophaga (5) Chryseobacterium (19) Coenonia (1) Croceibacter (1) Dokdonia (1) Donghaeana (1) Elizabethkingia (2) Empedobacter (1) Epilithonimonas (1) Formosa (2)
Characteristic
Habitat FL (fe, me, FL (te, S (me) FL (me) FL P or S FL (me) P or S FL FL (fe, P FL (me) FL (me) FL (me) FL (fe, P or S FL FL (me)
te), S or P me) or S (me) or S (me) me, te), S or S te), S (fe) or S
or S or S or P or P or S
Cold or polar d + – – – – d – d – – – – – – – – –
environment
Cell morphology Rods or Rods Rods Rods Rods Rods Rods Rods Rods Rods Rods Rods Rods and Rods and Rods Rods Rods Rods; buds
filaments elongated elongated may be
rods rods produced
Spherical cells in d – – – – – – – – – – – – – – – – –
stationary
phase
Production of + (F and/ + (C) + (F–) + (F) + (C) – + (C) + (F/ + (C) + F – + C + (F–) + (F–) –/(+) (F) (+) (F) + (F) + (C)
yellow pigment or C) nd)
Gliding motility d – + + d – – + + – – – – – – – – +
Na+ or seawater – d + + d – + – + – – + + + – – – d
requirement
Optimal growth A/FA (31/4) A FA A A A A A/ A A ME/ A A A A A A FA
conditions ME/ AN
AN
Growth at (°C):
25 d + + + + + +/(+) nd + + (+) + + + + + + +
37 – – – – + + – + d d + – – – + d – –
42 – – – – d – – nd – – – – – – – – – –
Acid production from:
Glucose d – + – d – – + d d + nd – – + d – +
Sucrose d – + – + – – d d – – nd – – – – nd –
Production of:
DNase d d – + – – d nd d d nd + nd nd + + – –/nd
Urease d d nd – d + d d d d* – + – – d V* – –/V
Oxidase d – + + + + + – + + + – + + + + + +/V
Catalase +/(+) + + + + + + d + +/nd + + + + + + + +
H2S d – – – d – + – – – nd nd – – d – nd –
Indole – nd – – – + – – – d – – – – d + – –
b-Galactosidase d – + nd + – – d nd d + – – – + – – d
Nitrate reduction d – – – d – – d d d – – – – – – + –/V
Carbohydrate d d + – + – – d nd + + + – – nd d + +
utilization
Degradation of:
Agar d – + – – – – – + – – – – – – – – d
Starch d d + + – – – d + d nd + – + – V (+) d
Esculin d d nd nd + – d d nd + + – + + + – + +
Gelatin d + + + d + + d + + – + – – + + – +
Resistance to d/nd nd + + + – nd – + +/nd nd nd – – +/nd + – +
penicillin G
DNA G+C content 30–41c 33–39 31–33 32–33 37–40 35–37 38–45 36–44 32–36 29–39 35–36 35 38 37 35–38 31–33 38 34–36
(mol%)
footnote a: Symbols: +, 90% or more of the strains or species are positive; −, 10% or less of the strains or species are positive; (+), 90% or more of the strains or species give a weak or delayed positive response; d, 11–89% of the strains or species are positive; V, varies between references; and *, data in these two boxes were erroneously inverted in Bernardet et al. (2002). Where optimal growth conditions vary between members of the genus, the different conditions are listed, separated by slashes (the number of species that can grow under the corresponding conditions is shown in parentheses for the type genus). Abbreviations: FL, free-living; P, parasitic; S, saprophytic; fe, freshwater environment; me, marine environment; te, terrestrial environment; nd, not determined; F, flexirubin-type pigments; F−, pigments that do not belong to the flexirubin-type but that have not been further characterized; C, carotenoid-type pigments; A, aerobic growth; ME, microaerobic growth or growth in a CO2-enriched atmosphere; FA, facultatively anaerobic growth; and AN, anaerobic growth.
footnote b: The number of species is specified in parentheses after the name of the genus.
footnote c: A DNA G+C content of 41 mol% has been reported for Flavobacterium saliperosum (Wang et al., 2006).
footnote d: The transfer of Stanierella latercula to the genus Aquimarina has been proposed recently (O. Nedashkovskaya, personal communication).
#####
TABLE 23. (Continued)
"Fucobacter" (1) Gaetbulibacter (1) Gaetbulimicrobium (1) Gelidibacter (4) Gillisia (5) Gramella (2) Kaistella (1) Kordia (1) Krokinobacter (3) Lacinutrix (1) Leeuwenhoekiella (2) Maribacter (5) Mesonia (1) Muricauda (3) Myroides (2) Nonlabens (1) Olleya (1) Ornithobacterium (1)
Characteristic
Habitat FL (me) FL FL FL FL FL FL FL FL (me) S (me) FL FL FL FL (me) P or S S (me) S (me) P
or S (me) (me) (me) (me) (me) (fe) (me) or S (me) (me) (me)
or S or S or S S, or P or S or S or S
Cold or polar – – – d d – – – – + d – – – – – + –
environment
Cell morphology Rods Rods Rods Rods or Rods Rods Rods Rods Rods Straight Rods Rods Rods Rods Rods Rods Rods with Plump
filaments or slightly with tapered rods
curved append- ends
rods ages
Spherical cells in – – – + – – – – – – – – – – – – – –
stationary
phase
Production of + + (F–) + (C) + (C) + (F–) + (C) + (nd) + (C) + (C) + (F–) + (F–) + (F–) d (F–) + (F–) + (F) + (F–) + (F–) –
yellow pigment
Gliding motility – + + + – + – – nd – + + – – – – + –
Na+ or seawater + + + d d + – + + + – + + + – + + –
requirement
Optimal growth A FA A A A A A A A A A A A A/FA A A A A/ME/
conditions AN
Growth at (°C):
25 + + + + d + + + + + + + + + + + + –
37 nd + + d – d + + – – +/d – – + + + – +
42 nd – – – – – d – – – – – – – – + – +
Acid production from:
Glucose + d nd + d d – – – – – d – + – – + d
Sucrose – d – +/nd +/nd d nd nd nd – d d – + – + nd –
Production of:
DNase nd nd nd d d d nd nd + – – d – nd + + – –
Urease + – – d d – d – – – – – – – + – – +
Oxidase + + + – + + + + + – + + + + + + + +
Catalase + + + + + + + – + + + + + + + + + –
H2S nd – – – – – – – nd – – – + – nd – – –
Indole – nd – – – – + – – – – – – – – – – –
b-Galactosidase – – – d – d – – + – + d – nd – – – +
Nitrate reduction – + – – d – d + – – –/V d – – – – – –
Carbohydrate nd + + + d + + + + + + + – + – + + +
utilization
Degradation of:
Agar nd – – – – – – – – – –/V d – – – – – –
Starch – + + d d + – + – – + d – – – + – nd
Esculin + + + + d +/nd + – + – + +/nd nd + – – – –
Gelatin + – nd d d + + + + + + d + – + + + –
Resistance to nd – – nd +/nd –/nd nd nd nd nd d/nd + + nd nd – nd d
penicillin G
DNA G+C content 32 35 36 37–42 32–39 40 41–42 34 33–39 37 35–38 35–39 32–34 41–45 30–38 34 49 37–39
(mol%)
#####
TABLE 23. (Continued)
Persicivirga (1) Polaribacter (4) Psychroflexus (3) Psychroserpens (1) Riemerella (2) Robiginitalea (1) Salegentibacter (3) Sejongia (2) Stanierella (1)d Stenothermobacter (1) Subsaxibacter (1) Subsaximicrobium (2) Tenacibaculum (6) Ulvibacter (1) Vitellibacter (1) Weeksella (1) Winogradskyella (4) Zobellia (5)
Characteristic
Habitat FL FL FL FL (me) P FL (me) FL (me) FL (te) FL S (me) FL (te) FL (te) FL FL FL P or S S FL
(me) (me) (me) or S or S (me) or S or S (me), (me) (me) (me) (me)
or S or S or S S or P or S or S or S
Cold or polar – + d + – – d + – – + + – – – – – –
environment
Cell morphology Rods Rods, Rods, Ring Rods Rods Rods Rods Rods Rods in Cocco- Rods Rods or Rods Rods Rods Rods Rods
filaments, filaments, shaped, chains bacilli filaments
or coils; or coils helical
gas or coiled
vesicles cells
Spherical cells in – + d + – + – – – – – + +/(+) – – – – –
stationary
phase
Production of + (F) + (C/nd) + (C) + (C) – + (C) + (F–) + (F–) + (C) + (F–) + (F–) + (F–) +/(+) + (F) + (F) – + (F–) + (F)
yellow pigment (C/F–)
Gliding motility – – d – – – – – – + + + + – – – + +
Na+ or seawater + + + + – + d – + + + + d – – – + +
requirement
Optimal growth A A A A A/ME/ A A A A A A A A A A A A A
conditions AN
Growth at (°C):
25 nd – d – d + + + + + – (+)/– + + + + + +
37 – – d – + + d – – – – – d – + + d d
42 – – d – + + – – – – – – – – + + d d
Acid production from:
Glucose – + d – + – d + – – – – –/nd nd – – d d
Sucrose nd d d – – nd d – – – nd nd –/nd nd – – d d
Production of:
DNase nd nd d – nd – d + + – – d + – + – d d
Urease – – d – d – – – – – – – –/nd – – – – –
Oxidase – d d – + + + + + + nd nd + + + + + +
Catalase – +/(+) + + + + + + – (+) + + + + + + + +
H2S nd – –/nd – –/nd nd + – + – – – –/nd – – – d –
Indole – – –/nd – d – – + nd – – – nd – – + – –
b-Galactosidase nd d – d – + + – V + – – nd – – – – +
Nitrate reduction – – d – – – d – V – – – d + – – – +
Carbohydrate – + + – + + + – + + – + d – + – d +
utilization
Degradation of:
Agar – – – – – – – – + – – – – – – – d +
Starch – +/(+) + – nd + + + + + – d d – – – d d
Esculin – d d – d + + + nd nd d + – nd nd – nd +
Gelatin + d d d + – + + + + + + + + + + + +
Resistance to + nd nd nd – – – nd + – nd nd –/nd + + – d d
penicillin G
DNA G+C content 35 31–34 32–39 27–29 29–37 55–56 37–38 34–36 34 41 35 39–40 30–35 36–38 41 37–38 33–36 36–43
(mol%)
#####
TABLE 24. Characteristics that differentiate species in the genus Flavobacterium with validly published namesa,b
F. aquatile F. aquidurense F. antarcticum F. branchiophilum F. columnare F. croceum F. daejeonense
Source Temperate freshwater Temperate freshwater Polar soil Temperate freshwater Temperate freshwater Activated sludge Temperate soil
and tissues of freshwater and tissues of freshwater
fish fish
Colony morphology on Low convex, circular, Flat, spreading, with Convex, circular, with Low convex, circular, Flat, adherent to the nd nd
Anacker and Ordal’s agar with entire margins undulated margins entire margins with entire margins agar, with rhizoid
margins
Adsorption of Congo red − nd − − + − −
Gliding motility V − (+)c, −d − + − −
Presence of spheroplasts − + − + + nd nd
Flexirubin type pigments − + − − + − −
Growth on:
Marine agar 2216 − nd + − − nd nd
Nutrient agar + + + − V − +
Tryptic soy agar (+) + + − − (+) +
Temperature range (°C)e <15 to >30 13–30 5–24 5–30 15–37 10–45 5–35
Optimum temperature (°C) nd 19–28 21 18–25 25–30 25–35 nd
Tolerance to NaCl (%, w/v)e 0 0–1 0–4 0–0.2 0–0.5 0–1 0–3
Optimum NaCl 0 nd 0 0 0 0 nd
concentration (%, w/v)
Facultative anaerobe − − − − − (+) −
Glucose utilization nd + − nd − nd +
Acid produced from + nd + + − + +
carbohydrates
Degradation of:
Gelatin + − + + + + −
Casein + + + + + + −
Starch + + − + +f − +
Carboxymethylcellulose − nd − − − − −
Agar − − − − − − −
Alginate nd nd − nd nd nd −
Pectin nd nd − nd nd nd −
Chitin − nd − − − nd −
Esculin + + − − − − +
DNA − − + − + nd −
Urea − − − − − − −
Tween compounds + nd + + + − nd
Tyrosine + + − + − − −
Brown diffusible pigment on − + (+) − d − nd
tyrosine agar
Precipitate on egg yolk agar + nd − + + nd −
Production of:
Cytochrome oxidase + + + + + + +
b-Galactosidase + + − + − − +
H2S − nd − − + − nd
Nitrate reduction + D − − d − +
DNA G+C content (mol%)g 32 (33) 34 38 29–31 (33–34) 30 (32–33) 41 35
#####
TABLE 24. (cont.)
F. defluvii F. degerlachei F. denitrificans F. flevense F. frigidarium F. frigidimaris F. frigoris
Source Activated sludge Polar saline lakes Temperate soil Temperate freshwater Polar marine sediment Polar seawater Polar freshwater
and saline lakes
Colony morphology on nd Flat, circular, with entire Flat, spreading, with Low convex, circular, Flat, circular, with entire Flat, spreading, Flat, circular,
Anacker and Ordal’s agar margins lobate to rhizoid sunk into the agar margins with filamentous with entire
marginsc marginsc or spreading
marginsc
Adsorption of Congo red − − −c − −c, +d − −
Gliding motility + +c, −d +c + − + +c, −d
Presence of spheroplasts nd − (+)c − − − −
Flexirubin type pigments + − + − − + −
Growth on:
Marine agar 2216 nd + −c + + + +
Nutrient agar + + +c + + + −
Tryptic soy agar + + +c + + + +
Temperature range (°C)e 10–40 5–30 10–30 0–30 0–24 2–26 5–25
Optimum temperature (°C) 25–30 20 25 20–25 15 18 nd
Tolerance to NaCl (%, w/v)e 0–2 0–5 ?–2 0–1 0–9 ?–3 0–5
Optimum NaCl 0–1 nd nd nd nd nd nd
concentration (%, w/v)
Facultative anaerobe (+) − + − − − −
Glucose utilization nd + + + + + +
Acid produced from + − nd + − + −
carbohydrates
Degradation of:
Gelatin + − + − + + −
Casein + − nd − + + +
Starch − + + V − + +
Carboxymethylcellulose + − nd − − − −
Agar − − − + − − −
Alginate nd − nd − nd nd −
Pectin nd − + + − + −
Chitin nd − − − − + −
Esculin + + nd + + + +
DNA nd − nd − − nd −
Urea + − − − − − −
Tween compounds + nd nd + nd nd nd
Tyrosine − − nd − − nd +
Brown diffusible pigment on − − nd − − nd −
tyrosine agar
Precipitate on egg yolk agar nd − nd − − nd −
Production of:
Cytochrome oxidase − + − + + − +
b-Galactosidase (+) − +c + − + −
H2S − − nd − − − −
Nitrate reduction − − + V − − d
DNA G+C content (mol%)g 34 34 35 33–35 35 35 34–35
#####