changeset 0:ab933d3c6057 draft

planemo upload for repository https://github.com/nick-youngblut/gtdb_to_taxdump commit 5b1dd7712b2ba62d2310b175dca45d39e8a804dc
author iuc
date Sun, 25 Aug 2024 14:55:35 +0000
parents
children 102852801457
files macros.xml ncbi-gtdb_map.xml test-data/gtdb_test.tsv test-data/gtdbtk_database_metadata_versioned.loc.test test-data/ncbi_test.tsv test-data/ncbi_test_prefix.tsv test-data/test-db/ar53_metadata_r214.tsv test-data/test-db/bac120_metadata_r214.tsv tool-data/gtdbtk_database_metadata_versioned.loc.sample tool_data_table_conf.xml.sample tool_data_table_conf.xml.test
diffstat 10 files changed, 955 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,22 @@
+<macros>
+    <xml name="requirements">
+        <requirements>
+            <requirement type="package" version="@TOOL_VERSION@">gtdb_to_taxdump</requirement>
+        </requirements>
+    </xml>
+    <token name="@TOOL_VERSION@">0.1.9</token>
+    <token name="@VERSION_SUFFIX@">0</token>
+    <token name="@PROFILE@">21.05</token>
+    <xml name="biotools">
+        <xrefs>
+            <xref type="bio.tools">
+                gtdb_to_taxdump
+            </xref>
+        </xrefs>
+    </xml>
+    <xml name="citations">
+        <citations>
+            <citation type="doi">10.5281/zenodo.3696964</citation>
+        </citations>
+    </xml>
+</macros>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ncbi-gtdb_map.xml	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,180 @@
+<tool id="ncbi_gtdb_map" name="NCBI-GTDB map" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
+    <description>Map taxonomic classifications between the NCBI and GTDB taxonomies</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="biotools"/>
+    <expand macro="requirements"/>
+    <command detect_errors="exit_code">
+        <![CDATA[
+
+        mkdir output &&
+
+        #if $data.is_select == 'history':
+            #for $f in $files:
+                ln -s '$f' '$f.element_identifier' &&
+            #end for
+        #else:
+            ln -s '$metadata.fields.path/bac'* 'bac_meta.tsv' &&
+            ln -s '$metadata.fields.path/ar'* 'ar_meta.tsv' &&
+        #end if 
+
+        ncbi-gtdb_map.py
+        #if $mode == 'gtdb':
+            -q gtdb_taxonomy
+        #end if
+        '${names}'
+        #if $data.is_select == 'history':
+            #for $f in $files:
+                '$f.element_identifier'
+            #end for
+        #else:  
+            'bac_meta.tsv'
+            'ar_meta.tsv'
+        #end if
+        --completeness ${completeness}
+        --contamination ${contamination}
+        --fraction ${fraction}
+        --max-tips ${max_tips}
+        --column ${column}
+        ${header}
+        #if $add_prefix.is_select == 'y':
+            -p '${prefix}'
+        #end if
+        ${no_prefix}
+        -o output
+        --procs \${GALAXY_SLOTS:-8}
+
+        ]]>
+    </command>
+    <inputs>
+        <param name="names" type="data" format="tabular" label="File with the names" help="You can either have a file the NCBI names or the GTDB names"/>
+        <conditional name="data">
+            <param name="is_select" type="select" label="Use either a cached ncbi database or upload from history">
+                <option value="cached">Cached database</option>
+                <option value="history">History</option>
+            </param>
+            <when value="cached">
+                <param name="metadata" type="select" label="Metadata version" help="Choose metadata version">
+                    <options from_data_table="gtdbtk_database_metadata_versioned">
+                        <validator message="No gtdb metadata is available" type="no_options"/>
+                    </options>
+                </param>
+            </when>
+            <when value="history">
+                <param name="files" format="tabular" type="data" multiple="true" label="Input bacteria and archaea meatdata files here" help="When using this please input the metadata files uncompressed!"/>
+            </when>
+        </conditional>
+        <param name="mode" type="select" label="Select the type of mapping" help="Choose if you want to map NCBI agaisnt GTDB or the other way around">
+            <option value="ncbi">NCBI to GTDB</option>
+            <option value="gtdb">GTDB to NCBI</option>
+        </param>
+        <param argument="--completeness" type="float" value="50.0" label="Completeness filter" help="Only include GTDB genomes who have bigger or equal CheckM completeness"/>
+        <param argument="--contamination" type="float" value="5.0" label="Contamination filter" help="Only include GTDB genomes who have a smaller CheckM contamination"/>
+        <param argument="--fraction" type="float" min="0.0" max="1.0" value="0.9" label="Homogeneity of LCA" help="Change the homogeneity of LCA in order to be used"/>
+        <param argument="--max-tips" type="integer" value="100" min="1" label="Max. number of tips" help="Select the number of tips used for LCA determination"/>
+        <param argument="--column" type="data_column" data_ref="names" label="Select the column with the names"/>
+        <param argument="--header" type="boolean" truevalue="--header" falsevalue="" checked="false" label="Header row in the input" help="Check if the input file has a header to so the program will skip it"/>
+        <conditional name="add_prefix">
+            <param name="is_select" type="select" label="Add prefix to the names?" help="Select yes if you want to add a prefix to the names">
+                <option value="y">Yes</option>
+                <option value="n" selected="true">No</option>
+            </param>
+            <when value="y">
+                <param argument="--prefix" type="select" label="Include a prefix" help="Add the selected prefix to all names. NOTE: This option should be used only if you have names without prefixes and then some names doesnt work with the selected prefix so it could be that you have to run the tool with multiple different prefixes! For more help look at the Help section!">
+                    <option value="d__">d__</option>
+                    <option value="p__">p__</option>
+                    <option value="c__">c__</option>
+                    <option value="o__">o__</option>
+                    <option value="f__">f__</option>
+                    <option value="g__">g__</option>
+                    <option value="s__">s__</option>
+                </param>
+            </when>
+            <when value="n"/>
+        </conditional>
+        <param argument="--no-prefix" type="boolean" truevalue="--no-prefix" falsevalue="" checked="false" label="No prefix" help="Check here if the names doesn't have a prefix like 's__xyz'. NOTE: Only names without prefix will be used then when a name still have it it will be mapped to unclassified!"/>
+    </inputs>
+    <outputs>
+        <data name="output_gtdb" format="tabular" label="${tool.name}: GTDB_to_NCBI" from_work_dir="output/taxonomy_map_summary.tsv">
+            <filter>mode and 'gtdb' in mode </filter>
+        </data>
+        <data name="output_ncbi" format="tabular" label="${tool.name}: NCBI_to_GTDB" from_work_dir="output/taxonomy_map_summary.tsv">
+            <filter>mode and 'ncbi' in mode </filter>
+        </data>
+    </outputs>
+    <tests>
+        <test expect_num_outputs="1">
+            <param name="mode" value="gtdb"/>
+            <param name="names" value="gtdb_test.tsv"/>
+            <conditional name="data">
+                <param name="is_select" value="history"/>
+                <param name="files" value="test-db/ar53_metadata_r214.tsv,test-db/bac120_metadata_r214.tsv"/>
+            </conditional>
+            <param name="completeness" value="1.0"/>
+            <param name="contamination" value="1.0"/>
+            <param name="fraction" value="0.2"/>
+            <param name="max_tips" value="10"/>
+            <param name="column" value="2"/>
+            <output name="output_gtdb">
+                <assert_contents>
+                    <has_n_lines n="6" delta="1"/>
+                    <has_text text="unclassified" n="3"/>
+                    <not_has_text text="test1"/>
+                </assert_contents>
+            </output>
+        </test>
+        <test expect_num_outputs="1">
+            <param name="mode" value="ncbi"/>
+            <param name="names" value="ncbi_test.tsv"/>
+            <conditional name="data">
+                <param name="is_select" value="history"/>
+                <param name="files" value="test-db/ar53_metadata_r214.tsv,test-db/bac120_metadata_r214.tsv"/>
+            </conditional>
+            <param name="no_prefix" value="true"/>
+            <param name="column" value="1"/>
+            <output name="output_ncbi">
+                <assert_contents>
+                    <has_n_lines n="4" delta="1"/>
+                    <has_text text="Bacteroides thetaiotaomicron" n="2"/>
+                </assert_contents>
+            </output>
+        </test>
+        <test expect_num_outputs="1">
+            <param name="mode" value="ncbi"/>
+            <param name="names" value="ncbi_test_prefix.tsv"/>
+            <conditional name="data">
+                <param name="is_select" value="cached"/>
+                <param name="metadata" value="test-gtdb"/>
+            </conditional>
+            <param name="header" value="true"/>
+            <param name="column" value="1"/>
+            <output name="output_ncbi">
+                <assert_contents>
+                    <has_n_lines n="4" delta="1"/>
+                    <has_text text="s__Bacteroides thetaiotaomicron"/>
+                </assert_contents>
+            </output>
+        </test>
+    </tests>
+    <help>
+        <![CDATA[
+        .. class:: infomark
+
+            **Where to download the metadata**
+
+            The metadata can be download from `GTDB <https://data.gtdb.ecogenomic.org/releases/>`_. If you want to use this tool to convert gtdb naming from a GTDB tool such as `gtdbtk classify_wf` use the corresponding GTDB release of the metadata. After download it dont forget to uncompressed it!
+
+            **What does this tool**
+
+            This tool was desinged to map the GTDB taxonomy to the NCBI taxonomy since both are using different ID systems.
+            This means this tool map either GTDB names to the NCBI names or the other way around. If the names contain prefixes like *s__* the mapped name also will contain there corresponded prefix. If you use the names without prefix then the mapped names also don't contain the prefixes.
+
+            **Prefixes**
+
+            The prefixes stand for the taxonomic rank for example s__Bacteroides thetaiotaomicron. If you use them directly with in the file where you list the names which should be queried then you dont need the prefix option but if you use names without them you can either manully include them with the prefix option (read the help section there too) or you can use the tool without them but then you have to check the no-prefix option! This means when you use the no-prefix option s__Bacteroides thetaiotaomicron will not be used in this tool but Bacteroides thetaiotaomicron will work fine!
+            
+        ]]>
+    </help>
+    <expand macro="citations"/>
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/gtdb_test.tsv	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,4 @@
+test1	c__Bacteroidia
+test1	s__Homo sapiens
+	Blank
+	Burkholderiales
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/gtdbtk_database_metadata_versioned.loc.test	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,2 @@
+#value	name	version	path
+test-gtdb	Test bac	214	${__HERE__}/test-db
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/ncbi_test.tsv	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,3 @@
+Methanobrevibacter smithii	test
+methanosarcina Barkeri	test
+Bacteroides thetaiotaomicron	test
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/ncbi_test_prefix.tsv	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,4 @@
+TEST HEADER!!!!
+s__Methanobrevibacter smithii	test
+s__methanosarcina Barkeri	test
+s__Bacteroides thetaiotaomicron	test
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/test-db/bac120_metadata_r214.tsv	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,722 @@
+accession	ambiguous_bases	checkm_completeness	checkm_contamination	checkm_marker_count	checkm_marker_lineage	checkm_marker_set_count	checkm_strain_heterogeneity	coding_bases	coding_density	contig_count	gc_count	gc_percentage	genome_size	gtdb_genome_representative	gtdb_representative	gtdb_taxonomy	gtdb_type_designation_ncbi_taxa	gtdb_type_designation_ncbi_taxa_sources	gtdb_type_species_of_genus	l50_contigs	l50_scaffolds	longest_contig	longest_scaffold	lsu_23s_contig_len	lsu_23s_count	lsu_23s_length	lsu_23s_query_id	lsu_5s_contig_len	lsu_5s_count	lsu_5s_length	lsu_5s_query_id	lsu_silva_23s_blast_align_len	lsu_silva_23s_blast_bitscore	lsu_silva_23s_blast_evalue	lsu_silva_23s_blast_perc_identity	lsu_silva_23s_blast_subject_id	lsu_silva_23s_taxonomy	mean_contig_length	mean_scaffold_length	mimag_high_quality	mimag_low_quality	mimag_medium_quality	n50_contigs	n50_scaffolds	ncbi_assembly_level	ncbi_assembly_name	ncbi_assembly_type	ncbi_bioproject	ncbi_biosample	ncbi_contig_count	ncbi_contig_n50	ncbi_country	ncbi_date	ncbi_genbank_assembly_accession	ncbi_genome_category	ncbi_genome_representation	ncbi_isolate	ncbi_isolation_source	ncbi_lat_lon	ncbi_molecule_count	ncbi_ncrna_count	ncbi_organism_name	ncbi_protein_count	ncbi_refseq_category	ncbi_rrna_count	ncbi_scaffold_count	ncbi_scaffold_l50	ncbi_scaffold_n50	ncbi_scaffold_n75	ncbi_scaffold_n90	ncbi_seq_rel_date	ncbi_spanned_gaps	ncbi_species_taxid	ncbi_ssu_count	ncbi_strain_identifiers	ncbi_submitter	ncbi_taxid	ncbi_taxonomy	ncbi_taxonomy_unfiltered	ncbi_total_gap_length	ncbi_total_length	ncbi_translation_table	ncbi_trna_count	ncbi_type_material_designation	ncbi_ungapped_length	ncbi_unspanned_gaps	ncbi_wgs_master	protein_count	scaffold_count	ssu_contig_len	ssu_count	ssu_gg_blast_align_len	ssu_gg_blast_bitscore	ssu_gg_blast_evalue	ssu_gg_blast_perc_identity	ssu_gg_blast_subject_id	ssu_gg_taxonomy	ssu_length	ssu_query_id	ssu_silva_blast_align_len	ssu_silva_blast_bitscore	ssu_silva_blast_evalue	ssu_silva_blast_perc_identity	ssu_silva_blast_subject_id	ssu_silva_taxonomy	total_gap_length	trna_aa_count	trna_count	trna_selenocysteine_count
+RS_GCF_000381545.1	0	100	0	439	o__Cytophagales (UID2938)	266	0	4504205	86.72438016743745	62	2169018	41.82850570687274	5193701	RS_GCF_000381545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Rhodonellum;s__Rhodonellum psychrophilum	type strain of species	LPSN	t	8	7	627008	627008	2894	1	2836	NZ_KB906716.1	113481	2	98	NZ_KB906690.1	2836	5238	0	100	FNQC01000038.312.3153	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Rhodonellum;Rhodonellum ikkaensis	83637	101837	t	f	f	194487	212581	Scaffold	ASM38154v1	na	PRJNA224116	SAMN02441658	62	194487	none	2013-04-24	GCA_000381545.1	none	full	none	none	61.18350 N 48.01654 W	0	0	Rhodonellum psychrophilum GCM71 = DSM 17998	4375	na	5	51	7	212581	128523	70373	2013/04/24	11	336828	2	DSM 17998	DOE Joint Genome Institute	1123057	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Rhodonellum;s__Rhodonellum psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Rhodonellum;s__Rhodonellum psychrophilum;x__Rhodonellum psychrophilum GCM71 = DSM 17998	8199	5193701	11	37	assembly from type material	5185502	0	ARMB00000000.1	4430	51	1472	2	1328	2440	0	99.849	130535	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Rhodonellum;s__psychrophilum	1419	NZ_KB906721.1	1396	2523	0	99.284	HM127463.1.1447	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;uncultured bacterium	8199	19	37	0
+RS_GCF_000507905.1	0	99.29	0.36	530	g__Prevotella (UID2721)	280	0	2630658	87.97710625711917	14	1333473	44.71797427331401	2990162	RS_GCF_000185145.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella oralis	not type material	none	f	2	2	948221	1135470	1135470	3	2939	NZ_KI669541.1	1135470	2	108	NZ_KI669541.1	2939	5428	0	100	FIZG01000001.252.3202	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. SN19	212997	498360	t	f	f	660963	948221	Scaffold	Prev_oral_CC98A_V1	na	PRJNA224116	SAMN01162055	14	660963	none	2013-12-13	GCA_000507905.1	none	full	none	none	none	0	0	Prevotella oralis CC98A	2415	na	9	6	2	948221	294925	223798	2013/12/13	8	28134	4	CC98A	Broad Institute	1073367	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella oralis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella oralis;x__Prevotella oralis CC98A	8200	2990162	11	48	none	2981962	0	AZJG00000000.1	2496	6	294925	4	1431	2639	0	99.93	3940083	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1530	NZ_KI669543.1	1521	2809	0	100	AZJG01000013.222238.223758	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella oralis CC98A	8200	19	48	0
+RS_GCF_000750195.1	0	99.67	0.33	571	s__algicola (UID2846)	303	100	3493716	91.35818352406623	1	1228101	32.113965915972926	3824196	RS_GCF_000190595.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga lytica	not type material	none	f	1	1	3824196	3824196	3824196	4	2813	NZ_CP009239.1	3824196	4	104	NZ_CP009239.1	2813	5195	0	100	CP009239.274276.277100	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga lytica	3824196	3824196	t	f	f	3824196	3824196	Complete Genome	ASM75019v1	na	PRJNA224116	SAMN02937577	none	none	USA:Hawaii	2014-09-09	GCA_000750195.1	none	full	none	Marine Biofilm	21.4722 N 157.9772 W	1	1	Cellulophaga lytica	3300	na	12	1	1	3824196	3824196	3824196	2014/09/09	0	979	4	HI1	University of Hawaii at Manoa	979	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga lytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga lytica	0	3824196	11	40	none	3824196	0	none	3334	1	3824196	4	none	none	none	none	none	none	1516	NZ_CP009239.1	1516	2800	0	100	CP009239.1124963.1126489	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga lytica	0	19	40	0
+RS_GCF_000273155.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4834627	88.79761508122073	35	2368683	43.62033115742675	5444546	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	4	1	984935	3416594	644536	8	2882	NZ_JH724217.1	700938	5	106	NZ_JH724216.1	2882	5323	0	100	AGXN01000022.501326.504212	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis CL07T12C05	155149	494958	t	f	f	458158	3416594	Scaffold	Bact_frag_CL07T12C05_V1	na	PRJNA224116	SAMN02463926	35	458158	none	2012-07-23	GCA_000273155.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides fragilis CL07T12C05	4807	na	19	11	1	3416594	700938	464323	2012/07/23	24	817	6	CL07T12C05	Broad Institute	997883	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis CL07T12C05	14319	5444546	11	83	none	5430227	0	AGXN00000000.1	4600	11	147087	5	1525	2784	0	99.607	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JH724219.1	1526	2791	0	99.672	AP006841.4735744.4737280	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis YCH46	14319	19	83	0
+RS_GCF_000009925.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4719009	88.85366005208068	2	2294576	43.20429901016571	5310990	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	1	1	5277274	5277274	5277274	6	2881	NC_006347.1	5277274	6	106	NC_006347.1	2879	5317	0	100	AP006841.4523608.4526486	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis YCH46	2655495	2655495	t	f	f	5277274	5277274	Complete Genome	ASM992v1	na	PRJNA224116	SAMD00061068	none	none	none	2004-09-16	GCA_000009925.1	none	full	none	none	none	2	0	Bacteroides fragilis YCH46	4625	na	18	2	1	5277274	5277274	5277274	2004/09/16	0	817	6	YCH46	Kitasato Univ.	295405	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis YCH46	0	5310990	11	74	none	5310990	0	none	4416	2	5277274	6	none	none	none	none	none	none	1526	NC_006347.1	1526	2819	0	100	AP006841.4527043.4528579	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis YCH46	0	19	74	0
+RS_GCF_000422725.1	0	99.65	0	511	f__Flavobacteriaceae (UID2817)	283	0	4130578	89.04859820901545	31	1926766	41.61529278844876	4638566	RS_GCF_000422725.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium subsaxonicum	type strain of species	LPSN	f	5	3	833628	1376805	1673	1	1667	NZ_AUGP01000010.1	366192	2	103	NZ_AUGP01000018.1	1667	3079	0	100	JRLY01000041.83.2970	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790	149353	244135	f	f	t	303151	366192	Scaffold	ASM42272v1	na	PRJNA224116	SAMN02441179	31	303151	Germany	2013-07-11	GCA_000422725.1	none	full	none	none	none	0	1	Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790	4023	representative genome	5	19	3	366192	207008	117595	2013/07/11	12	426226	2	DSM 21790	DOE Joint Genome Institute	1121898	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium subsaxonicum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium subsaxonicum;x__Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790	8619	4638566	11	41	assembly from type material	4629947	0	AUGP00000000.1	4069	19	1420	2	1413	2601	0	99.858	272591	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1415	NZ_AUGP01000011.1	1414	2612	0	100	AUGP01000011.1.1419	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790	8619	19	41	0
+RS_GCF_001427905.1	249	99.65	0.14	511	f__Flavobacteriaceae (UID2817)	283	0	4942193	87.82261377755411	48	1920143	34.12613216564302	5627472	RS_GCF_001427905.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp001427905	not type material	none	f	5	5	811907	811907	583616	1	2872	NZ_LMEF01000023.1	104569	4	104	NZ_LMEF01000007.1	2872	5304	0	100	LMEF01000023.37716.40608	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. Root420	117226	165513	t	f	f	345108	370611	Scaffold	Root420	na	PRJNA224116	SAMN04155802	48	345108	Germany: Golm	2015-11-02	GCA_001427905.1	none	full	none	root	52.416 N 12.968 E	0	0	Flavobacterium sp. Root420	4681	na	8	34	5	370611	224289	76251	2015/11/02	14	1736533	3	Root420	Max Planck Institute for Plant Breeding Research	1736533	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. Root420	617	5627472	11	47	none	5626855	0	LMEF00000000.1	4733	34	583616	1	1427	2577	0	99.229	151743	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1428	NZ_LMEF01000023.1	1426	2575	0	99.229	AM230490.1.1550	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium pectinovorum	617	19	47	0
+RS_GCF_001278115.1	10	99.65	0	511	f__Flavobacteriaceae (UID2817)	283	0	4072292	89.8361402172767	17	1984728	43.80565018038924	4533022	RS_GCF_001278115.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium akiainvivens	type strain of species	LPSN	f	4	1	850256	4521259	4521259	4	2859	NZ_LIYD01000005.1	3174	4	102	NZ_LIYD01000002.1	2859	5280	0	100	FOYA01000031.2555.5429	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium akiainvivens	266515	906604	t	f	f	512188	4521259	Scaffold	ASM127811v1	na	PRJNA224116	SAMN04015015	17	512188	USA: Hawaii	2015-09-02	GCA_001278115.1	none	full	none	decaying wood	21.35 N 157.80 W	0	1	Flavobacterium akiainvivens	4021	representative genome	9	5	1	4521259	4521259	4521259	2015/09/02	12	1202724	2	IK-1	University of Hawaii at Manoa	1202724	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium akiainvivens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium akiainvivens	2254	4533022	11	50	assembly from type material	4530768	0	LIYD00000000.1	4072	5	2323	3	none	none	none	none	none	none	1511	NZ_LIYD01000001.1	1346	2481	0	99.926	JQ228532.1.1346	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium akiainvivens	2254	19	50	0
+RS_GCF_000012825.1	0	99.25	0.94	485	o__Bacteroidales (UID2654)	265	66.67	4605455	89.19787751329653	1	2178943	42.20149601341341	5163189	RS_GCF_000012825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus	type strain of species	LPSN	f	1	1	5163189	5163189	5163189	7	2881	NC_009614.1-#2	5163189	8	106	NC_009614.1	2881	5252	0	99.583	AGXZ01000039.1517.4402	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides vulgatus CL09T03C04	5163189	5163189	t	f	f	5163189	5163189	Complete Genome	ASM1282v1	na	PRJNA224116	SAMN02604309	none	none	none	2007-06-27	GCA_000012825.1	none	full	none	none	none	1	0	Phocaeicola vulgatus ATCC 8482	4226	na	22	1	1	5163189	5163189	5163189	2007/06/27	0	821	7	ATCC 8482	Washington University (WashU)	435590	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus;x__Phocaeicola vulgatus ATCC 8482	0	5163189	11	84	assembly from type material	5163189	0	none	4218	1	5163189	7	none	none	none	none	none	none	1525	NC_009614.1	1503	2776	0	100	CP000139.4430477.4431986	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides vulgatus ATCC 8482	0	19	81	0
+RS_GCF_000429405.1	0	100	0	439	o__Cytophagales (UID2938)	266	0	4030966	90.95800732814975	35	1855709	41.915821818980184	4431678	RS_GCF_000429405.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus marincola	type strain of species	LPSN	f	5	4	571549	658794	2563	2	2536	NZ_AUBU01000030.1	658794	2	97	NZ_AUBU01000001.1	2536	4684	0	100	AUBU01000030.27.2563	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus marincola DSM 16067	126492	164136	t	f	f	432015	446020	Scaffold	ASM42940v1	na	PRJNA224116	SAMN02440616	35	432015	South Korea	2013-09-05	GCA_000429405.1	none	full	none	none	none	0	0	Algoriphagus marincola DSM 16067	3886	na	5	27	4	446020	291537	118606	2013/09/05	8	264027	1	DSM 16067	DOE Joint Genome Institute	1120966	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus marincola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus marincola;x__Algoriphagus marincola DSM 16067	4450	4431678	11	40	assembly from type material	4427228	0	AUBU00000000.1	3902	27	121816	1	1476	2726	0	100	623190	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__marincola	1518	NZ_AUBU01000014.1	1502	2774	0	100	AUBU01000014.120286.121787	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus marincola DSM 16067	4450	19	40	0
+RS_GCF_000425585.1	0	99.01	0	301	p__Bacteroidetes (UID2591)	202	0	4237343	90.42265381063184	40	2251742	48.08325078309727	4686152	RS_GCF_000425585.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Terrimonas;s__Terrimonas ferruginea	type strain of species	LPSN	t	8	6	385756	538171	363405	1	2790	NZ_KE384400.1	363405	1	99	NZ_KE384400.1	2780	5134	0	100	AUDS01000006.509.3290	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Terrimonas;Terrimonas ferruginea DSM 30193	117075	156205	t	f	f	217613	299972	Scaffold	ASM42558v1	na	PRJNA224116	SAMN02440863	40	217613	none	2013-07-11	GCA_000425585.1	none	full	none	none	none	0	0	Terrimonas ferruginea DSM 30193	3962	representative genome	3	30	6	299972	148991	98034	2013/07/11	10	249	1	DSM 30193	DOE Joint Genome Institute	1123356	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Terrimonas;s__Terrimonas ferruginea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Terrimonas;s__Terrimonas ferruginea;x__Terrimonas ferruginea DSM 30193	3145	4686152	11	40	assembly from type material	4683007	0	AUDS00000000.1	4004	30	363405	1	1517	2785	0	99.802	1126253	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Terrimonas;s__	1528	NZ_KE384400.1	1519	2789	0	99.803	AM230484.1.1519	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Terrimonas;Terrimonas ferruginea	3145	19	40	0
+RS_GCF_000517065.1	0	96.74	1.09	275	k__Bacteria (UID2569)	184	0	3593927	87.18320245883943	47	1758784	42.70893889613338	4122270	RS_GCF_000517065.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Alkaliflexus;s__Alkaliflexus imshenetskii	type strain of species	LPSN	t	4	1	745751	4108720	4108720	3	2810	NZ_KI912105.1	4108720	4	105	NZ_KI912105.1	2804	5179	0	100	AJUM01000034.492228.495037	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Alkaliflexus;Alkaliflexus imshenetskii DSM 15055	87618	824454	t	f	f	431941	4108720	Scaffold	ASM51706v1	na	PRJNA224116	SAMN02597159	47	431941	none	2014-01-08	GCA_000517065.1	none	full	none	none	none	0	0	Alkaliflexus imshenetskii DSM 15055	3223	representative genome	6	5	1	4108720	4108720	4108720	2014/01/08	42	286730	1	Z-7010	JGI	927658	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Alkaliflexus;s__Alkaliflexus imshenetskii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Alkaliflexus;s__Alkaliflexus imshenetskii;x__Alkaliflexus imshenetskii DSM 15055	4200	4122270	11	46	assembly from type material	4118070	0	AJUM00000000.1	3305	5	4108720	4	none	none	none	none	none	none	1516	NZ_KI912105.1	1513	2769	0	99.736	FR839023.1.1515	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Alkaliflexus;Alkaliflexus imshenetskii	4200	19	47	0
+RS_GCF_000336235.1	2	99.48	0.28	567	g__Prevotella (UID2724)	296	100	2594590	85.86424686479788	131	1288999	42.65760740608121	3021735	RS_GCF_000220235.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella nigrescens	not type material	none	f	21	21	184151	184151	4325	2	2900	NZ_ADGJ01000098.1	45493	5	108	NZ_ADGJ01000021.1	2900	5356	0	100	ADGJ01000098.780.3685	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella nigrescens F0103	23066	23066	t	f	f	45493	45493	Contig	Prev_nigr_F0103_V1	na	PRJNA224116	SAMN02595377	131	45493	none	2013-02-01	GCA_000336235.1	none	full	none	none	none	0	0	Prevotella nigrescens F0103	2683	na	14	none	none	none	none	none	2013/02/01	0	28133	5	F0103	Broad Institute	702439	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella nigrescens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella nigrescens;x__Prevotella nigrescens F0103	0	3021735	11	48	none	3021735	0	ADGJ00000000.1	2759	131	2325	3	1528	2795	0	99.673	4480544	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__nigrescens	1529	NZ_ADGJ01000112.1	1520	2780	0	99.671	AFPX01000069.42.1561	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella nigrescens ATCC 33563	0	19	48	0
+RS_GCF_000519105.1	0	99.46	0	278	k__Bacteria (UID2569)	186	0	4293401	91.00320336118708	76	1994743	42.29882040003087	4717857	GB_GCA_025148635.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinifilaceae;g__Butyricimonas;s__Butyricimonas virosa	type strain of species	LPSN	f	14	11	348184	455750	1373	2	1283	NZ_JAEW01000069.1	60527	5	104	NZ_JAEW01000032.1	1283	2320	0	99.299	FBYB01000007.137.3024	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Butyricimonas;Butyricimonas sp. AT11	62050	69380	f	f	t	109458	118834	Scaffold	ASM51910v1	na	PRJNA224116	SAMN02584930	76	109458	Japan	2014-01-13	GCA_000519105.1	none	full	none	not provided; submitted under MIGS 2.1	none	0	0	Butyricimonas virosa DSM 23226	3860	na	10	68	11	118834	72457	43168	2014/01/13	8	544645	3	DSM 23226	DOE Joint Genome Institute	1121130	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Butyricimonas;s__Butyricimonas virosa	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Butyricimonas;s__Butyricimonas virosa;x__Butyricimonas virosa DSM 23226	2021	4717857	11	50	assembly from type material	4715836	0	JAEW00000000.1	3934	68	81808	2	297	510	1.34e-143	97.643	216125	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__[Odoribacteraceae];g__Butyricimonas;s__	300	NZ_JAEW01000023.1	296	508	1.24e-142	97.635	FBYB01000006.1397107.1398611	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Butyricimonas;Butyricimonas sp. AT11	2021	19	50	0
+RS_GCF_000190575.1	0	98.41	0	490	o__Bacteroidales (UID2657)	267	0	3779998	87.73018451431453	4	2003128	46.490709531007646	4308663	RS_GCF_000190575.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola salanitronis	type strain of species	LPSN	f	1	1	4242803	4242803	4242803	6	2872	NC_015164.1-#3	4242803	6	105	NC_015164.1	2872	5304	0	100	CP002530.3616786.3619664	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides salanitronis DSM 18170	1077165	1077165	t	f	f	4242803	4242803	Complete Genome	ASM19057v1	na	PRJNA224116	SAMN00713589	none	none	Japan	2011-02-28	GCA_000190575.1	none	full	none	cecum	none	4	0	Phocaeicola salanitronis DSM 18170	3707	representative genome	18	4	1	4242803	4242803	4242803	2011/02/28	0	376805	6	DSM 18170	US DOE Joint Genome Institute (JGI-PGF)	667015	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola salanitronis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola salanitronis;x__Phocaeicola salanitronis DSM 18170	0	4308663	11	82	assembly from type material	4308663	0	none	3782	4	4242803	6	none	none	none	none	none	none	1530	NC_015164.1-#6	1521	2809	0	100	CP002530.3407541.3409061	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides salanitronis DSM 18170	0	19	82	0
+RS_GCF_000428565.1	0	99.62	0.38	427	o__Bacteroidales (UID2621)	260	0	6076410	91.00381093930983	62	2964950	44.426953065766185	6677094	RS_GCF_000969825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides gordonii	type strain of species	LPSN	f	9	7	574989	706765	30335	1	286	NZ_AUAE01000040.1	281242	6	103	NZ_AUAE01000011.1	286	529	8.03e-149	100	AGES01000006.94844.96984	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides sp. HGS0025	107641	123649	f	f	t	251614	281242	Scaffold	ASM42856v1	na	PRJNA224116	SAMN02440889	62	251614	Japan	2013-09-05	GCA_000428565.1	none	full	none	none	none	0	0	Parabacteroides gordonii MS-1 = DSM 23371	5286	na	10	54	7	281242	161331	98418	2013/09/05	8	574930	3	DSM 23371	DOE Joint Genome Institute	1203610	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides gordonii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides gordonii;x__Parabacteroides gordonii MS-1 = DSM 23371	3330	6677094	11	64	assembly from type material	6673764	0	AUAE00000000.1	5326	54	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	3330	19	64	0
+RS_GCF_000301095.1	0	99.51	0.25	324	o__Flavobacteriales (UID2815)	204	0	2170177	86.83552731874963	35	886288	36.2617229277186	2499181	RS_GCF_000301075.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Bergeyella;s__Bergeyella zoohelcum	not type material	none	f	3	1	840246	1627166	1627166	1	2735	NZ_JH932282.1	1627166	1	101	NZ_JH932282.1	2735	5051	0	100	AGYB01000006.420902.423646	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Bergeyella;Bergeyella zoohelcum CCUG 30536	69832	499836	t	f	f	202320	1627166	Scaffold	Berg_zooh_CCUG_30536_V1	na	PRJNA224116	SAMN02463903	35	202320	none	2012-10-11	GCA_000301095.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bergeyella zoohelcum CCUG 30536	2314	na	4	5	1	1627166	864530	864530	2012/10/11	30	1015	2	CCUG 30536	Broad Institute	883098	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Bergeyella;s__Bergeyella zoohelcum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Bergeyella;s__Bergeyella zoohelcum;x__Bergeyella zoohelcum CCUG 30536	55039	2499181	11	41	none	2444142	0	AGYB00000000.1	2324	5	864530	2	1523	2785	0	99.672	4297519	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Bergeyella;s__zoohelcum	1524	NZ_JH932283.1	1516	2800	0	100	AGYB01000031.666.2181	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Bergeyella;Bergeyella zoohelcum CCUG 30536	55039	19	40	0
+RS_GCF_000425305.1	0	99.67	1.87	571	s__algicola (UID2846)	303	0	3496167	87.92185890523402	73	1326901	33.41069312594832	3976448	RS_GCF_000425305.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens burtonensis	type strain of species	LPSN	t	10	9	349214	349214	4806	1	2820	NZ_AUDE01000049.1	11582	1	102	NZ_AUDE01000042.1	2814	5197	0	100	AUDE01000049.95.2911	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Psychroserpens burtonensis DSM 12212	54403	58477	t	f	f	163996	164084	Scaffold	ASM42530v1	na	PRJNA224116	SAMN02440859	73	163996	Antarctica	2013-07-11	GCA_000425305.1	none	full	none	none	68.6332 S 78.1000 E	0	1	Psychroserpens burtonensis DSM 12212	3504	representative genome	3	68	9	164084	93126	53708	2013/07/11	5	49278	1	DSM 12212	DOE Joint Genome Institute	1123037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens burtonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens burtonensis;x__Psychroserpens burtonensis DSM 12212	4962	3976448	11	35	assembly from type material	3971486	0	AUDE00000000.1	3613	68	4806	1	1285	2351	0	99.689	81008	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__	1316	NZ_AUDE01000049.1	1284	2350	0	99.688	AF468421.1.1472	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Arctic sea ice associated bacterium ARK10144	4962	19	35	0
+RS_GCF_001263815.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	2036685	86.04393947011211	1	1144046	48.33257218225886	2367029	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	1	1	2367029	2367029	2367029	4	2889	NZ_CP011995.1	2367029	4	106	NZ_CP011995.1	2889	5336	0	100	CP011995.2193448.2196342	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	2367029	2367029	t	f	f	2367029	2367029	Complete Genome	ASM126381v1	na	PRJNA224116	SAMN03366764	none	none	USA: Atlanta; GA; CDC Anaerobic Diseases	2015-08-11	GCA_001263815.1	none	full	none	subgingival plaque	33.7988 N 84.3256 W	1	0	Porphyromonas gingivalis	2047	na	12	1	1	2367029	2367029	2367029	2015/08/11	0	837	4	A7436	University of Florida	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	0	2367029	11	53	none	2367029	0	none	2034	1	2367029	4	none	none	none	none	none	none	1528	NZ_CP011995.1	1528	2806	0	99.804	CP025931.2275253.2276794	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	53	0
+RS_GCF_000698925.1	0	99.66	0	567	g__Prevotella (UID2724)	296	0	2850767	82.03523285406952	149	1615280	46.60960216438824	3475052	RS_GCF_000378085.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella loescheii	type strain of species	LPSN	f	27	6	146156	484404	2246	1	2198	NZ_KL205546.1	9844	1	108	NZ_KL205497.1	2198	4060	0	100	JNGW01000148.40.2246	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella loescheii DSM 19665 = JCM 12249 = ATCC 15930	23258	64352	t	f	f	39934	181917	Scaffold	ASM69892v1	na	PRJNA224116	SAMN02840639	149	39934	none	2014-06-06	GCA_000698925.1	none	full	none	oral cavity- mouth	none	0	0	Prevotella loescheii DSM 19665 = JCM 12249 = ATCC 15930	2680	na	3	54	6	181917	72127	39297	2014/06/06	95	840	1	ATCC 15930	Washington University	1122985	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella loescheii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella loescheii;x__Prevotella loescheii DSM 19665 = JCM 12249 = ATCC 15930	9500	3475052	11	44	assembly from type material	3465552	0	JNGW00000000.1	2787	54	1691	1	1487	2741	0	99.933	722262	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1527	NZ_KL205543.1	1487	2741	0	99.933	AB547688.1.1490	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella loescheii	9500	18	44	0
+RS_GCF_001006065.1	0	92.84	2.88	316	p__Bacteroidetes (UID2605)	210	0	4763796	84.90387574986931	344	2035755	36.282722765033434	5610811	RS_GCF_012030425.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium sp012030425	not type material	none	f	55	55	87254	87254	3325	1	2875	NZ_ASZT02000249.1	none	0	none	none	2875	5310	0	100	ASZT02000249.105.2988	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. IITKGP-BTPF85	16310	16310	f	f	t	30842	30842	Contig	Sphingobacterium 2.0	na	PRJNA224116	SAMN02179235	344	30842	Svalbard: Ny-Alesund	2015-05-11	GCA_001006065.1	none	full	none	arctic permafrost soil	78.916667 N 11.933333 E	0	0	Sphingobacterium sp. IITKGP-BTPF85	5233	na	2	none	none	none	none	none	2015/05/11	0	1338009	1	IITKGP-BTPF85	Indian Institute of Technology Kharagpur	1338009	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;x__unclassified Sphingobacterium;s__Sphingobacterium sp. IITKGP-BTPF85	0	5610811	11	44	none	5610811	0	ASZT00000000.2	6604	344	2016	1	1490	2699	0	99.195	1125647	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__faecium	1527	NZ_ASZT02000282.1	1490	2699	0	99.195	AB361248.1.1490	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium kitahiroshimense	0	17	44	0
+RS_GCF_001261735.1	6	100	0.55	273	k__Bacteria (UID2570)	183	0	3908232	90.41923066779013	38	1604590	37.12317864860238	4322346	RS_GCF_001261735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__Dysgonomonas sp001261735	not type material	none	f	5	5	667523	667523	3582	1	2871	NZ_CVRP01000024.1	3582	1	105	NZ_CVRP01000024.1	2786	5145	0	100	CVRP01000024.583.3368	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Dysgonomonas;Dysgonomonas sp. BGC7	113745	113745	t	f	f	328419	328419	Contig	BGC7_v2	na	PRJNA224116	SAMEA3432782	38	328419	none	2015-07-25	GCA_001261735.1	none	full	BGC7	Reticulitermes flavipes hindgut	none	0	0	Dysgonomonas sp. BGC7	3494	na	3	none	none	none	none	none	2015/07/25	0	1658008	1	BGC7	UCONNMISEQ	1658008	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;x__unclassified Dysgonomonas;s__Dysgonomonas sp. BGC7	0	4322346	11	39	none	4322346	0	CVRP00000000.1	3567	38	1747	1	1525	2320	0	94.164	4333569	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Dysgonomonas;s__	1525	NZ_CVRP01000015.1	1509	2787	0	100	CVRP01000015.219.1727	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Dysgonomonas sp. BGC7	0	19	38	0
+RS_GCF_000427295.1	4	98.3	2.03	454	o__Cytophagales (UID2936)	336	0	5399099	85.80992980212106	202	2438362	38.75383745893943	6291928	RS_GCF_000427295.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium qasimii	type strain of species	LPSN	f	21	21	248907	248907	3082	1	2883	NZ_ATNM01000138.1	35736	2	94	NZ_ATNM01000087.1	2829	5225	0	100	ATNM01000138.132.2960	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cyclobacterium;Cyclobacterium qasimii M12-11B	31148	31148	t	f	f	107474	107474	Contig	CyQa1.0	na	PRJNA224116	SAMN02469438	202	107474	none	2013-07-15	GCA_000427295.1	none	full	none	none	none	0	0	Cyclobacterium qasimii M12-11B	5109	na	4	none	none	none	none	none	2013/07/15	0	1350429	1	M12-11B	Centre for Cellular and Molecular Biology	641524	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium qasimii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium qasimii;x__Cyclobacterium qasimii M12-11B	0	6291928	11	39	assembly from type material	6291928	0	ATNM00000000.1	5601	202	1581	1	1479	2627	0	98.715	4410370	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__;s__	1521	NZ_ATNM01000154.1	1517	2776	0	99.736	FN377719.1.1520	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cyclobacterium;Cyclobacterium qasimii M12-11B	0	19	38	0
+RS_GCF_000601095.1	0	99.26	0.56	492	o__Bacteroidales (UID2657)	269	0	4975147	88.80030143018699	87	2419958	43.193296569607384	5602624	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	9	9	798744	798744	5148	7	2882	NZ_JGVF01000009.1	5148	8	106	NZ_JGVF01000009.1	2882	5323	0	100	JGVF01000009.222.3106	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 1007-1-F #6	64397	64397	t	f	f	193412	193412	Contig	ASM60109v1	na	PRJNA224116	SAMN02315077	87	193412	USA	2014-03-26	GCA_000601095.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 1007-1-F #6	5005	na	24	none	none	none	none	none	2014/03/26	0	817	8	1007-1-F #6	IGS	1339340	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 1007-1-F #6	0	5602624	11	92	none	5602624	0	JGVF00000000.1	4815	87	147420	6	1525	2795	0	99.738	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGVF01000081.1	1526	2808	0	99.869	CR626927.5128421.5129953	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis NCTC 9343	0	19	91	0
+RS_GCF_000827735.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2403194	89.06596872454338	90	928024	34.393959272379035	2698218	RS_GCF_000379185.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga cynodegmi	not type material	none	f	7	7	285939	285939	3786	1	2821	NZ_CDOG01000069.1	3786	1	103	NZ_CDOG01000069.1	2821	5210	0	100	CDOG01000069.690.3522	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga cynodegmi	29980	29980	t	f	f	115789	115789	Contig	Ccyn74.1	na	PRJNA224116	SAMEA3180122	90	115789	none	2015-01-21	GCA_000827735.1	none	full	none	none	none	0	1	Capnocytophaga cynodegmi	2373	na	3	none	none	none	none	none	2015/01/21	0	28189	1	Ccy74	BIOZENTRUM, UNIVERSITY OF BASEL	28189	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga cynodegmi	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga cynodegmi	0	2698218	11	40	none	2698218	0	CDOG00000000.1	2391	90	1633	1	1437	2654	0	100	4434209	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1500	NZ_CDOG01000064.1	1496	2758	0	99.933	ARAI01000004.3377.4872	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga cynodegmi DSM 19736	0	19	40	0
+RS_GCF_000689455.1	49	100	0	152	k__Bacteria (UID2565)	93	0	3604900	89.30194904123462	214	1440756	35.69147532820786	4036754	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	7	6	639538	639538	4824	2	2762	NZ_CCAB010000161.1	1491	1	101	NZ_CCAB010000179.1	2762	5101	0	100	CP023404.775865.778639	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	18863	18951	t	f	f	173573	191175	Scaffold	E18064v1_PRJEB5242	na	PRJNA224116	SAMEA3139011	214	173573	none	2014-04-10	GCA_000689455.1	none	full	none	none	none	0	0	Elizabethkingia anophelis	3753	na	5	213	6	191175	106199	48649	2014/04/10	1	1117645	1	V0378064	INSTITUT PASTEUR	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	10	4036754	11	43	none	4036744	0	CCAB000000000.1	3814	213	4824	1	1512	2787	0	99.934	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_CCAB010000161.1	1513	2795	0	100	CP016370.2367209.2368730	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	10	19	45	0
+RS_GCF_000265465.1	0	100	0	152	k__Bacteria (UID2565)	93	0	2172389	90.54733397938875	1	892916	37.217626892577655	2399175	RS_GCF_000265465.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Ornithobacterium;s__Ornithobacterium rhinotracheale	type strain of species	LPSN	t	1	1	2399175	2399175	2399175	3	2749	NC_018016.1	2399175	3	102	NC_018016.1	2749	5077	0	100	CP006828.482076.484833	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Ornithobacterium;Ornithobacterium rhinotracheale ORT-UMN 88	2399175	2399175	t	f	f	2399175	2399175	Complete Genome	ASM26546v1	na	PRJNA224116	SAMN02261366	none	none	United Kingdom	2012-06-11	GCA_000265465.1	none	full	none	Turkey; respiratory tract; United Kingdom	none	1	0	Ornithobacterium rhinotracheale DSM 15997	2265	na	9	1	1	2399175	2399175	2399175	2012/06/11	0	28251	3	DSM 15997	JGI	867902	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Ornithobacterium;s__Ornithobacterium rhinotracheale	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Ornithobacterium;s__Ornithobacterium rhinotracheale;x__Ornithobacterium rhinotracheale DSM 15997	0	2399175	11	43	assembly from type material	2399175	0	none	2335	1	2399175	3	none	none	none	none	none	none	1513	NC_018016.1	1513	2789	0	99.934	CP006828.384415.385937	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Ornithobacterium;Ornithobacterium rhinotracheale ORT-UMN 88	0	19	43	0
+RS_GCF_001418685.1	0	100	0	152	k__Bacteria (UID2565)	93	0	2013846	86.3904477632429	48	708969	30.479053654937953	2331098	RS_GCF_001418685.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Apibacter;s__Apibacter mensalis	type strain of species	LPSN	f	6	5	308349	308349	5942	2	2813	NZ_LIVM01000022.1	5942	1	101	NZ_LIVM01000022.1	2813	5195	0	100	FCOR01000022.859.3685	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Apibacter;Apibacter mensalis	48460	55502	t	f	f	158456	183104	Scaffold	ASM141868v1	na	PRJNA224116	SAMN03992719	48	158456	none	2015-10-28	GCA_001418685.1	none	full	none	none	none	0	0	Apibacter mensalis	2052	na	5	42	5	183104	124928	60206	2015/10/28	6	1586267	2	R-53146	Joint Genome Institute	1586267	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Apibacter;s__Apibacter mensalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Apibacter;s__Apibacter mensalis	5012	2331098	11	38	assembly from type material	2326086	0	LIVM00000000.1	2121	42	129501	2	none	none	none	none	none	none	1515	NZ_LIVM01000008.1	1488	2737	0	99.866	LN713847.1.1489	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Apibacter;Apibacter mensalis	5012	19	38	0
+RS_GCF_000467795.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	2024337	86.70488070640721	219	1126963	48.40399030342181	2334744	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	30	22	87248	168213	32121	1	2889	NZ_KI258925.1	32121	1	106	NZ_KI258925.1	2889	5336	0	100	AWUU01000079.228.3126	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis F0568	10631	15160	t	f	f	25942	32910	Scaffold	ASM46779v1	na	PRJNA224116	SAMN02436723	219	25942	USA	2013-09-16	GCA_000467795.1	none	full	none	subgingival plaque biofilm	none	0	0	Porphyromonas gingivalis F0568	2066	na	3	154	22	32910	16433	7181	2013/09/16	65	837	1	F0568	Washington University	1227269	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis;x__Porphyromonas gingivalis F0568	6500	2334744	11	46	none	2328244	0	AWUU00000000.1	2046	154	32121	1	1527	2804	0	99.804	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_KI258925.1	1528	2822	0	100	CP024594.285996.287537	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	6500	19	46	0
+RS_GCF_000162555.1	4	99.14	0.32	839	g__Bacteroides (UID2691)	309	0	5873756	90.08582281035886	87	2703416	41.65585111472734	6520178	RS_GCF_001314995.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides ovatus	not type material	none	f	17	2	301994	3021873	6302	6	2871	NZ_GG774962.1	570962	6	106	NZ_GG774954.1	2863	5288	0	100	ACRS01000080.219.3083	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. 3_1_23	74596	326008	t	f	f	131973	1275955	Scaffold	ASM16255v1	na	PRJNA224116	SAMN02463761	87	131973	none	2010-06-17	GCA_000162555.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides sp. 3_1_23	5018	na	16	20	2	1275955	561303	202759	2010/06/17	67	457390	4	3_1_23	Broad Institute	457390	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. 3_1_23	30291	6520178	11	67	none	6489887	0	ACRS00000000.1	5057	20	6302	3	1525	2761	0	99.344	4313256	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__ovatus	1526	NZ_GG774962.1	1526	2802	0	99.803	CP012938.5127208.5128733	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus	30291	19	65	0
+RS_GCF_000767095.1	1	99.12	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2413966	88.22033613371673	1	885238	32.35174913779273	2736292	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	1	1	2736292	2736292	2736292	1	2872	NZ_CP008902.1	2736292	1	104	NZ_CP008902.1	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	2736292	2736292	t	f	f	2736292	2736292	Complete Genome	ASM76709v1	na	PRJNA224116	SAMN02903962	none	none	Denmark	2014-10-16	GCA_000767095.1	none	full	none	freshwater farm	none	1	1	Flavobacterium psychrophilum	2435	na	3	1	1	2736292	2736292	2736292	2014/10/16	0	96345	1	1;950106-1	University of Copenhagen	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2736292	11	38	none	2736292	0	none	2450	1	2736292	1	none	none	none	none	none	none	1508	NZ_CP008902.1	1508	2785	0	100	CP010278.992834.994351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	18	38	0
+RS_GCF_000775915.1	0	100	0.6	454	o__Cytophagales (UID2936)	336	0	5259790	87.89347687390192	37	2154446	36.001769971247995	5984278	RS_GCF_000775915.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__Sporocytophaga myxococcoides_A	not type material	none	f	4	4	987877	987877	3306	3	2874	NZ_BBLT01000024.1	3306	2	107	NZ_BBLT01000024.1	2874	5308	0	100	BBLT01000024.257.3130	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Sporocytophaga;Sporocytophaga myxococcoides	161737	161737	t	f	f	594330	594330	Contig	ASM77591v1	na	PRJNA224116	SAMD00019234	37	594330	none	2014-10-07	GCA_000775915.1	none	full	none	none	none	0	0	Sporocytophaga myxococcoides	4881	na	9	none	none	none	none	none	2014/10/07	0	153721	4	PG-01	Shandong University	153721	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__Sporocytophaga myxococcoides	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__Sporocytophaga myxococcoides	0	5984278	11	42	none	5984278	0	BBLT00000000.1	4994	37	2033	4	1517	2780	0	99.736	140328	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__	1522	NZ_BBLT01000026.1	1517	2780	0	99.736	DQ186971.1.1517	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Sporocytophaga;Sporocytophaga sp. JL-01	0	19	42	0
+RS_GCF_001050135.1	0	100	0.3	454	o__Cytophagales (UID2936)	336	0	5280570	85.73983788151936	1	2359497	38.31080551189196	6158829	RS_GCF_001050135.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium amurskyense	type strain of species	LPSN	f	1	1	6158829	6158829	6158829	4	2885	NZ_CP012040.1	6158829	4	94	NZ_CP012040.1	2885	5328	0	100	CP012040.3362256.3365143	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cyclobacterium;Cyclobacterium amurskyense	6158829	6158829	t	f	f	6158829	6158829	Complete Genome	ASM105013v1	na	PRJNA224116	SAMN03846661	none	none	Russia: Peter the Great Gulf	2015-07-08	GCA_001050135.1	none	full	none	seawater	none	1	0	Cyclobacterium amurskyense	4852	representative genome	12	1	1	6158829	6158829	6158829	2015/07/08	0	320787	4	KCTC 12363	Korea Research Institute of Bioscience and Biotechnology	320787	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium amurskyense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium amurskyense	0	6158829	11	39	assembly from type material	6158829	0	none	4937	1	6158829	4	none	none	none	none	none	none	1521	NZ_CP012040.1	1512	2793	0	100	CP012040.3233347.3234858	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cyclobacterium;Cyclobacterium amurskyense	0	19	39	0
+RS_GCF_000729985.1	0	100	1.14	323	o__Flavobacteriales (UID2815)	204	0	2784750	89.15014199675188	4	1127148	36.08417425311245	3123663	RS_GCF_900109615.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella antarctica	not type material	none	f	1	1	2264138	2264138	2264138	1	2753	NZ_JPEP01000002.1	2264138	3	101	NZ_JPEP01000002.1	2753	5084	0	100	JPEP01000002.949876.952640	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium antarcticum	780915	780915	t	f	f	2264138	2264138	Contig	ASM72998v1	na	PRJNA224116	SAMN02899065	4	2264138	Antarctica: Prince George Island; King Sejong Station	2014-07-16	GCA_000729985.1	none	full	none	soil	none	0	0	Kaistella antarctica	2840	na	5	none	none	none	none	none	2014/07/16	0	266748	1	LMG 24720	Lycoming College	266748	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella antarctica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Kaistella;s__Kaistella antarctica	0	3123663	11	38	none	3123663	0	JPEP00000000.1	2850	4	2264138	1	none	none	none	none	none	none	1513	NZ_JPEP01000002.1	1439	2658	0	100	AY553293.1.1439	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium antarcticum	0	19	38	0
+RS_GCF_000331815.1	577	100	0	152	k__Bacteria (UID2565)	93	0	3611774	89.56173500763752	66	1426045	35.366925230578374	4032720	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	type strain of species	LPSN	f	7	7	401993	401993	none	0	none	none	58526	1	81	NZ_ANIW01000045.1	none	none	none	none	none	none	61101	61101	f	f	t	207010	207010	Contig	ASM33181v1	na	PRJNA224116	SAMN02470677	66	207010	Sweden	2013-01-15	GCA_000331815.1	none	full	none	Anopheles gambiae G3 adults	none	0	0	Elizabethkingia anophelis R26	3712	na	1	none	none	none	none	none	2013/01/15	0	1117645	0	R26	Stockholm University	1246994	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis;x__Elizabethkingia anophelis R26	0	4032720	11	40	assembly from type material	4032720	0	ANIW00000000.1	3802	66	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	39	0
+RS_GCF_001270965.1	0	100	2.96	278	k__Bacteria (UID2569)	186	0	4405986	88.77969046296357	225	2255931	45.456534788309334	4962831	RS_GCF_001270965.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Prolixibacteraceae;g__Sunxiuqinia;s__Sunxiuqinia dokdonensis	type strain of species	LPSN	f	35	35	141946	141946	5532	1	2867	NZ_LGIA01000015.1	5532	1	107	NZ_LGIA01000015.1	2867	5295	0	100	LGIA01000015.267.3138	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;Sunxiuqinia;Sunxiuqinia dokdonensis	22057	22057	t	f	f	43403	43403	Contig	ASM127096v1	na	PRJNA224116	SAMN03107533	225	43403	South Korea: Dokdo	2015-08-19	GCA_001270965.1	none	full	none	sediment 900 m below the seafloor	37 N 131 E	0	0	Sunxiuqinia dokdonensis	4270	representative genome	3	none	none	none	none	none	2015/08/19	0	1409788	1	DH1	KRIBB	1409788	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;g__Sunxiuqinia;s__Sunxiuqinia dokdonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;g__Sunxiuqinia;s__Sunxiuqinia dokdonensis	0	4962831	11	46	assembly from type material	4962831	0	LGIA00000000.1	4338	225	5532	1	1478	2730	0	100	806095	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	1517	NZ_LGIA01000015.1	1508	2785	0	100	LGIA01000015.3810.5317	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;Sunxiuqinia;Sunxiuqinia dokdonensis	0	19	46	0
+RS_GCF_000467855.2	0	98.81	0.16	475	f__Porphyromonadaceae (UID2622)	318	0	1840113	85.26083580142118	120	1197069	55.67721356492231	2158216	RS_GCF_000467855.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas sp000467855	not type material	none	f	18	3	106805	471368	2951	3	2719	NZ_KI259231.1	2951	2	106	NZ_KI259231.1	2719	5022	0	100	AWUX01000044.2.2728	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. oral taxon 278 str. W7784	17916	56795	t	f	f	37618	356430	Scaffold	ASM46785v2	na	PRJNA224116	SAMN02436880	120	37618	Finland	2013-09-16	GCA_000467855.2	none	full	none	dental plaque biofilm of the third molar	none	0	0	Porphyromonas sp. oral taxon 278 str. W7784	1656	na	7	38	3	356430	113950	48394	2013/09/16	82	712437	2	W7784	Washington University	1227272	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;x__unclassified Porphyromonas;s__Porphyromonas sp. oral taxon 278;x__Porphyromonas sp. oral taxon 278 str. W7784	8200	2158216	11	46	none	2150016	0	AWUX00000000.1	1683	38	1864	2	1488	2700	0	99.395	28623	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1525	NZ_KI259256.1	1518	2804	0	100	AWUX01000007.243.1760	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. oral taxon 278 str. W7784	8200	19	46	0
+RS_GCF_000311925.1	0	99.04	0.48	314	p__Bacteroidetes (UID2605)	208	0	2750106	86.92757631551913	59	1835320	58.54854279423408	3163675	RS_GCF_006542665.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes communis	not type material	none	f	11	1	248567	2110561	3413	1	2866	NZ_HE978579.1	3413	1	109	NZ_HE978579.1	2857	5276	0	100	CAHA01000058.474.3332	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes obesi	53130	790918	t	f	f	102014	2110561	Scaffold	ASM31192v1	na	PRJNA224116	SAMEA2272762	59	102014	France:Marseille	2012-08-16	GCA_000311925.1	none	full	none	host stool sample	none	0	0	Alistipes communis	2628	na	3	4	1	2110561	1048151	1048151	2012/08/16	55	2585118	1	ph8	URMITE CNRS UMR 6236 IRD 198	2585118	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes communis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes communis	28977	3163675	11	46	assembly from synonym type material	3134698	0	CAHA00000000.1	2614	4	1550	1	none	none	none	none	none	none	1539	NZ_CAHA01000059.1	1522	2811	0	100	CAHA01000059.20.1541	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes obesi	28977	19	46	0
+RS_GCF_000312305.1	4	95.89	0.08	567	g__Prevotella (UID2724)	296	0	3015822	73.91512249042	400	1846118	46.95543003821053	4080115	RS_GCF_000312305.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella conceptionensis	not type material	none	f	53	5	97661	599893	4888	2	2321	NZ_HE999470.1	515027	1	108	NZ_HE999444.1	2341	3954	0	97.309	LTVI01000359.6.2931	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. HMSC073D09	9829	40001	t	f	f	20951	390160	Scaffold	ASM31230v1	na	PRJNA224116	SAMEA2272768	400	20951	none	2012-10-05	GCA_000312305.1	none	full	none	none	none	0	0	Prevotella conceptionensis 9403948	3305	representative genome	4	102	5	390160	325628	119153	2012/10/05	298	340486	1	9403948	ebi	1197728	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella conceptionensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella conceptionensis;x__Prevotella conceptionensis 9403948	148472	4080115	11	46	none	3931643	0	CAJK00000000.1	3672	102	4888	1	1483	2728	0	99.865	1114570	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1526	NZ_HE999470.1	1510	2754	0	99.603	ACQH01000158.25.1534	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. oral taxon 317 str. F0108	148472	19	46	0
+RS_GCF_000296465.1	0	99.62	0	406	o__Bacteroidales (UID2617)	265	0	3070120	89.14645173242243	19	1507770	43.91086482069228	3443906	RS_GCF_000296465.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Barnesiellaceae;g__Barnesiella;s__Barnesiella intestinihominis	type strain of species	LPSN	f	3	2	853004	1217791	721957	8	1473	NZ_JH815205.1	1217791	4	104	NZ_JH815203.1	1473	2693	0	99.661	CEAO01025333.2036.4902	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Barnesiellaceae;uncultured;gut metagenome	180721	688781	f	f	t	407324	979427	Scaffold	Barn_inte_YIT_11860_V1	na	PRJNA224116	SAMN02595395	19	407324	none	2012-09-17	GCA_000296465.1	none	full	none	none	none	0	0	Barnesiella intestinihominis YIT 11860	2759	representative genome	14	5	2	979427	721957	517523	2012/09/17	14	487174	4	YIT 11860	Broad Institute	742726	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Barnesiellaceae;g__Barnesiella;s__Barnesiella intestinihominis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Barnesiellaceae;g__Barnesiella;s__Barnesiella intestinihominis;x__Barnesiella intestinihominis YIT 11860	10200	3443906	11	59	assembly from type material	3433706	0	ADLE00000000.1	2807	5	517523	4	1527	2820	0	100	4313041	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__[Barnesiellaceae];g__Barnesiella;s__intestinihominis	1528	NZ_JH815206.1	1484	2736	0	99.933	AB370251.1.1484	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Barnesiellaceae;Barnesiella;Barnesiella intestinihominis	10200	19	59	0
+RS_GCF_000166275.1	0	99.62	0	439	o__Cytophagales (UID2938)	266	0	4347238	90.79967851112553	1	1852171	38.69391675810011	4787724	RS_GCF_000166275.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus machipongonensis	type strain of species	LPSN	f	1	1	4786724	4787724	4787724	3	2861	NZ_CM001023.1	4787724	3	99	NZ_CM001023.1	2861	5284	0	100	AAXU02000001.1079271.1082137	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus machipongonensis	4786724	4787724	t	f	f	4786724	4787724	Chromosome	ASM16627v1	na	PRJNA224116	SAMN02436092	1	4786724	none	2010-11-09	GCA_000166275.1	none	full	none	none	none	1	0	Algoriphagus machipongonensis	4021	representative genome	9	1	1	4787724	4787724	4787724	2010/11/09	1	388413	3	PR1	Gordon and Betty Moore Foundation Microbial Genome Sequencing Project	388413	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus machipongonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus machipongonensis	1000	4787724	11	39	assembly from type material	4786724	0	AAXU00000000.2	4029	1	4787724	3	1518	2791	0	99.868	817445	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__;s__	1519	NZ_CM001023.1	1510	2789	0	100	AAXU02000001.1077624.1079133	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus machipongonensis	1000	19	40	0
+RS_GCF_000172175.1	0	99.25	0.37	490	o__Bacteroidales (UID2657)	268	0	5491956	90.73719772474489	8	2591051	42.80892033765346	6052596	RS_GCF_000172175.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides intestinalis	type strain of species	LPSN	f	1	1	3472993	3472993	1438659	4	2874	NZ_ABJL02000007.1	257619	4	105	NZ_ABJL02000001.1	2874	5308	0	100	ABJL02000007.1227040.1229920	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides intestinalis DSM 17393	756574	756574	t	f	f	3472993	3472993	Contig	ASM17217v1	na	PRJNA224116	SAMN00000015	8	3472993	none	2008-04-04	GCA_000172175.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides intestinalis DSM 17393	4655	na	12	none	none	none	none	none	2008/04/04	0	329854	4	DSM 17393	Washington University Genome Sequencing Center	471870	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides intestinalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides intestinalis;x__Bacteroides intestinalis DSM 17393	0	6052596	11	61	assembly from type material	6052596	0	ABJL00000000.2	4721	8	574965	4	1519	2800	0	99.934	313166	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1520	NZ_ABJL02000006.1	1511	2791	0	100	ABJL02000008.1460783.1462293	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides intestinalis DSM 17393	0	19	61	0
+RS_GCF_000421205.1	0	99.21	0	567	g__Prevotella (UID2724)	296	0	2608620	85.33809473025111	58	1531543	50.102885504953555	3056806	RS_GCF_900454835.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella denticola	type strain of species	LPSN	f	10	9	219377	219377	1059	1	731	NZ_ATWK01000056.1	17460	3	108	NZ_ATWK01000032.1	727	1253	0	97.799	CP002589.1028188.1031027	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella denticola F0289	52703	53628	f	f	t	121109	125220	Scaffold	ASM42120v1	na	PRJNA224116	SAMN02440901	58	121109	none	2013-07-09	GCA_000421205.1	none	full	none	none	none	0	0	Prevotella denticola DSM 20614 = JCM 13449	2518	na	5	57	9	125220	71343	42119	2013/07/09	1	28129	0	DSM 20614	DOE Joint Genome Institute	1122982	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella denticola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella denticola;x__Prevotella denticola DSM 20614 = JCM 13449	10	3056806	11	46	assembly from type material	3056796	0	ATWK00000000.1	2521	57	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	10	18	46	0
+RS_GCF_000426725.1	0	100	1.49	454	o__Cytophagales (UID2936)	336	0	5616019	88.52034085259805	25	2289673	36.10873593490037	6344326	RS_GCF_000426725.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__Sporocytophaga myxococcoides	type strain of species	LPSN	t	5	4	856088	1313047	5299	1	2874	NZ_AUFX01000020.1	768796	2	107	NZ_AUFX01000003.1	2870	5301	0	100	AUFX01000020.45.2918	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Sporocytophaga;Sporocytophaga myxococcoides DSM 11118	253642	302110	t	f	f	559258	594163	Scaffold	ASM42672v1	na	PRJNA224116	SAMN02441513	25	559258	Canada	2013-07-11	GCA_000426725.1	none	full	none	none	none	0	0	Sporocytophaga myxococcoides DSM 11118	5105	representative genome	5	21	4	594163	430424	209820	2013/07/11	4	153721	1	DSM 11118	DOE Joint Genome Institute	926565	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__Sporocytophaga myxococcoides	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__Sporocytophaga myxococcoides;x__Sporocytophaga myxococcoides DSM 11118	3276	6344326	11	47	assembly from type material	6341050	0	AUFX00000000.1	5180	21	5299	1	1488	2748	0	100	632011	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Sporocytophaga;s__	1522	NZ_AUFX01000020.1	1488	2748	0	100	AJ310654.1.1488	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Sporocytophaga;Sporocytophaga myxococcoides	3276	19	47	0
+RS_GCF_000007585.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	2011083	85.81624049062162	1	1131616	48.28792784735154	2343476	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	1	1	2343476	2343476	2343476	4	2889	NC_002950.2	2343476	4	106	NC_002950.2	2889	5336	0	100	CP011995.2193448.2196342	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	2343476	2343476	t	f	f	2343476	2343476	Complete Genome	ASM758v1	na	PRJNA224116	SAMN02603720	none	none	none	2003-09-02	GCA_000007585.1	none	full	none	none	none	1	0	Porphyromonas gingivalis W83	2027	na	12	1	1	2343476	2343476	2343476	2003/09/02	0	837	4	W83	Porphyromonas gingivalis Genome Project	242619	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis;x__Porphyromonas gingivalis W83	0	2343476	11	53	none	2343476	0	none	2013	1	2343476	4	none	none	none	none	none	none	1528	NC_002950.2	1528	2811	0	99.869	CP025931.2275253.2276794	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	53	0
+RS_GCF_000283015.1	0	99.34	0.71	571	s__algicola (UID2846)	303	0	3099896	91.58151515769241	51	1128330	33.33472187385612	3384849	RS_GCF_900141715.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Arenitalea;s__Arenitalea lutea	type strain of species	LPSN	t	6	6	483653	483653	3276	1	2810	NZ_ALIH01000026.1	3276	1	102	NZ_ALIH01000026.1	2810	5190	0	100	ALIH01000026.173.2993	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Arenitalea;Arenitalea lutea	66369	66369	f	f	t	240041	240041	Contig	P735.v1.0	na	PRJNA224116	SAMN02470927	51	240041	China	2012-07-30	GCA_000283015.1	none	full	none	intertidal sand of Yellow Sea	none	0	1	Arenitalea lutea	2969	na	4	none	none	none	none	none	2012/07/30	0	1178825	2	P7-3-5	Shandong University	1178825	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Arenitalea;s__Arenitalea lutea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Arenitalea;s__Arenitalea lutea	0	3384849	11	34	assembly from type material	3384849	0	ALIH00000000.1	2987	51	1370	2	924	1707	0	100	4218885	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	929	NZ_ALIH01000032.1	926	1711	0	100	JQ807811.1.1483	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Arenitalea;Arenitalea lutea	0	19	35	0
+RS_GCF_001424585.1	68	100	0	324	o__Flavobacteriales (UID2815)	204	0	3006023	89.63078719440489	15	1285601	38.333627534352935	3353784	RS_GCF_001424585.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium sp001424585	not type material	none	f	2	2	1537922	1537922	1537922	1	2756	NZ_LMPJ01000001.1	1537922	2	101	NZ_LMPJ01000001.1	2756	5090	0	100	LMPJ01000001.791422.794190	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. Leaf180	223585	223585	t	f	f	436909	436909	Contig	Leaf180	na	PRJNA224116	SAMN04151669	15	436909	Switzerland: Zurich	2015-11-02	GCA_001424585.1	none	full	none	leaf	47.4816806 N 8.21754722 E	0	0	Chryseobacterium sp. Leaf180	3084	na	4	none	none	none	none	none	2015/11/02	0	1736289	1	Leaf180	Max Planck Institute for Plant Breeding Research	1736289	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. Leaf180	0	3353784	11	48	none	3353784	0	LMPJ00000000.1	3123	15	1537922	1	1385	2516	0	99.495	262464	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1514	NZ_LMPJ01000001.1	1514	2796	0	100	LMPJ01000001.794833.796355	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. Leaf180	0	19	47	0
+RS_GCF_000833025.1	0	99.65	0.29	511	f__Flavobacteriaceae (UID2817)	283	0	3500148	86.11437375108684	1	1375674	33.84579880497986	4064534	RS_GCF_000833025.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium profundi_A	type strain of species	LPSN	f	1	1	4064534	4064534	4064534	5	2878	NZ_CP010817.1-#2	4064534	5	105	NZ_CP010817.1	2878	5315	0	100	CP010817.798174.801065	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides profundi	4064534	4064534	t	f	f	4064534	4064534	Complete Genome	ASM83302v1	na	PRJNA224116	SAMN03282272	none	none	China	2015-02-05	GCA_000833025.1	none	full	none	Sediment	24.78 N 122.48 E	1	1	Myroides profundi	3516	representative genome	15	1	1	4064534	4064534	4064534	2015/02/05	0	480520	5	D25	Shandong University	480520	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides profundi	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides profundi	0	4064534	11	104	assembly from type material	4064534	0	none	3580	1	4064534	5	none	none	none	none	none	none	1514	NZ_CP010817.1	1506	2782	0	100	CP010817.796239.797744	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides profundi	0	19	104	0
+RS_GCF_000700805.1	0	98.87	0	475	f__Porphyromonadaceae (UID2622)	318	0	1896744	86.05127842185063	8	1227342	55.70188416873467	2204202	RS_GCF_014647755.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas pasteri	not type material	none	f	2	2	937136	938995	938995	1	2882	NZ_KL362962.1	116683	3	105	NZ_KL362967.1	2882	5323	0	100	JNOS01000002.933313.936205	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. KLE 1280	275426	314886	f	f	t	403144	403144	Scaffold	ASM70080v1	na	PRJNA224116	SAMN02849569	8	403144	none	2014-06-11	GCA_000700805.1	none	full	none	oral	none	0	0	Porphyromonas sp. KLE 1280	1656	na	11	7	2	403144	269304	198575	2014/06/11	1	997829	6	KLE 1280	Washington University Genome Center	997829	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;x__unclassified Porphyromonas;s__Porphyromonas sp. KLE 1280	790	2204202	11	47	none	2203412	0	JNOS00000000.1	1686	7	938995	3	1062	1945	0	99.718	970138	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1063	NZ_KL362962.1	1063	1953	0	99.812	LC014934.1.1491	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas pasteri	790	19	47	0
+RS_GCF_000159075.2	0	98.81	0.43	839	g__Bacteroides (UID2691)	309	0	6319701	91.31912820208261	69	2883501	41.700684492600395	6920457	RS_GCF_014334015.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides intestinigallinarum	not type material	none	f	9	4	612263	1416020	661466	2	1087	NZ_JH636020.1	661466	6	106	NZ_JH636020.1	1086	2001	0	99.908	LT622246.643303.646180	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus V975	100213	576704	f	f	t	213049	885347	Scaffold	Bact_sp_D2_V2	na	PRJNA224116	SAMN02463697	69	213049	none	2012-04-11	GCA_000159075.2	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides sp. D2	5239	na	10	12	4	885347	661466	278376	2012/04/11	57	556259	1	D2	Broad Institute	556259	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. D2	5700	6920457	11	68	none	6914757	0	ACGA00000000.2	5297	12	937218	1	631	1144	0	99.366	187443	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__ovatus	637	NZ_JH636017.1	637	1171	0	99.843	CP012938.3352663.3354184	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus	5700	19	62	0
+RS_GCF_000468615.2	0	99.67	0.71	571	s__algicola (UID2846)	303	0	4193159	90.46524296644844	1	1607501	34.68100506892509	4635105	RS_GCF_900102165.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga baltica	not type material	none	f	1	1	4635105	4635105	4635105	4	2821	NZ_CP009976.1	4635105	4	107	NZ_CP009976.1	2821	5210	0	100	CP009976.850748.853583	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga baltica 18	4635105	4635105	t	f	f	4635105	4635105	Complete Genome	ASM46861v2	na	PRJNA224116	SAMN02208949	none	none	Denmark: Oresund	2014-12-09	GCA_000468615.2	none	full	none	seawater	none	1	1	Cellulophaga baltica 18	3909	representative genome	12	1	1	4635105	4635105	4635105	2014/12/09	0	76594	4	18	University of Arizona	1348584	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga baltica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga baltica;x__Cellulophaga baltica 18	0	4635105	11	42	none	4635105	0	none	3971	1	4635105	4	none	none	none	none	none	none	1515	NZ_CP009976.1	1515	2798	0	100	CP009887.407810.409335	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga baltica NN016038	0	19	43	0
+RS_GCF_000708285.2	0	97.61	0.48	315	p__Bacteroidetes (UID2605)	209	0	4705389	84.85950285639983	216	2127867	38.375091998671934	5544917	RS_GCF_000708285.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter borealis	type strain of species	LPSN	f	35	35	202646	202646	3626	1	2868	NZ_JAUG01000173.1	3626	1	107	NZ_JAUG01000173.1	2868	5297	0	100	JAUG01000173.264.3138	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter borealis DSM 19626	25670	25670	t	f	f	47779	47779	Contig	Genome Assembly for Pedobacter borealis DSM19626	na	PRJNA224116	SAMN02597035	216	47779	USA: Western Montana	2014-06-16	GCA_000708285.2	none	full	none	Forest soil	none	0	0	Pedobacter borealis DSM 19626	4690	representative genome	3	none	none	none	none	none	2014/06/16	0	475254	1	DSM 19626	GCAT-SEEK	1454007	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter borealis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter borealis;x__Pedobacter borealis DSM 19626	0	5544917	11	50	assembly from type material	5544917	0	JAUG00000000.1	4813	216	2618	1	none	none	none	none	none	none	1519	NZ_JAUG01000180.1	1519	2636	0	97.959	LMKM01000001.61.1587	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. Leaf216	0	19	50	0
+RS_GCF_000455605.1	0	99.29	0.07	511	f__Flavobacteriaceae (UID2817)	283	0	2734512	91.36086497929062	1	939339	31.383597347088575	2993089	RS_GCF_000455605.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium indicum	type strain of species	LPSN	f	1	1	2993089	2993089	2993089	4	2864	NC_017025.1	2993089	4	105	NC_017025.1	2864	5289	0	100	HE774682.1011629.1014504	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium indicum GPTSA100-9 = DSM 17447	2993089	2993089	t	f	f	2993089	2993089	Complete Genome	GPTSA100-9	na	PRJNA224116	SAMEA3138809	none	none	none	2012-03-15	GCA_000455605.1	none	full	none	none	none	1	0	Flavobacterium indicum GPTSA100-9 = DSM 17447	2703	representative genome	12	1	1	2993089	2993089	2993089	2012/03/15	0	312277	4	GPTSA100-9	French National Institute for Agricultural Research	1094466	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium indicum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium indicum;x__Flavobacterium indicum GPTSA100-9 = DSM 17447	0	2993089	11	60	assembly from type material	2993089	0	none	2738	1	2993089	4	none	none	none	none	none	none	1512	NC_017025.1	1504	2778	0	100	HE774682.1009665.1011168	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium indicum GPTSA100-9 = DSM 17447	0	19	59	0
+RS_GCF_000764815.1	0	94.59	0.38	496	s__algicola (UID2847)	263	0	2947808	90.45530087859052	50	1142362	35.05408032757508	3258856	RS_GCF_000732625.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	not type material	none	f	4	4	774464	774464	5809	1	2830	NZ_BBNT01000027.1	5809	1	108	NZ_BBNT01000027.1	2830	5227	0	100	BBNT01000027.454.3331	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens ulvanivorans	65177	65177	t	f	f	235448	235448	Contig	ASM76481v1	na	PRJNA224116	SAMD00017320	50	235448	none	2014-10-02	GCA_000764815.1	none	full	none	none	none	0	1	Nonlabens ulvanivorans	3068	na	3	none	none	none	none	none	2014/10/02	0	906888	1	JCM 19275	The University of Tokyo	906888	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	0	3258856	11	32	none	3258856	0	BBNT00000000.1	3649	50	5809	1	1421	2490	0	98.522	835067	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1545	NZ_BBNT01000027.1	1542	2848	0	100	BBNT01000027.3888.5431	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens ulvanivorans	0	19	32	0
+RS_GCF_000614065.1	0	95.35	0	567	g__Prevotella (UID2724)	296	0	2117307	83.14220989559057	41	1287970	50.57588345914116	2546609	RS_GCF_000614065.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella dentasini	type strain of species	LPSN	f	9	9	197911	197911	3410	1	2895	NZ_BAKG01000036.1	3410	1	107	NZ_BAKG01000036.1	2895	5347	0	100	BAKG01000036.150.3051	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella dentasini JCM 15908	62112	62112	t	f	f	104092	104092	Contig	ASM61406v1	na	PRJNA224116	SAMD00015869	41	104092	none	2014-03-31	GCA_000614065.1	none	full	none	none	none	0	0	Prevotella dentasini JCM 15908	2118	representative genome	3	none	none	none	none	none	2014/03/31	0	589537	1	JCM 15908	The University of Tokyo	1236509	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella dentasini	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella dentasini;x__Prevotella dentasini JCM 15908	0	2546609	11	51	assembly from type material	2546609	0	BAKG00000000.1	2510	41	1873	1	1516	2782	0	99.802	528418	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1529	NZ_BAKG01000039.1	1516	2782	0	99.802	AB477014.1.1525	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella dentasini	0	18	51	0
+RS_GCF_000177055.1	5	99.29	0.54	530	g__Prevotella (UID2721)	280	0	2405357	86.02644357234644	72	1179956	42.20063789715679	2796067	RS_GCF_000762405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella timonensis_A	not type material	none	f	9	9	259810	259810	2240	2	2197	NZ_ADEF01000050.1	1609	1	109	NZ_ADEF01000017.1	2197	4058	0	100	ADEF01000050.1.2207	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella timonensis CRIS 5C-B1	38834	38834	t	f	f	102109	102109	Contig	ASM17705v1	na	PRJNA224116	SAMN00003362	72	102109	none	2009-12-15	GCA_000177055.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Prevotella timonensis CRIS 5C-B1	2263	na	4	none	none	none	none	none	2009/12/15	0	386414	1	CRIS 5C-B1	JCVI	679189	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella timonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella timonensis;x__Prevotella timonensis CRIS 5C-B1	0	2796067	11	50	none	2796067	0	ADEF00000000.1	2355	72	1727	1	1528	2822	0	100	851917	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1529	NZ_ADEF01000012.1	1490	2741	0	99.866	AB547706.1.1493	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella timonensis	0	19	49	0
+RS_GCF_000177315.1	1	99.66	0	567	g__Prevotella (UID2724)	296	0	2119418	87.41915632197562	121	964160	39.76850650730006	2424432	RS_GCF_000262545.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella bivia	type strain of species	LPSN	f	16	16	182934	182934	2936	1	2900	NZ_ADFO01000030.1	46178	1	108	NZ_ADFO01000051.1	2900	5345	0	99.931	AJVZ01000001.46134.49040	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bivia DSM 20514	20036	20036	t	f	f	48627	48627	Contig	ASM17731v1	na	PRJNA224116	SAMN00008342	121	48627	none	2009-12-30	GCA_000177315.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Prevotella bivia JCVIHMP010	2086	na	3	none	none	none	none	none	2009/12/30	0	28125	1	JCVIHMP010	J. Craig Venter Institute	553171	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bivia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bivia;x__Prevotella bivia JCVIHMP010	0	2424432	11	45	assembly from type material	2424432	0	ADFO00000000.1	2118	121	1687	1	1525	2817	0	100	610043	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1526	NZ_ADFO01000096.1	1509	2787	0	100	AJVZ01000014.101467.102975	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bivia DSM 20514	0	18	45	0
+RS_GCF_000154725.1	0	99.48	0.61	571	s__algicola (UID2846)	303	0	4408038	87.58046932633755	34	1719964	34.26335043614971	5033129	RS_GCF_000154725.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__Kordia algicida	type strain of species	LPSN	t	4	1	829922	5033129	5033129	3	2806	NZ_DS544873.1	5033129	3	104	NZ_DS544873.1	2804	5179	0	100	ABIB01000004.175237.178043	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Kordia;Kordia algicida OT-1	147642	5033129	t	f	f	361838	5033129	Scaffold	ASM15472v1	na	PRJNA224116	SAMN02436147	34	361838	none	2007-11-30	GCA_000154725.1	none	full	none	none	none	0	1	Kordia algicida OT-1	4291	representative genome	9	1	1	5033129	5033129	5033129	2007/11/30	33	221066	3	OT-1	The Gordon and Betty Moore Foundation Microbial Genome Sequencing Project	391587	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__Kordia algicida	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__Kordia algicida;x__Kordia algicida OT-1	13293	5033129	11	61	assembly from type material	5019836	0	ABIB00000000.1	4421	1	5033129	3	1517	2791	0	99.868	250787	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__	1518	NZ_DS544873.1	1518	2804	0	100	ABIB01000004.173158.174678	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Kordia;Kordia algicida OT-1	13293	19	60	0
+RS_GCF_000196315.1	0	99.62	0.19	496	s__algicola (UID2847)	263	0	2739498	92.77119041829864	1	1001055	33.90002986831527	2952962	RS_GCF_000196315.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceibacter;s__Croceibacter atlanticus	type strain of species	LPSN	t	1	1	2952962	2952962	2952962	2	2809	NC_014230.1	2952962	2	87	NC_014230.1	2808	5186	0	100	CP002046.2127326.2130136	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Croceibacter;Croceibacter atlanticus HTCC2559	2952962	2952962	t	f	f	2952962	2952962	Complete Genome	ASM19631v1	na	PRJNA224116	SAMN02603922	none	none	none	2010-06-09	GCA_000196315.1	none	full	none	none	none	1	1	Croceibacter atlanticus HTCC2559	2657	representative genome	6	1	1	2952962	2952962	2952962	2010/06/09	0	313588	2	HTCC2559	The Gordon and Betty Moore Foundation Marine Microbiology Initiative	216432	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceibacter;s__Croceibacter atlanticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceibacter;s__Croceibacter atlanticus;x__Croceibacter atlanticus HTCC2559	0	2952962	11	36	assembly from type material	2952962	0	none	2680	1	2952962	2	none	none	none	none	none	none	1523	NC_014230.1	1519	2806	0	100	CP002046.1256106.1257626	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Croceibacter;Croceibacter atlanticus HTCC2559	0	19	36	0
+RS_GCF_000598905.1	0	98.88	1.21	492	o__Bacteroidales (UID2657)	269	100	4690532	88.8010024855781	148	2273769	43.046922315129805	5282071	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	9	9	426431	426431	3791	7	1301	NZ_JGEF01000044.1	193905	7	106	NZ_JGEF01000037.1	1301	2392	0	99.846	FQ312004.5288193.5291018	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis 638R	35689	35689	f	f	t	197071	197071	Contig	ASM59890v1	na	PRJNA224116	SAMN02314420	148	197071	USA	2014-03-20	GCA_000598905.1	none	full	none	stool	none	0	0	Bacteroides fragilis str. 20793-3	4671	na	22	none	none	none	none	none	2014/03/20	0	817	4	20793-3	IGS	1339279	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 20793-3	0	5282071	11	89	none	5282071	0	JGEF00000000.1	4489	148	3791	3	1525	2789	0	99.672	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGEF01000044.1	1526	2808	0	99.869	CP012706.2989623.2991162	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	88	0
+RS_GCF_000424185.1	0	98.92	0.34	567	g__Prevotella (UID2724)	296	0	2611872	89.80501523012288	50	1496824	51.48406420408384	2908381	RS_GCF_000424185.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp000424185	not type material	none	f	7	7	322084	322084	1045	2	1039	NZ_AUJK01000049.1	321021	5	107	NZ_AUJK01000002.1	1045	1314	0	89.569	BAJD01000041.136.3027	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella albensis DSM 11370 = JCM 12258	58147	59354	f	f	t	140993	140993	Scaffold	ASM42418v1	na	PRJNA224116	SAMN02440817	50	140993	none	2013-07-11	GCA_000424185.1	none	full	none	none	none	0	0	Prevotella sp. AGR2160	2464	na	13	49	7	140993	71125	34744	2013/07/11	1	1280674	2	AGR2160	DOE Joint Genome Institute	1280674	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. AGR2160	1027	2908381	11	55	none	2907354	0	AUJK00000000.1	2489	49	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1027	19	55	0
+RS_GCF_000599125.1	0	99.26	0.31	492	o__Bacteroidales (UID2657)	269	50	5095957	89.04250714783575	294	2501738	43.71328560013601	5723061	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	34	34	260344	260344	4184	8	1699	NZ_JGDJ01000279.1	71480	6	106	NZ_JGDJ01000228.1	1699	3133	0	99.941	JGEP01000085.66976.69860	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. S36L12	19466	19466	f	f	t	51465	51465	Contig	ASM59912v1	na	PRJNA224116	SAMN02315066	294	51465	USA	2014-03-20	GCA_000599125.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. S36L11	5294	na	23	none	none	none	none	none	2014/03/20	0	817	6	S36L11	IGS	1339327	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. S36L11	0	5723061	11	98	none	5723061	0	JGDJ00000000.1	5120	294	48460	6	1525	2795	0	99.738	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGDJ01000250.1	1526	2813	0	99.934	CR626927.5128421.5129953	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis NCTC 9343	0	19	96	0
+RS_GCF_000380985.1	0	99.45	0.55	273	k__Bacteria (UID2570)	183	0	4288626	89.78232429842153	39	2060567	43.145844334939056	4776693	RS_GCF_000380985.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__Proteiniphilum acetatigenes	type strain of species	LPSN	t	5	5	628319	628319	628319	2	2914	NZ_KB905692.1	628319	2	107	NZ_KB905692.1	2905	5365	0	100	ARKZ01000024.99493.102399	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Proteiniphilum;Proteiniphilum acetatigenes DSM 18083	122456	129099	t	f	f	387664	427890	Scaffold	ASM38098v1	na	PRJNA224116	SAMN02440983	39	387664	China	2013-04-24	GCA_000380985.1	none	full	none	none	none	0	0	Proteiniphilum acetatigenes DSM 18083	3740	representative genome	6	37	5	427890	141840	73542	2013/04/24	2	294710	2	DSM 18083	DOE Joint Genome Institute	1123008	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__Proteiniphilum acetatigenes	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__Proteiniphilum acetatigenes;x__Proteiniphilum acetatigenes DSM 18083	875	4776693	11	50	assembly from type material	4775818	0	ARKZ00000000.1	3874	37	628319	2	1522	2795	0	99.803	1133162	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Proteiniphilum;s__acetatigenes	1528	NZ_KB905692.1	1523	2796	0	99.803	AY742226.1.1523	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Proteiniphilum;Proteiniphilum acetatigenes	875	19	49	0
+RS_GCF_000821285.2	15	99.12	0.48	314	p__Bacteroidetes (UID2605)	208	0	3234827	89.5175562032896	24	2106635	58.338103375750016	3613623	GB_GCA_025145285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii	not type material	none	f	5	2	711299	1154571	796479	1	2864	NZ_LN609286.1	796479	1	109	NZ_LN609286.1	2864	5289	0	100	CCIZ01000012.223558.226427	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. AL-1	150462	516231	t	f	f	224210	1136134	Scaffold	Alistipes jeddahmassiliense str. AL-1	na	PRJNA224116	SAMEA2697687	24	224210	none	2014-09-25	GCA_000821285.2	none	full	human stool	none	none	0	0	Alistipes sp. AL-1	2914	na	4	7	2	1136134	796479	520198	2014/09/25	17	1499682	2	human stool	URMITE	1499682	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__unclassified Alistipes;s__Alistipes sp. AL-1	2529	3613623	11	49	none	3611094	0	CCXE00000000.1	2905	7	796479	2	1486	2739	0	99.933	607515	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__onderdonkii	1525	NZ_LN609286.1	1508	2780	0	99.934	ARFY01000017.91797.93304	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes onderdonkii WAL 8169 = DSM 19147	2529	19	49	0
+RS_GCF_000732625.1	0	98.54	0	496	s__algicola (UID2847)	263	0	2966509	92.37461037120997	59	1124335	35.01237835733749	3211390	RS_GCF_000732625.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	type strain of species	LPSN	f	2	1	1102182	1660217	1660217	1	2801	NZ_JPJI01000032.1	1660217	1	105	NZ_JPJI01000032.1	2801	5173	0	100	JPJI01000032.1303880.1306697	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens ulvanivorans	54427	71364	t	f	f	525013	1660217	Scaffold	ASM73262v1	na	PRJNA224116	SAMN02911279	59	525013	France: Brittany	2014-07-22	GCA_000732625.1	none	full	none	water	48.858794 N 3.078735 W	0	1	Nonlabens ulvanivorans	2894	na	3	45	1	1660217	323720	102728	2014/07/22	14	906888	1	PLR	Bar Ilan university	906888	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	140	3211390	11	33	assembly from type material	3211250	0	JPJI00000000.1	2944	45	1660217	1	none	none	none	none	none	none	1522	NZ_JPJI01000032.1	1534	2743	0	99.087	BBLG01000025.3889.5428	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens ulvanivorans	140	19	33	0
+RS_GCF_000576555.1	0	99.85	0.3	454	o__Cytophagales (UID2936)	336	0	4563087	86.881686649264	4	3131507	59.62424339355721	5252070	RS_GCF_000576555.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter swuensis	type strain of species	LPSN	f	1	1	4904241	4904241	4904241	3	2897	NZ_CP007145.1	none	0	none	none	2897	5350	0	100	CP007145.3429875.3432780	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter swuensis DY53	1313017	1313017	f	f	t	4904241	4904241	Complete Genome	ASM57655v1	na	PRJNA224116	SAMN03081528	none	none	none	2014-02-24	GCA_000576555.1	none	full	none	none	none	4	0	Hymenobacter swuensis DY53	4410	representative genome	8	4	1	4904241	4904241	4904241	2014/02/24	0	1446467	3	DY53	Korea Atomic Energy Research Institute	1227739	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter swuensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter swuensis;x__Hymenobacter swuensis DY53	0	5252070	11	44	assembly from type material	5252070	0	none	4496	4	4904241	3	none	none	none	none	none	none	1510	NZ_CP007145.1	1506	2782	0	100	CP007145.3433015.3434520	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter swuensis DY53	0	19	44	0
+RS_GCF_000430665.1	0	99.62	0	496	s__algicola (UID2847)	263	0	4259341	86.86825940264957	107	1536017	31.344592638061098	4903219	RS_GCF_000430665.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina muelleri	type strain of species	LPSN	t	15	14	285581	285581	3706	2	1441	NZ_AUML01000082.1	10532	2	105	NZ_AUML01000064.1	1442	2283	0	95.354	JACC01000015.121250.124056	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina pacifica	45798	48546	f	f	t	110620	111999	Scaffold	ASM43066v1	na	PRJNA224116	SAMN02441476	107	110620	none	2013-07-16	GCA_000430665.1	none	full	none	none	none	0	1	Aquimarina muelleri DSM 19832	4054	na	5	101	14	111999	68244	34725	2013/07/16	6	279356	1	DSM 19832	DOE Joint Genome Institute	1121007	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina muelleri	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina muelleri;x__Aquimarina muelleri DSM 19832	2798	4903219	11	40	assembly from type material	4900421	0	AUML00000000.1	4115	101	3706	1	1375	2540	0	100	543250	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__	1433	NZ_AUML01000082.1	1420	2623	0	100	AUML01000082.2270.3705	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina muelleri DSM 19832	2798	19	40	0
+RS_GCF_000152985.1	0	99.05	0	496	s__algicola (UID2847)	263	0	3824105	90.09415570264562	15	1684966	39.75790838507668	4244565	RS_GCF_000152985.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella blandensis	type strain of species	LPSN	f	4	1	881118	4244565	4244565	3	2805	NZ_CH672395.1	4244565	3	103	NZ_CH672395.1	2805	5123	0	99.643	FQXT01000012.341.3160	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Leeuwenhoekiella;Leeuwenhoekiella palythoae	282537	4244565	t	f	f	392634	4244565	Scaffold	ASM15298v1	na	PRJNA224116	SAMN02436111	15	392634	none	2006-04-07	GCA_000152985.1	none	full	none	none	none	0	1	Leeuwenhoekiella blandensis MED217	3647	representative genome	6	1	1	4244565	4244565	4244565	2006/04/07	14	360293	1	MED217	The Gordon and Betty Moore Foundation Marine Microbiology Initiative	398720	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella blandensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella blandensis;x__Leeuwenhoekiella blandensis MED217	6500	4244565	11	38	assembly from type material	4238065	0	AANC00000000.1	3669	1	4244565	4	1524	2815	0	100	148201	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__marinoflava	1525	NZ_CH672395.1	1525	2817	0	100	AANC01000011.208.1734	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Leeuwenhoekiella;Leeuwenhoekiella blandensis MED217	6500	18	38	0
+RS_GCF_000599085.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4499077	89.28702976765527	308	2184266	43.348140821434555	5038892	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	22	22	231806	231806	1517	10	1517	NZ_JGDF01000096.1	175749	8	106	NZ_JGDF01000095.1	1517	2802	0	100	AGXK01000001.45.2929	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis CL03T00C08	16360	16360	f	f	t	61167	61167	Contig	ASM59908v1	na	PRJNA224116	SAMN02314418	308	61167	Bangladesh	2014-03-20	GCA_000599085.1	none	full	none	stool	none	0	0	Bacteroides fragilis str. DS-71	4408	na	31	none	none	none	none	none	2014/03/20	0	817	6	DS-71	IGS	1339277	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. DS-71	0	5038892	11	87	none	5038892	0	JGDF00000000.1	4232	308	54414	3	1525	2784	0	99.607	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGDF01000145.1	1526	2780	0	99.541	FQ312004.3903056.3904588	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis 638R	0	19	90	0
+RS_GCF_000509245.1	0	99.45	0	475	f__Porphyromonadaceae (UID2622)	318	0	1775892	86.8486687284699	118	926625	45.31590190198415	2044812	RS_GCF_900167225.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	type strain of species	LPSN	f	15	15	142369	142369	6365	1	2863	NZ_BAOU01000050.1	6365	1	105	NZ_BAOU01000050.1	2863	5282	0	99.965	LS483447.1494630.1497506	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas crevioricanis	17328	17328	t	f	f	46040	46040	Contig	ASM50924v1	na	PRJNA224116	SAMD00036671	118	46040	none	2013-06-14	GCA_000509245.1	none	full	none	none	none	0	0	Porphyromonas crevioricanis JCM 15906	1739	na	3	none	none	none	none	none	2013/06/14	0	393921	1	JCM 15906	Microbe Division/Japan Collection of Microorganisms, RIKEN BioResource Center	1305617	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis;x__Porphyromonas crevioricanis JCM 15906	0	2044812	11	48	assembly from type material	2044812	0	BAOU00000000.1	1773	118	6365	1	1489	2750	0	100	643126	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_BAOU01000050.1	1519	2800	0	99.934	LS483447.316388.317906	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas crevioricanis	0	19	48	0
+RS_GCF_000023825.1	0	100	0.48	314	p__Bacteroidetes (UID2605)	209	0	4802902	92.94650696493757	1	2172827	42.048886254415436	5167383	RS_GCF_000023825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter heparinus	type strain of species	LPSN	t	1	1	5167383	5167383	5167383	3	2870	NC_013061.1	5167383	3	106	NC_013061.1	2870	5301	0	100	CP001681.1370587.1373464	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter heparinus DSM 2366	5167383	5167383	t	f	f	5167383	5167383	Complete Genome	ASM2382v1	na	PRJNA224116	SAMN02598456	none	none	none	2009-08-05	GCA_000023825.1	none	full	none	none	none	1	0	Pedobacter heparinus DSM 2366	4238	representative genome	9	1	1	5167383	5167383	5167383	2009/08/05	0	984	3	DSM 2366	US DOE Joint Genome Institute (JGI-PGF)	485917	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter heparinus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter heparinus;x__Pedobacter heparinus DSM 2366	0	5167383	11	46	assembly from type material	5167383	0	none	4272	1	5167383	3	none	none	none	none	none	none	1519	NC_013061.1	1510	2789	0	100	CP001681.4306042.4307551	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter heparinus DSM 2366	0	19	46	0
+RS_GCF_000348925.1	17	96.35	0.6	454	o__Cytophagales (UID2936)	336	0	4171073	87.62839404397856	237	2598802	54.597380344580046	4759956	RS_GCF_000348925.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Cesiribacter;s__Cesiribacter andamanensis	type strain of species	LPSN	t	46	46	118810	118810	3059	1	2894	NZ_AODQ01000217.1	87272	2	107	NZ_AODQ01000004.1	2894	5345	0	100	AODQ01000217.51.2953	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cesiribacter;Cesiribacter andamanensis AMV16	20084	20084	f	f	t	31683	31683	Contig	CeAn1	na	PRJNA224116	SAMN02469440	237	31683	India: Andaman Islands	2013-03-25	GCA_000348925.1	none	full	none	mud volcano soil sample	none	0	0	Cesiribacter andamanensis AMV16	4166	representative genome	4	none	none	none	none	none	2013/03/25	0	649507	1	AMV16	Centre for Cellular and Molecular Biology	1279009	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cesiribacteraceae;g__Cesiribacter;s__Cesiribacter andamanensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cesiribacteraceae;g__Cesiribacter;s__Cesiribacter andamanensis;x__Cesiribacter andamanensis AMV16	0	4759956	11	33	assembly from type material	4759956	0	AODQ00000000.1	4300	237	1998	1	1501	2772	0	100	376180	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flammeovirgaceae;g__Cesiribacter;s__andamanensis	1517	NZ_AODQ01000227.1	1501	2772	0	100	FN396961.1.1502	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cesiribacter;Cesiribacter andamanensis	0	17	34	0
+RS_GCF_000520955.1	0	99.62	0.76	496	s__algicola (UID2847)	263	0	4588265	87.18351011929656	145	1762471	33.48943626043106	5262767	RS_GCF_000520955.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina pacifica	type strain of species	LPSN	f	14	14	293709	293709	124110	1	2807	NZ_JACC01000015.1	278	1	105	NZ_JACC01000017.1	2804	5179	0	100	JACC01000015.121250.124056	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina pacifica	36294	36294	t	f	f	134809	134809	Contig	of Aquimarina pacifica	na	PRJNA224116	SAMN02597432	145	134809	none	2014-01-16	GCA_000520955.1	none	full	none	none	none	0	1	Aquimarina pacifica	4250	representative genome	3	none	none	none	none	none	2014/01/16	0	1296415	1	SW150	ocean university of China	1296415	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina pacifica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina pacifica	0	5262767	11	41	assembly from type material	5262767	0	JACC00000000.1	4385	145	124110	1	1469	2555	0	98.094	766249	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__	1518	NZ_JACC01000015.1	1480	2715	0	99.797	KC476291.1.1483	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina pacifica	0	19	41	0
+RS_GCF_000598605.1	0	98.88	11.9	492	o__Bacteroidales (UID2657)	269	95.08	5297568	89.15261756130037	85	2578338	43.39077509864301	5942134	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	9	9	574105	574105	2168	8	1429	NZ_JGDR01000055.1	175499	6	106	NZ_JGDR01000054.1	1431	2625	0	99.79	ACPP01000056.328.3214	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. 2_1_16	69907	69907	f	f	f	243728	243728	Contig	ASM59860v1	na	PRJNA224116	SAMN02314531	85	243728	USA	2014-03-20	GCA_000598605.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3783N1-8	5264	na	19	none	none	none	none	none	2014/03/20	0	817	5	3783N1-8	IGS	1339311	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3783N1-8	0	5942134	11	82	none	5942134	0	JGDR00000000.1	5050	85	40744	3	267	494	1.19e-138	100	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	268	NZ_JGDR01000067.1	268	496	8.51e-139	100	CR626927.5128421.5129953	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis NCTC 9343	0	19	84	0
+RS_GCF_000613985.1	0	99	0.34	567	g__Prevotella (UID2724)	296	0	2266735	85.61884696042111	22	1015584	38.36051901587628	2647472	RS_GCF_000379965.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella nanceiensis	type strain of species	LPSN	f	3	3	769009	769009	5350	1	2893	NZ_BAKD01000013.1	5350	1	109	NZ_BAKD01000013.1	2895	5217	0	99.206	CP003666.217636.220538	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. oral taxon 299 str. F0039	120339	120339	t	f	f	245284	245284	Contig	ASM61398v1	na	PRJNA224116	SAMD00015843	22	245284	none	2014-03-31	GCA_000613985.1	none	full	none	none	none	0	0	Prevotella nanceiensis DSM 19126 = JCM 15639	2032	na	3	none	none	none	none	none	2014/03/31	0	425941	1	JCM 15639	The University of Tokyo	1122988	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella nanceiensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella nanceiensis;x__Prevotella nanceiensis DSM 19126 = JCM 15639	0	2647472	11	43	assembly from type material	2647472	0	BAKD00000000.1	2263	22	5350	1	1486	2732	0	99.865	789850	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__nanceiensis	1524	NZ_BAKD01000013.1	1517	2739	0	99.275	CP003666.348540.350056	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. oral taxon 299 str. F0039	0	19	43	0
+RS_GCF_000183155.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	1951747	90.56322127620676	1	754510	35.01009920092654	2155121	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	type strain of species	LPSN	t	1	1	2155121	2155121	2155121	3	2738	NC_014738.1	2155121	3	101	NC_014738.1	2738	5057	0	100	CP002346.1679448.1682195	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer ATCC 11845 = DSM 15868	2155121	2155121	t	f	f	2155121	2155121	Complete Genome	ASM18315v1	na	PRJNA224116	SAMN00138930	none	none	USA	2010-11-23	GCA_000183155.1	none	full	none	blood	none	1	0	Riemerella anatipestifer ATCC 11845 = DSM 15868	1998	na	9	1	1	2155121	2155121	2155121	2010/11/23	0	34085	3	DSM 15868	US DOE Joint Genome Institute (JGI-PGF)	693978	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer;x__Riemerella anatipestifer ATCC 11845 = DSM 15868	0	2155121	11	40	assembly from type material	2155121	0	none	2008	1	2155121	3	none	none	none	none	none	none	1513	NC_014738.1	1513	2789	0	99.934	CP007204.912680.914202	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer Yb2	0	19	40	0
+RS_GCF_000024005.1	0	99.51	0.74	303	p__Bacteroidetes (UID2591)	203	0	8117236	88.9331368687966	1	4128036	45.227118022356336	9127347	RS_GCF_000024005.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga pinensis	type strain of species	LPSN	t	1	1	9127347	9127347	9127347	6	2873	NC_013132.1	9127347	6	100	NC_013132.1	2873	5306	0	100	CP001699.1729370.1732248	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;Chitinophaga pinensis DSM 2588	9127347	9127347	t	f	f	9127347	9127347	Complete Genome	ASM2400v1	na	PRJNA224116	SAMN00001914	none	none	none	2009-08-19	GCA_000024005.1	none	full	none	none	none	1	0	Chitinophaga pinensis DSM 2588	7262	representative genome	18	1	1	9127347	9127347	9127347	2009/08/19	0	79329	6	DSM 2588	US DOE Joint Genome Institute (JGI-PGF)	485918	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga pinensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga pinensis;x__Chitinophaga pinensis DSM 2588	0	9127347	11	71	assembly from type material	9127347	0	none	7309	1	9127347	6	none	none	none	none	none	none	1523	NC_013132.1	1514	2796	0	100	CP001699.1700268.1701781	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;Chitinophaga pinensis DSM 2588	0	19	73	0
+RS_GCF_000768935.1	29	98.51	0.31	475	f__Porphyromonadaceae (UID2622)	318	0	2024605	86.40810593609332	82	1164191	49.68711641778814	2343073	RS_GCF_000769075.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas sp000769075	not type material	none	f	14	14	151219	151219	73005	1	2871	NZ_JRAR01000007.1	73005	1	104	NZ_JRAR01000007.1	2871	5302	0	100	JRAR01000007.218.3098	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. COT-290 OH860	28574	28574	t	f	f	60215	60215	Contig	ASM76893v1	na	PRJNA224116	SAMN03002890	82	60215	United Kingdom: Leicestershire	2014-10-27	GCA_000768935.1	none	full	none	dog mouth	none	0	0	Porphyromonas sp. COT-290 OH860	1789	na	3	none	none	none	none	none	2014/10/27	0	1515615	1	COT-290 OH860	UC Davis	1515615	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;x__unclassified Porphyromonas;s__Porphyromonas sp. COT-290 OH860	0	2343073	11	45	none	2343073	0	JRAR00000000.1	1880	82	72973	1	1442	2641	0	99.723	4387396	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1491	NZ_JRAR01000058.1	1491	2754	0	100	JRAR01000058.52184.53687	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. COT-290 OH860	0	19	45	0
+RS_GCF_000565015.1	1	95.05	0	475	f__Porphyromonadaceae (UID2622)	318	0	1758029	86.17071126425739	25	1040241	50.987981877971876	2040170	RS_GCF_000565015.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas catoniae	type strain of species	LPSN	f	5	5	277699	277699	191316	2	2777	NZ_JDFF01000009.1	191316	2	105	NZ_JDFF01000009.1	2729	5040	0	100	JDFF01000009.188577.191316	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas catoniae ATCC 51270	81606	81606	t	f	f	168637	168637	Contig	PcatATCC51270v1.0	na	PRJNA224116	SAMN02344579	25	168637	none	2014-02-06	GCA_000565015.1	none	full	none	none	none	0	0	Porphyromonas catoniae ATCC 51270	1579	na	5	none	none	none	none	none	2014/02/06	0	41976	1	ATCC 51270	Baylor College of Medicine	887901	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas catoniae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas catoniae;x__Porphyromonas catoniae ATCC 51270	0	2040170	11	45	assembly from type material	2040170	0	JDFF00000000.1	1643	25	68974	1	1495	2686	0	99.13	243751	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1525	NZ_JDFF01000019.1	1521	2719	0	98.882	AF366271.1.1522	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;uncultured Porphyromonas sp.	0	19	45	0
+RS_GCF_000972495.1	37	99.4	1.19	454	o__Cytophagales (UID2936)	336	25	5342557	84.04241512907787	174	3673867	57.793010473592645	6356977	RS_GCF_000972495.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter terrenus	type strain of species	LPSN	f	9	9	1073084	1073084	2049	6	2046	NZ_LATM01000097.1	372	1	111	NZ_LATM01000162.1	2046	3779	0	100	LATM01000097.1.2049	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. MIMtkLc17	36534	36534	t	f	f	190537	190537	Contig	ASM97249v1	na	PRJNA224116	SAMN03460197	174	190537	China: Liangcheng	2015-04-15	GCA_000972495.1	none	full	none	soil	40.51 N 112.17 E	0	0	Hymenobacter terrenus	5396	representative genome	13	none	none	none	none	none	2015/04/15	0	1629124	4	MIMtkLc17	Inner Mongolia agricultural university, college of life science	1629124	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter terrenus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter terrenus	0	6356977	11	43	assembly from type material	6356977	0	LATM00000000.1	5633	174	1446	4	815	1500	0	99.877	4319776	k__Bacteria;p__Firmicutes;c__Bacilli;o__Bacillales;f__Bacillaceae;g__Bacillus;s__	1204	NZ_LATM01000105.1	1158	2032	0	98.446	KF625170.1.1512	Bacteria;Firmicutes;Bacilli;Bacillales;Bacillaceae;Bacillus;Bacillus amyloliquefaciens	0	19	43	0
+RS_GCF_001424105.1	165	100	0	324	o__Flavobacteriales (UID2815)	204	0	3765290	87.19071389685149	129	1575417	36.5186642110985	4318453	RS_GCF_001424105.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium sp001424105	not type material	none	f	14	1	270603	2347949	3913	1	2238	NZ_LMQH01000001.1	none	0	none	none	1128	1941	0	97.872	LMQM01000001.789280.792049	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. Leaf404	33443	254026	f	f	t	102623	2347949	Scaffold	Leaf394	na	PRJNA224116	SAMN04151751	129	102623	Switzerland: Zurich	2015-11-02	GCA_001424105.1	none	full	none	leaf	47.4816806 N 8.21754722 E	0	0	Chryseobacterium sp. Leaf394	3931	na	2	17	1	2347949	345739	332559	2015/11/02	112	1736361	1	Leaf394	Max Planck Institute for Plant Breeding Research	1736361	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. Leaf394	4283	4318453	11	35	none	4314170	0	LMQH00000000.1	3980	17	3913	1	658	1146	0	98.176	4354699	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	986	NZ_LMQH01000001.1	655	1177	0	99.084	LMQM01000001.787099.788620	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. Leaf404	4283	18	38	0
+RS_GCF_000769115.1	50	98.79	0.31	475	f__Porphyromonadaceae (UID2622)	318	0	1920620	87.20039082221585	14	985703	44.75410967424992	2202536	RS_GCF_000769115.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas_A;s__Porphyromonas_A canoris	not type material	none	f	2	2	988164	988164	164979	2	2815	NZ_JQZV01000001.1	25391	3	102	NZ_JQZV01000004.1	2797	5158	0	100	JQZV01000001.161391.164203	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas canoris	157324	157324	t	f	f	351685	351685	Contig	ASM76911v1	na	PRJNA224116	SAMN03004340	14	351685	United Kingdom: Leicestershire	2014-10-27	GCA_000769115.1	none	full	none	dog mouth	none	0	0	Porphyromonas canoris	1803	na	14	none	none	none	none	none	2014/10/27	0	36875	6	COT-108 OH2762	UC Davis	36875	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas canoris	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas canoris	0	2202536	11	46	none	2202536	0	JQZV00000000.1	1845	14	988164	2	1242	2217	0	98.953	556500	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1535	NZ_JQZV01000013.1	1449	2669	0	100	JQZV01000013.559370.560822	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas canoris	0	19	46	0
+RS_GCF_001418105.1	0	99.67	0.44	571	s__algicola (UID2846)	303	0	3739292	89.74987207021593	32	1358297	32.60162137200253	4166348	RS_GCF_001418105.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Oceanihabitans;s__Oceanihabitans himadriense	type strain of species	LPSN	f	4	4	990725	990725	457511	3	2808	NZ_LIQI01000019.1	135771	2	101	NZ_LIQI01000017.1	2806	5182	0	100	LIQI01000019.454538.457346	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Lacinutrix;Lacinutrix himadriensis	130198	130198	f	f	t	351089	351089	Contig	ASM141810v1	na	PRJNA224116	SAMN04002506	32	351089	Svalbard: Spitsbergen; Kongsfjorden	2015-10-28	GCA_001418105.1	none	full	none	marine sediment	none	0	1	Lacinutrix himadriensis	3621	representative genome	6	none	none	none	none	none	2015/10/28	0	641549	1	E4-9a	KOREA POLAR RESEARCH INSTITUTE	641549	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lacinutrix;s__Lacinutrix himadriensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lacinutrix;s__Lacinutrix himadriensis	0	4166348	11	35	assembly from type material	4166348	0	LIQI00000000.1	3725	32	280879	1	1122	2054	0	99.733	578421	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lacinutrix;s__	1133	NZ_LIQI01000031.1	1121	2052	0	99.732	FN377744.1.1488	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Lacinutrix;Lacinutrix himadriensis	0	18	35	0
+RS_GCF_000702825.1	0	99.63	0	486	o__Bacteroidales (UID2716)	270	0	3377794	93.4725969948028	19	1720082	47.59940260062989	3613673	RS_GCF_000702825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp000702825	not type material	none	f	3	3	799421	799421	none	0	none	none	70185	4	109	NZ_JNKF01000002.1	none	none	none	none	none	none	190192	200759	f	f	t	537390	601469	Scaffold	ASM70282v1	na	PRJNA224116	SAMN02841184	19	537390	none	2014-06-11	GCA_000702825.1	none	full	none	none	none	0	0	Prevotella sp. P6B1	2921	na	8	18	3	601469	307972	139412	2014/06/11	1	1410613	2	P6B1	DOE Joint Genome Institute	1410613	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. P6B1	10	3613673	11	54	none	3613663	0	JNKF00000000.1	2998	18	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	10	18	54	0
+RS_GCF_000382225.1	0	99.4	0.3	454	o__Cytophagales (UID2936)	336	0	3632390	85.40696918460856	65	2640212	62.08973503922157	4253037	RS_GCF_000382225.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter aerophilus	type strain of species	LPSN	f	11	10	334888	334888	none	0	none	none	none	0	none	none	none	none	none	none	none	none	65419	68597	f	f	t	147743	154617	Scaffold	ASM38222v1	na	PRJNA224116	SAMN02441650	65	147743	Italy	2013-04-24	GCA_000382225.1	none	full	none	none	45.434388 N 12.338455 E	0	0	Hymenobacter aerophilus DSM 13606	3721	representative genome	6	62	10	154617	81653	36729	2013/04/24	3	119644	3	DSM 13606	DOE Joint Genome Institute	1121953	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter aerophilus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter aerophilus;x__Hymenobacter aerophilus DSM 13606	785	4253037	11	43	assembly from type material	4252252	0	ARNJ00000000.1	3751	62	10300	3	350	601	9.78e-171	97.714	271524	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Hymenobacter;s__	373	NZ_KB907846.1	350	601	2.52e-170	97.714	EU155008.1.1436	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter aerophilus	785	19	43	0
+RS_GCF_000833995.1	0	99.26	0.86	487	o__Bacteroidales (UID2716)	270	0	2653285	85.03791520838942	88	1492737	47.842294527133575	3120120	RS_GCF_000834015.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella pectinovora	not type material	none	f	11	11	282834	282834	3044	3	2808	NZ_JXQL01000009.1	3044	4	109	NZ_JXQL01000009.1	2808	5186	0	100	JXQL01000009.230.3044	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. P5-125	35455	35455	t	f	f	86964	86964	Contig	ASM83399v1	na	PRJNA224116	SAMN03284264	88	86964	Slovenia: Ihan; pig farm	2015-02-09	GCA_000833995.1	none	full	none	feces	none	0	0	Prevotella pectinovora	2415	representative genome	8	none	none	none	none	none	2015/02/09	0	1602169	1	P5-125	University of Ljubljana	1602169	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella pectinovora	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella pectinovora	0	3120120	11	53	none	3120120	0	JXQL00000000.1	2485	88	1758	1	none	none	none	none	none	none	1529	NZ_JXQL01000085.1	1512	2760	0	99.603	FPLO01007311.12.1523	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotellaceae NK3B31 group;metagenome	0	19	53	0
+RS_GCF_000768975.1	30	99.76	0	475	f__Porphyromonadaceae (UID2622)	318	0	1879811	86.98451288633915	30	982356	45.457199879503406	2161087	RS_GCF_900167225.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	not type material	none	f	6	6	218177	218177	52526	1	2863	NZ_JQJC01000001.1	52526	2	105	NZ_JQJC01000001.1	2863	5288	0	100	JQJC01000001.3181.6053	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas crevioricanis	72036	72036	t	f	f	144469	144469	Contig	ASM76897v1	na	PRJNA224116	SAMN03004339	30	144469	United Kingdom: Leicestershire	2014-10-27	GCA_000768975.1	none	full	none	dog mouth	none	0	0	Porphyromonas crevioricanis	1822	na	4	none	none	none	none	none	2014/10/27	0	393921	1	COT-253 OH1447	UC Davis	393921	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	0	2161087	11	49	none	2161087	0	JQJC00000000.1	1863	30	52526	1	1489	2750	0	100	643126	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_JQJC01000001.1	1519	2800	0	99.934	LS483447.316388.317906	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas crevioricanis	0	19	49	0
+RS_GCF_000261025.1	0	99.32	0	567	g__Prevotella (UID2724)	296	0	2298199	85.13623396285966	2	1173670	43.47832529523749	2699437	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2119790	2119790	579647	4	2901	NC_017860.1	579647	4	108	NC_017860.1	2901	5358	0	100	CP019302.1997186.2000094	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1349718	1349718	t	f	f	2119790	2119790	Complete Genome	ASM26102v1	na	PRJNA224116	SAMN02603988	none	none	none	2012-05-04	GCA_000261025.1	none	full	none	peridontal pocket	none	2	0	Prevotella intermedia 17	2350	na	12	2	1	2119790	2119790	579647	2012/05/04	0	28131	4	17	TIGR	246198	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia;x__Prevotella intermedia 17	0	2699437	11	50	none	2699437	0	none	2333	2	579647	4	1529	2824	0	100	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NC_017860.1	1530	2826	0	100	CP019302.601050.602591	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	50	0
+RS_GCF_001315785.1	0	97	0.06	491	o__Bacteroidales (UID2657)	268	0	3449633	88.99242632577996	164	1772019	45.71392675840655	3876322	RS_GCF_000157915.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola coprophilus	type strain of species	LPSN	f	26	26	109788	109788	5543	1	2876	NZ_BBIJ01000104.1	5543	1	104	NZ_BBIJ01000104.1	2876	5312	0	100	BBIJ01000104.2460.5340	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides coprophilus DSM 18228 = JCM 13818	23636	23636	t	f	f	53172	53172	Contig	ASM131578v1	na	PRJNA224116	SAMD00017010	164	53172	none	2015-10-02	GCA_001315785.1	none	full	none	none	none	0	0	Phocaeicola coprophilus DSM 18228 = JCM 13818	3408	na	3	none	none	none	none	none	2015/10/02	0	387090	1	JCM 13818	The University of Tokyo	547042	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola coprophilus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola coprophilus;x__Phocaeicola coprophilus DSM 18228 = JCM 13818	0	3876322	11	70	assembly from type material	3876322	0	BBIJ00000000.1	3939	164	5543	1	1527	2820	0	100	851885	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__coprophilus	1528	NZ_BBIJ01000104.1	1519	2806	0	100	ACBW01000012.3536.5054	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides coprophilus DSM 18228 = JCM 13818	0	19	70	0
+RS_GCF_000757725.1	0	99.52	0.95	316	p__Bacteroidetes (UID2605)	210	0	4065450	88.45851819987584	75	1958020	42.603782559303625	4595883	RS_GCF_000757725.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium deserti	type strain of species	LPSN	f	13	13	318693	318693	none	0	none	none	686	2	107	NZ_JJMU01000045.1	none	none	none	none	none	none	61278	61278	f	f	t	133866	133866	Contig	ASM75772v1	na	PRJNA224116	SAMN02722725	75	133866	China: Western China	2014-09-24	GCA_000757725.1	none	full	none	soil	42.99917921 N 89.12633407 E	0	0	Sphingobacterium deserti	3849	representative genome	3	none	none	none	none	none	2014/09/24	0	1229276	1	ACCC 05744	BIOTECHNOLOGY RESEARCH INSTITUTE, CAAS	1229276	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium deserti	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium deserti	0	4595883	11	49	assembly from type material	4595883	0	JJMU00000000.1	4001	75	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	20	48	0
+RS_GCF_000265405.1	0	100	0	439	o__Cytophagales (UID2938)	266	0	3702282	88.22109352939705	1	1544898	36.813130645201646	4196595	RS_GCF_000265405.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__Belliella baltica	type strain of species	LPSN	t	1	1	4196595	4196595	4196595	4	2877	NC_018010.1	4196595	4	100	NC_018010.1	2877	5313	0	100	CP003281.2034700.2037579	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Belliella;Belliella baltica DSM 15883	4196595	4196595	t	f	f	4196595	4196595	Complete Genome	ASM26540v1	na	PRJNA224116	SAMN02232009	none	none	none	2012-06-08	GCA_000265405.1	none	full	none	surface water (5 m depth) of the central Baltic sea	none	1	0	Belliella baltica DSM 15883	3761	representative genome	12	1	1	4196595	4196595	4196595	2012/06/08	0	232259	4	DSM 15883	DOE Joint Genome Institute	866536	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__Belliella baltica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__Belliella baltica;x__Belliella baltica DSM 15883	0	4196595	11	39	assembly from type material	4196595	0	none	3832	1	4196595	4	none	none	none	none	none	none	1519	NC_018010.1	1444	2667	0	100	AJ564642.1.1444	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Belliella;Belliella baltica	0	19	39	0
+RS_GCF_000614895.1	0	97.28	1.9	275	k__Bacteria (UID2569)	184	0	4265018	85.78860008077973	105	2084322	41.92504380932765	4971544	RS_GCF_000259075.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Marinilabilia;s__Marinilabilia salmonicolor	type strain of species	LPSN	t	13	13	667403	667403	2949	1	2811	NZ_BALK01000081.1	none	0	none	none	2811	5192	0	100	BALK01000081.130.2949	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Marinilabilia;Marinilabilia salmonicolor JCM 21150	47348	47348	f	f	t	113118	113118	Contig	ASM61489v1	na	PRJNA224116	SAMD00012206	105	113118	none	2014-03-31	GCA_000614895.1	none	full	none	none	none	0	0	Marinilabilia salmonicolor JCM 21150	4007	na	2	none	none	none	none	none	2014/03/31	0	989	1	JCM 21150	The University of Tokyo	1168289	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Marinilabilia;s__Marinilabilia salmonicolor	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Marinilabilia;s__Marinilabilia salmonicolor;x__Marinilabilia salmonicolor JCM 21150	0	4971544	11	47	assembly from type material	4971544	0	BALK00000000.1	4568	105	2065	1	1515	2721	0	99.076	540416	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Marinilabiaceae;g__;s__	1521	NZ_BALK01000083.1	1504	2778	0	100	AJKI01000048.277.1780	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Marinilabilia;Marinilabilia salmonicolor JCM 21150	0	19	47	0
+RS_GCF_000187895.1	0	99.25	0.68	491	o__Bacteroidales (UID2657)	268	0	4019750	90.904999724102	25	1959212	44.31278956258352	4421924	RS_GCF_000187895.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola plebeius	type strain of species	LPSN	f	4	4	760260	760260	123012	6	2627	NZ_DS990126.1	76136	6	105	NZ_DS990124.1	2627	4852	0	100	ABQC02000010.2.2631	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides plebeius DSM 17135	176852	232732	t	f	f	478534	478534	Scaffold	ASM18789v1	na	PRJNA224116	SAMN00000028	25	478534	none	2010-09-09	GCA_000187895.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Phocaeicola plebeius DSM 17135	3670	na	17	19	4	478534	206893	147256	2010/09/09	6	310297	5	DSM 17135	Washington University Genome Sequencing Center	484018	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola plebeius	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola plebeius;x__Phocaeicola plebeius DSM 17135	600	4421924	11	78	assembly from type material	4421324	0	ABQC00000000.2	3660	19	760260	5	1315	2344	0	99.011	1145671	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__plebeius	1307	NZ_DS990130.1	1303	2407	0	100	ABQC02000019.758957.760260	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides plebeius DSM 17135	600	19	78	0
+RS_GCF_000755285.1	0	94.41	0.57	496	s__algicola (UID2847)	263	0	2804373	90.70318935847672	25	1089158	35.22716283293977	3091813	RS_GCF_000755285.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans_A	not type material	none	f	2	2	1097359	1097359	5734	1	2828	NZ_BBMK01000017.1	none	0	none	none	2828	5223	0	100	BBMK01000017.2464.5339	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens ulvanivorans	123672	123672	f	f	t	449344	449344	Contig	ASM75528v1	na	PRJNA224116	SAMD00017328	25	449344	none	2014-09-05	GCA_000755285.1	none	full	none	none	none	0	1	Nonlabens ulvanivorans	2865	na	3	none	none	none	none	none	2014/09/05	0	906888	1	JCM 19298	The University of Tokyo	906888	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens ulvanivorans	0	3091813	11	33	none	3091813	0	BBMK00000000.1	3496	25	5734	1	1423	2457	0	98.103	835067	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1546	NZ_BBMK01000017.1	1547	2771	0	99.095	BBNT01000027.3888.5431	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens ulvanivorans	0	19	33	0
+RS_GCF_000212355.1	0	99.62	0	496	s__algicola (UID2847)	263	0	3062934	90.35222196624005	1	1264099	37.28913304540747	3389993	RS_GCF_000212355.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Dokdonia;s__Dokdonia sp000212355	not type material	none	f	1	1	3389993	3389993	3389993	3	2817	NC_015496.1-#3	3389993	3	104	NC_015496.1	2817	5203	0	100	CP002528.2386313.2389140	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Dokdonia;Dokdonia sp. 4H-3-7-5	3389993	3389993	t	f	f	3389993	3389993	Complete Genome	ASM21235v1	na	PRJNA224116	SAMN00713609	none	none	none	2011-05-05	GCA_000212355.1	none	full	none	none	none	1	1	Dokdonia sp. 4H-3-7-5	2956	na	9	1	1	3389993	3389993	3389993	2011/05/05	0	983548	3	4H-3-7-5	US DOE Joint Genome Institute	983548	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Dokdonia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Dokdonia;x__unclassified Dokdonia;s__Dokdonia sp. 4H-3-7-5	0	3389993	11	42	none	3389993	0	none	2993	1	3389993	3	none	none	none	none	none	none	1523	NC_015496.1-#3	1515	2798	0	100	CP002528.2383976.2385490	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Dokdonia;Dokdonia sp. 4H-3-7-5	0	19	42	0
+RS_GCF_000599305.1	0	99.26	0.07	492	o__Bacteroidales (UID2657)	269	0	4743173	89.12183899579904	122	2306465	43.33731921214884	5322122	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	13	13	305039	305039	62957	7	2881	NZ_JGEL01000051.1	170119	6	106	NZ_JGEL01000037.1	2881	5321	0	100	JGEL01000053.33864.36747	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. S23L24	43623	43623	t	f	f	147625	147625	Contig	ASM59930v1	na	PRJNA224116	SAMN02315068	122	147625	USA	2014-03-20	GCA_000599305.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. S23L24	4757	na	15	none	none	none	none	none	2014/03/20	0	817	2	S23L24	IGS	1339330	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. S23L24	0	5322122	11	79	none	5322122	0	JGEL00000000.1	4546	122	55680	2	1525	2778	0	99.541	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGEL01000054.1	1526	2802	0	99.803	CP011073.4368909.4370448	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	82	0
+RS_GCF_000689515.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3611374	89.56654134601767	89	1433275	35.546992515234784	4032057	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	8	8	485062	485062	4824	1	2762	NZ_CCAC010000039.1	144	1	101	NZ_CCAC010000040.1	2762	5101	0	100	CP023404.775865.778639	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	45304	45304	t	f	f	161028	161028	Contig	E27107v1_PRJEB5243	na	PRJNA224116	SAMEA3139014	89	161028	none	2014-04-10	GCA_000689515.1	none	full	none	none	none	0	0	Elizabethkingia anophelis	3666	na	3	none	none	none	none	none	2014/04/10	0	1117645	1	Po0527107	INSTITUT PASTEUR	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	0	4032057	11	45	none	4032057	0	CCAC000000000.1	3735	89	4824	1	1512	2787	0	99.934	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_CCAC010000039.1	1513	2795	0	100	CP016370.2367209.2368730	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	0	19	46	0
+RS_GCF_000250635.1	0	100	0	300	p__Bacteroidetes (UID2591)	201	0	3664080	83.27104428563798	2	2039994	46.36155070752707	4400185	RS_GCF_000250635.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__Saprospira;s__Saprospira grandis_B	not type material	none	f	1	1	4345237	4345237	4345237	3	2807	NC_016940.1-#2	4345237	3	293	NC_016940.1-#3	2807	5184	0	100	CP002831.1708892.1711702	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Saprospira;Saprospira grandis str. Lewin	2200092	2200092	t	f	f	4345237	4345237	Complete Genome	ASM25063v1	na	PRJNA224116	SAMN02602989	none	none	none	2012-02-27	GCA_000250635.1	none	full	none	none	none	2	0	Saprospira grandis str. Lewin	3991	representative genome	10	2	1	4345237	4345237	4345237	2012/02/27	0	1008	3	Lewin	ASGPB, University of Hawaii at Manoa	984262	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__Saprospira;s__Saprospira grandis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__Saprospira;s__Saprospira grandis;x__Saprospira grandis str. Lewin	0	4400185	11	48	none	4400185	0	none	3488	2	4345237	3	none	none	none	none	none	none	1525	NC_016940.1	1520	2808	0	100	CP002831.1712157.1713676	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Saprospira;Saprospira grandis str. Lewin	0	19	48	0
+RS_GCF_000423405.1	0	99.62	0	496	s__algicola (UID2847)	263	0	2903180	90.56707131800454	63	1125231	35.16185350235473	3205558	RS_GCF_000423405.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesonia;s__Mesonia mobilis	type strain of species	LPSN	f	5	4	562720	562720	1262	1	1248	NZ_AUHX01000053.1	118954	2	104	NZ_AUHX01000011.1	1251	2124	0	97.362	FQYY01000029.277.3103	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mesonia;Mesonia phycicola	50795	54331	f	f	t	255939	338206	Scaffold	ASM42340v1	na	PRJNA224116	SAMN02440658	63	255939	none	2013-07-11	GCA_000423405.1	none	full	none	none	none	0	1	Mesonia mobilis DSM 19841	2923	na	6	59	4	338206	141926	70833	2013/07/11	4	369791	3	DSM 19841	DOE Joint Genome Institute	1122226	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesonia;s__Mesonia mobilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesonia;s__Mesonia mobilis;x__Mesonia mobilis DSM 19841	5411	3205558	11	35	assembly from type material	3200147	0	AUHX00000000.1	2950	59	141926	1	497	898	0	99.195	1128468	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesonia;s__	526	NZ_KE384014.1	523	928	0	98.662	KF906584.1.1516	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mesonia;uncultured bacterium	5411	19	35	0
+RS_GCF_000801715.1	0	98.94	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	2181591	86.52413551855005	123	829647	32.90465053282604	2521367	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	15	15	154181	154181	45779	6	2872	NZ_JRWF01000045.1	16905	6	104	NZ_JRWF01000020.1	2872	5304	0	100	CP007207.1059961.1062852	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum FPG3	20498	20498	t	f	f	55596	55596	Contig	ASM80171v1	na	PRJNA224116	SAMN03081592	123	55596	USA: Washington	2014-12-16	GCA_000801715.1	none	full	none	parent strain THC 02-90 passaged with rifampicin	none	0	1	Flavobacterium psychrophilum	2201	na	18	none	none	none	none	none	2014/12/16	0	96345	6	TR	Washington State University	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2521367	11	49	none	2521367	0	JRWF00000000.1	2226	123	30614	6	1507	2750	0	99.602	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1508	NZ_JRWF01000108.1	1508	2785	0	100	CP007207.573072.574591	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum FPG3	0	19	49	0
+RS_GCF_000812865.1	0	100	1.86	323	o__Flavobacteriales (UID2815)	204	0	2901860	88.97911925433004	35	1139361	34.935985296579695	3261282	RS_GCF_000812865.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella jeonii	type strain of species	LPSN	f	3	3	808081	808081	808081	1	2754	NZ_JSYL01000002.1	808081	2	101	NZ_JSYL01000002.1	2754	5086	0	100	FOLA01000026.2756.5524	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium jeonii	93179	93179	t	f	f	266794	266794	Contig	ASM81286v1	na	PRJNA224116	SAMN03145167	35	266794	Antarctica	2014-12-31	GCA_000812865.1	none	full	none	terrestrial samples	none	0	0	Kaistella jeonii	2996	na	4	none	none	none	none	none	2014/12/31	0	266749	1	DSM 17048	GCAT-SEEK	266749	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella jeonii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Kaistella;s__Kaistella jeonii	0	3261282	11	37	assembly from type material	3261282	0	JSYL00000000.1	3024	35	808081	1	none	none	none	none	none	none	1513	NZ_JSYL01000002.1	1469	2687	0	99.66	FR682715.1.1469	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium jeonii	0	19	37	0
+RS_GCF_000599325.1	0	99.26	0.56	492	o__Bacteroidales (UID2657)	269	50	4673021	89.01411171154147	65	2263718	43.120466810533756	5249753	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	6	6	780956	780956	171520	5	399	NZ_JGEO01000044.1	59944	6	106	NZ_JGEO01000052.1	399	737	0	100	CP012706.4161144.4164037	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	80765	80765	f	f	t	260420	260420	Contig	ASM59932v1	na	PRJNA224116	SAMN02315064	65	260420	USA	2014-03-20	GCA_000599325.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. S24L34	4583	na	13	none	none	none	none	none	2014/03/20	0	817	2	S24L34	IGS	1339325	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. S24L34	0	5249753	11	71	none	5249753	0	JGEO00000000.1	4369	65	13776	1	1525	2789	0	99.672	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGEO01000053.1	1526	2808	0	99.869	CP011073.3048810.3050349	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	70	0
+RS_GCF_000179055.1	56	97.08	2.35	567	g__Prevotella (UID2724)	296	16.67	3166236	88.12364891550028	98	1403089	39.05181092329269	3592947	RS_GCF_022024235.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella bryantii	type strain of species	LPSN	f	16	16	182789	182789	38433	12	2886	NZ_ADWO01000048.1	61601	10	108	NZ_ADWO01000010.1	2830	5227	0	100	ADWO01000048.297.3126	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bryantii B14	36662	36662	t	f	f	76576	76576	Contig	ASM17905v1	na	PRJNA224116	SAMN02436639	98	76576	none	2010-06-28	GCA_000179055.1	none	full	none	none	none	0	0	Prevotella bryantii B14	2862	na	34	none	none	none	none	none	2010/06/28	0	77095	12	B14	JCVI	752555	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bryantii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bryantii;x__Prevotella bryantii B14	0	3592947	11	85	assembly from type material	3592947	0	ADWO00000000.1	2960	98	132148	12	1526	2802	0	99.803	2456812	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1527	NZ_ADWO01000042.1	1472	2719	0	100	ADWO01000042.10093.11564	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bryantii B14	0	19	85	0
+RS_GCF_001280505.1	0	99.67	4.95	571	s__algicola (UID2846)	303	95.12	3797506	91.5228853848486	80	1603832	38.653614322808835	4149242	RS_GCF_001280505.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mangrovimonas_A;s__Mangrovimonas_A sp001280505	not type material	none	f	6	6	418880	418880	3142	1	2809	NZ_LBIO01000056.1	3142	3	104	NZ_LBIO01000056.1	2810	5020	0	98.932	LBIP01000035.1989.4806	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mangrovimonas;Mangrovimonas sp. ST2L12	51865	51865	t	f	f	234871	234871	Contig	ASM128050v1	na	PRJNA224116	SAMN03494313	80	234871	Malaysia: Perak	2015-09-09	GCA_001280505.1	none	full	none	mangrove soil	none	0	1	Mangrovimonas sp. TPBH4	3542	na	10	none	none	none	none	none	2015/09/09	0	1645914	6	TPBH4	UNIVERSITI SAINS MALAYSIA	1645914	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mangrovimonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mangrovimonas;x__unclassified Mangrovimonas;s__Mangrovimonas sp. TPBH4	0	4149242	11	47	none	4149242	0	LBIO00000000.1	3622	80	1399	4	1270	2108	0	96.85	93188	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1304	NZ_LBIO01000026.1	1304	2386	0	99.693	KR780982.1.1519	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mangrovimonas;Mangrovimonas sp. ST2L12	0	19	49	0
+RS_GCF_000769915.1	0	99.65	0.12	511	f__Flavobacteriaceae (UID2817)	283	0	3470220	91.30336632850604	61	1433269	37.710083093951255	3800758	RS_GCF_000769915.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium beibuense	type strain of species	LPSN	f	7	7	419796	419796	3056	1	2866	NZ_JRLV01000042.1	none	0	none	none	2866	5293	0	100	JRLV01000042.84.2966	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium beibuense F44-8	62307	62307	f	f	t	209944	209944	Contig	ASM76991v1	na	PRJNA224116	SAMN03078689	61	209944	China: Beibu Gulf	2014-10-28	GCA_000769915.1	none	full	none	marine sediment	none	0	1	Flavobacterium beibuense F44-8	3426	representative genome	3	none	none	none	none	none	2014/10/28	0	657326	2	F44-8	hzau	1406840	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium beibuense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium beibuense;x__Flavobacterium beibuense F44-8	0	3800758	11	34	assembly from type material	3800758	0	JRLV00000000.1	3454	61	950	2	818	1472	0	99.144	542078	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	820	NZ_JRLV01000050.1	817	1509	0	100	GQ245972.1.1480	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium beibuense F44-8	0	20	34	0
+RS_GCF_000422365.1	0	99.67	0	571	s__algicola (UID2846)	303	0	2735964	92.23782839088047	22	931456	31.41044447456932	2966206	RS_GCF_000422365.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesoflavibacter;s__Mesoflavibacter zeaxanthinifaciens	type strain of species	LPSN	t	4	4	603844	603844	316549	2	2807	NZ_AULQ01000006.1	316549	2	101	NZ_AULQ01000006.1	2807	5184	0	100	AULQ01000006.2460.5277	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mesoflavibacter;Mesoflavibacter zeaxanthinifaciens DSM 18436	134792	141247	t	f	f	316549	338188	Scaffold	ASM42236v1	na	PRJNA224116	SAMN02441142	22	316549	Japan	2013-07-11	GCA_000422365.1	none	full	none	none	35.30038 N 139.4999 E	0	1	Mesoflavibacter zeaxanthinifaciens DSM 18436	2677	representative genome	6	21	4	338188	224502	125763	2013/07/11	1	393060	2	DSM 18436	DOE Joint Genome Institute	1122225	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesoflavibacter;s__Mesoflavibacter zeaxanthinifaciens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesoflavibacter;s__Mesoflavibacter zeaxanthinifaciens;x__Mesoflavibacter zeaxanthinifaciens DSM 18436	772	2966206	11	38	assembly from type material	2965434	0	AULQ00000000.1	2700	21	316549	2	1449	2676	0	100	4326319	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesoflavibacter;s__zeaxanthinifaciens	1520	NZ_AULQ01000006.1	1449	2676	0	100	AB681705.1.1449	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mesoflavibacter;Mesoflavibacter zeaxanthinifaciens	772	19	38	0
+RS_GCF_000598265.1	0	99.26	1.05	492	o__Bacteroidales (UID2657)	269	80	4890254	89.03199213937498	315	2373898	43.21920049054262	5492693	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	36	36	166043	166043	28517	6	1639	NZ_JGCM01000174.1	55445	6	106	NZ_JGCM01000113.1	1639	3027	0	100	JGDD01000100.175933.178817	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. DS-166	17437	17437	f	f	t	44035	44035	Contig	ASM59826v1	na	PRJNA224116	SAMN02314432	315	44035	USA	2014-03-20	GCA_000598265.1	none	full	none	stool	none	0	0	Bacteroides fragilis str. 1007-1-F #8	5017	na	25	none	none	none	none	none	2014/03/20	0	817	7	1007-1-F #8	IGS	1339293	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 1007-1-F #8	0	5492693	11	92	none	5492693	0	JGCM00000000.1	4840	315	2575	7	1525	2789	0	99.672	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGCM01000137.1	1526	2813	0	99.934	FQ312004.3243020.3244552	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis 638R	0	19	91	0
+RS_GCF_000619825.1	0	99.63	0	487	o__Bacteroidales (UID2716)	270	0	3162367	93.45025769715288	13	1615801	47.750570654133355	3384011	RS_GCF_000619825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp000619825	not type material	none	f	3	3	675167	793368	none	0	none	none	441609	4	109	NZ_JHUW01000007.1	none	none	none	none	none	none	260295	282000	f	f	t	441609	441609	Scaffold	ASM61982v1	na	PRJNA224116	SAMN02769640	13	441609	none	2014-04-08	GCA_000619825.1	none	full	none	cow rumen	none	0	0	Prevotella sp. MA2016	2714	na	10	12	3	441609	315329	211461	2014/04/08	1	1408310	3	MA2016	DOE Joint Genome Institute	1408310	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. MA2016	175	3384011	11	53	none	3383836	0	JHUW00000000.1	2795	12	1309	3	1247	2180	0	98.316	721286	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__ruminicola	1246	NZ_JHUW01000003.1	1214	2231	0	99.835	AB616446.1.1491	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured rumen bacterium	175	18	53	0
+RS_GCF_000189415.1	0	100	0	152	k__Bacteria (UID2565)	93	0	2041982	89.83824573660532	1	816484	35.921712449965995	2272954	RS_GCF_000189415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Weeksella;s__Weeksella virosa	type strain of species	LPSN	t	1	1	2272954	2272954	2272954	5	2772	NC_015144.1-#3	2272954	5	102	NC_015144.1	2772	5120	0	100	CP002455.1345011.1347788	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Weeksella;Weeksella virosa DSM 16922	2272954	2272954	t	f	f	2272954	2272954	Complete Genome	ASM18941v1	na	PRJNA224116	SAMN00713585	none	none	USA	2011-02-15	GCA_000189415.1	none	full	none	urine	none	1	0	Weeksella virosa DSM 16922	2094	na	15	1	1	2272954	2272954	2272954	2011/02/15	0	1014	5	DSM 16922	JGI	865938	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Weeksella;s__Weeksella virosa	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Weeksella;s__Weeksella virosa;x__Weeksella virosa DSM 16922	0	2272954	11	59	assembly from type material	2272954	0	none	2118	1	2272954	5	none	none	none	none	none	none	1515	NC_015144.1-#4	1509	2787	0	100	CP002455.378282.379790	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Weeksella;Weeksella virosa DSM 16922	0	19	59	0
+RS_GCF_000613705.1	0	96.95	0	475	f__Porphyromonadaceae (UID2622)	318	0	1961605	86.79264901409448	112	1191667	52.72617865099188	2260105	RS_GCF_000482365.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas uenonis	type strain of species	LPSN	f	21	21	175092	175092	3732	1	2864	NZ_BAJM01000086.1	3732	1	105	NZ_BAJM01000086.1	2864	5289	0	100	AXVC01000028.409.3284	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas uenonis DSM 23387 = JCM 13868	20179	20179	t	f	f	33384	33384	Contig	ASM61370v1	na	PRJNA224116	SAMD00011592	112	33384	none	2014-03-31	GCA_000613705.1	none	full	none	none	none	0	0	Porphyromonas uenonis DSM 23387 = JCM 13868	1804	na	3	none	none	none	none	none	2014/03/31	0	281920	1	JCM 13868	The University of Tokyo	1122976	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas uenonis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas uenonis;x__Porphyromonas uenonis DSM 23387 = JCM 13868	0	2260105	11	45	assembly from type material	2260105	0	BAJM00000000.1	2130	112	2086	1	1525	2734	0	99.016	4405360	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1526	NZ_BAJM01000094.1	1487	2724	0	99.731	AB547668.1.1490	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas uenonis	0	19	45	0
+RS_GCF_000498515.1	0	99.65	0.77	511	f__Flavobacteriaceae (UID2817)	283	50	2633615	90.97329401865052	76	1146105	39.59004909269026	2894932	RS_GCF_900100625.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium saliperosum	type strain of species	LPSN	f	5	5	619220	619220	102796	1	2863	NZ_AVFO01000001.1	102796	1	105	NZ_AVFO01000001.1	2863	5288	0	100	FMTY01000014.273.3145	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium saliperosum	38091	38091	t	f	f	158396	158396	Contig	Fsal1.0	na	PRJNA224116	SAMN02470901	76	158396	South Korea	2013-11-22	GCA_000498515.1	none	full	none	none	none	0	1	Flavobacterium saliperosum S13	2692	na	3	none	none	none	none	none	2013/11/22	0	329186	1	S13	Seoul National University	1341155	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium saliperosum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium saliperosum;x__Flavobacterium saliperosum S13	0	2894932	11	45	assembly from type material	2894932	0	AVFO00000000.1	2718	76	102796	1	1475	2628	0	98.847	720984	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1512	NZ_AVFO01000001.1	1475	2628	0	98.847	EU431793.1.1478	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;uncultured bacterium	0	19	46	0
+RS_GCF_000744835.1	0	99.65	0.71	511	f__Flavobacteriaceae (UID2817)	283	0	3342470	88.17739578222032	1	1262408	33.303470144725665	3790620	RS_GCF_000744835.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp000744835	not type material	none	f	1	1	3790620	3790620	3790620	6	2870	NZ_JQMS01000001.1	3790620	6	104	NZ_JQMS01000001.1	2868	5297	0	100	JQMS01000001.2813424.2816296	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. 83	3790620	3790620	t	f	f	3790620	3790620	Contig	ASM74483v1	na	PRJNA224116	SAMN02745985	1	3790620	none	2014-08-28	GCA_000744835.1	none	full	none	none	none	0	0	Flavobacterium sp. 83	3196	na	19	none	none	none	none	none	2014/08/28	0	1131812	7	83	DOE Joint Genome Institute	1131812	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. 83	0	3790620	11	55	none	3790620	0	JQMS00000000.1	3243	1	3790620	6	1506	2603	0	97.875	686718	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_JQMS01000001.1	1494	2760	0	100	JQMS01000001.5394.6887	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. 83	0	19	55	0
+RS_GCF_001306415.1	0	98.68	0.99	571	s__algicola (UID2846)	303	0	3517855	90.5776092602043	16	1626682	41.88375205533135	3883802	RS_GCF_001306415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceitalea;s__Croceitalea dokdonensis	type strain of species	LPSN	f	3	3	794410	794410	772424	2	2817	NZ_LDJX01000002.1	772424	3	108	NZ_LDJX01000002.1	2817	5203	0	100	LDJX01000004.34310.37172	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Croceitalea;Croceitalea dokdonensis DOKDO 023	242737	242737	t	f	f	454530	454530	Contig	ASM130641v1	na	PRJNA224116	SAMN03702328	16	454530	South Korea: Dokdo Island	2015-10-05	GCA_001306415.1	none	full	none	sea water	37.23944 N 131.86889 E	0	1	Croceitalea dokdonensis DOKDO 023	3385	representative genome	6	none	none	none	none	none	2015/10/05	0	346188	2	DOKDO 023	Yonsei University	1300341	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceitalea;s__Croceitalea dokdonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceitalea;s__Croceitalea dokdonensis;x__Croceitalea dokdonensis DOKDO 023	0	3883802	11	38	assembly from type material	3883802	0	LDJX00000000.1	3442	16	772424	2	1467	2682	0	99.659	4455298	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceitalea;s__dokdonensis	1521	NZ_LDJX01000002.1	1467	2682	0	99.659	DQ191182.1.1467	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Croceitalea;Croceitalea dokdonensis	0	19	38	0
+RS_GCF_000598645.1	0	99.26	0.37	492	o__Bacteroidales (UID2657)	269	50	4570094	88.83036528744002	120	2232718	43.39804728827076	5144743	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	10	10	620440	620440	1970	7	1744	NZ_JGDV01000081.1	125005	7	106	NZ_JGDV01000049.1	1744	3199	0	99.771	AGXO01000020.2487.5373	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis CL05T00C42	42872	42872	f	f	t	156598	156598	Contig	ASM59864v1	na	PRJNA224116	SAMN02314412	120	156598	USA	2014-03-20	GCA_000598645.1	none	full	none	stool	none	0	0	Bacteroides fragilis str. J38-1	4490	na	24	none	none	none	none	none	2014/03/20	0	817	8	J38-1	IGS	1339272	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. J38-1	0	5144743	11	78	none	5144743	0	JGDV00000000.1	4264	120	2054	6	1525	2778	0	99.541	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGDV01000062.1	1526	2802	0	99.803	AP006841.4735744.4737280	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis YCH46	0	19	79	0
+RS_GCF_000252855.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	1959066	90.52621267074753	1	757540	35.00506218095668	2164087	RS_GCF_000252855.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	type strain of species	LPSN	t	1	1	2164087	2164087	2164087	3	2738	NC_017045.1	2164087	3	101	NC_017045.1	2738	5057	0	100	CP007503.1142030.1144777	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	2164087	2164087	t	f	f	2164087	2164087	Complete Genome	ASM25285v1	na	PRJNA224116	SAMN02602991	none	none	none	2012-03-15	GCA_000252855.1	none	full	none	none	none	1	0	Riemerella anatipestifer ATCC 11845 = DSM 15868	2013	na	9	1	1	2164087	2164087	2164087	2012/03/15	0	34085	3	ATCC 11845	Avian Disease Centre of the College of Veterinary Medicine, Sichuan Agricultural University	693978	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer;x__Riemerella anatipestifer ATCC 11845 = DSM 15868	0	2164087	11	37	assembly from type material	2164087	0	none	2025	1	2164087	3	none	none	none	none	none	none	1513	NC_017045.1	1513	2789	0	99.934	CP007204.912680.914202	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer Yb2	0	19	37	0
+RS_GCF_000598145.1	0	99.26	3.61	492	o__Bacteroidales (UID2657)	269	100	5026947	88.88274956300769	363	2458367	43.467022507888494	5655706	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	28	28	345687	345687	2077	13	2075	NZ_JGCO01000337.1	24754	7	106	NZ_JGCO01000013.1	2075	3832	0	100	JGCO01000337.1.2076	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 2-F-2 #7	15580	15580	t	f	f	54426	54426	Contig	ASM59814v1	na	PRJNA224116	SAMN02314427	363	54426	USA	2014-03-20	GCA_000598145.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 2-F-2 #7	5138	na	28	none	none	none	none	none	2014/03/20	0	817	7	2-F-2 #7	IGS	1339282	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 2-F-2 #7	0	5655706	11	81	none	5655706	0	JGCO00000000.1	4951	363	1372	7	1370	2514	0	99.781	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1372	NZ_JGCO01000350.1	1372	2518	0	99.781	FQ312004.4649498.4651030	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis 638R	0	19	83	0
+RS_GCF_000162455.1	3	96.41	0.11	567	g__Prevotella (UID2724)	296	0	2845099	84.72725919087539	264	1680393	50.9522352642241	3357950	RS_GCF_000184945.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella buccae	not type material	none	f	42	7	106942	438843	438843	2	2228	NZ_GG739926.1	1035	1	107	NZ_GG739990.1	2228	4115	0	100	ACRB01000002.19.2249	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella buccae D17	12492	39975	t	f	f	22172	151328	Scaffold	ASM16245v1	na	PRJNA224116	SAMN02463748	264	22172	none	2010-02-04	GCA_000162455.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Prevotella buccae D17	2782	na	4	84	7	151328	44071	22494	2010/02/04	180	28126	1	D17	Broad Institute	575611	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella buccae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella buccae;x__Prevotella buccae D17	59970	3357950	11	45	none	3297980	0	ACRB00000000.1	2766	84	438843	1	1530	2826	0	100	610111	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1531	NZ_GG739926.1	1477	2682	0	99.458	AB547675.1.1480	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella buccae	59970	19	45	0
+RS_GCF_000767175.1	0	99.71	0.87	288	o__Actinomycetales (UID1572)	173	50	3573350	89.86742771951232	435	2902371	72.99274240074683	3976246	RS_GCF_014636275.1	f	d__Bacteria;p__Actinomycetota;c__Actinomycetia;o__Actinomycetales;f__Cellulomonadaceae;g__Actinotalea;s__Actinotalea carbonis	type strain of species	LPSN	f	39	39	141429	141429	4124	5	3102	NZ_AXCY01000171.1	4124	2	110	NZ_AXCY01000171.1	3102	5729	0	100	AXCY01000171.202.3348	Bacteria;Actinobacteriota;Actinobacteria;Micrococcales;Cellulomonadaceae;Cellulomonas;Cellulomonas carbonis T26	9140	9140	f	f	t	29702	29702	Contig	ASM76717v1	na	PRJNA224116	SAMN03113093	435	29702	China	2014-10-16	GCA_000767175.1	none	full	none	subsurface soil of Tianjin coal mine	none	0	0	Cellulomonas carbonis T26	3702	na	12	none	none	none	none	none	2014/10/16	0	1386092	5	T26	Huazhong Agricultural University	947969	d__Bacteria;p__Actinobacteria;c__Actinomycetia;o__Micrococcales;f__Cellulomonadaceae;g__Cellulomonas;s__Cellulomonas carbonis	d__Bacteria;x__Terrabacteria group;p__Actinobacteria;c__Actinomycetia;o__Micrococcales;f__Cellulomonadaceae;g__Cellulomonas;s__Cellulomonas carbonis;x__Cellulomonas carbonis T26	0	3976246	11	46	assembly from type material	3976246	0	AXCY00000000.1	3776	435	1396	5	915	1663	0	99.454	547854	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	932	NZ_AXCY01000232.1	928	1709	0	99.892	EU469646.1.1401	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured bacterium	0	19	46	0
+RS_GCF_000273055.1	0	99.25	1.13	486	o__Bacteroidales (UID2654)	266	0	5315881	87.70737748410805	110	2530615	42.19582742999321	6060928	RS_GCF_013009555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei	not type material	none	f	17	3	309574	1316285	663095	10	2881	NZ_JH724135.1	1094103	11	106	NZ_JH724134.1	2881	5321	0	100	AGXJ01000077.355.3241	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides dorei CL02T12C06	54521	288615	t	f	f	108682	1094103	Scaffold	Bact_dore_CL02T12C06_V1	na	PRJNA224116	SAMN02463919	110	108682	none	2012-07-23	GCA_000273055.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Phocaeicola dorei CL02T12C06	5265	na	31	21	3	1094103	364542	300176	2012/07/23	89	357276	10	CL02T12C06	Broad Institute	997876	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei;x__Phocaeicola dorei CL02T12C06	63617	6060928	11	94	none	5997311	0	AGXJ00000000.1	5185	21	1094103	10	1528	2822	0	100	361962	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1529	NZ_JH724134.1	1529	2824	0	100	CP011531.2144830.2146373	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides dorei CL03T12C01	63617	19	91	0
+RS_GCF_001278825.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2268765	86.7753517175382	1	1037324	39.675398265154655	2614527	RS_GCF_000023285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga ochracea	not type material	none	f	1	1	2614527	2614527	2614527	4	2828	NZ_CP012589.1	2614527	4	105	NZ_CP012589.1	2828	5223	0	100	CP012589.418716.421560	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. oral taxon 323	2614527	2614527	t	f	f	2614527	2614527	Complete Genome	ASM127882v1	na	PRJNA224116	SAMN04009744	none	none	USA: Boston; MA	2015-09-04	GCA_001278825.1	none	full	none	Supragingival dental plaque; molar tooth	42.36 N 71.05 W	1	0	Capnocytophaga sp. oral taxon 323	2287	na	12	1	1	2614527	2614527	2614527	2015/09/04	0	1705617	4	F0383	The Forsyth Institute	1705617	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;x__unclassified Capnocytophaga;s__Capnocytophaga sp. oral taxon 323	0	2614527	11	47	none	2614527	0	none	2238	1	2614527	4	none	none	none	none	none	none	1512	NZ_CP012589.1	1512	2793	0	100	CP012589.1500577.1502099	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. oral taxon 323	0	19	47	0
+RS_GCF_000827695.1	0	99.05	1.67	316	p__Bacteroidetes (UID2605)	210	50	2224524	87.47072544279489	191	905500	35.605253927784446	2543164	RS_GCF_000827555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	not type material	none	f	16	16	210233	210233	3267	1	2819	NZ_CDOH01000158.1	3267	1	103	NZ_CDOH01000158.1	2819	5206	0	100	CDOH01000158.21.2852	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga canimorsus	13314	13314	t	f	f	42600	42600	Contig	CcanD95.1	na	PRJNA224116	SAMEA3180121	191	42600	none	2015-01-21	GCA_000827695.1	none	full	none	none	none	0	1	Capnocytophaga canis	2199	na	3	none	none	none	none	none	2015/01/21	0	1848903	1	CcD95	BIOZENTRUM, UNIVERSITY OF BASEL	1848903	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	0	2543164	11	41	none	2543164	0	CDOH00000000.1	2244	191	1675	1	1474	2717	0	99.932	2231213	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1502	NZ_CDOH01000032.1	1502	2769	0	99.933	CP022381.697723.699247	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. H2931	0	19	41	0
+RS_GCF_001078055.1	0	99.95	0.55	454	o__Cytophagales (UID2936)	336	0	4100381	85.05615155017027	1	2475257	51.34543217267367	4820793	RS_GCF_001078055.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Rufibacter;s__Rufibacter radiotolerans	type strain of species	LPSN	f	1	1	4820793	4820793	4820793	3	2885	NZ_CP010777.1	4820793	2	106	NZ_CP010777.1	2885	5328	0	100	CP010777.1.4820793	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Rufibacter;Rufibacter sp. DG31D	4820793	4820793	t	f	f	4820793	4820793	Complete Genome	ASM107805v1	na	PRJNA224116	SAMN03291399	none	none	South Korea	2015-07-15	GCA_001078055.1	none	full	none	soil	none	1	0	Rufibacter radiotolerans	3917	representative genome	6	1	1	4820793	4820793	4820793	2015/07/15	0	1379910	2	DG31D	Seoul Women's University	1379910	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Rufibacter;s__Rufibacter radiotolerans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Rufibacter;s__Rufibacter radiotolerans	0	4820793	11	41	assembly from type material	4820793	0	none	3909	1	4820793	2	none	none	none	none	none	none	1507	NZ_CP010777.1	1507	2784	0	100	CP010777.2693476.2694987	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Rufibacter;Rufibacter sp. DG31D	0	19	41	0
+RS_GCF_001045455.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	3546067	88.90153275781584	24	1362722	34.164068113432805	3988758	RS_GCF_001045455.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium sp001045455	not type material	none	f	5	5	580681	580681	283708	1	2741	NZ_LFNE01000007.1	283708	2	101	NZ_LFNE01000007.1	2741	5062	0	100	LFNE01000007.75426.78178	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. FH2	166198	166198	t	f	f	325478	325478	Contig	ASM104545v1	na	PRJNA224116	SAMN03785143	24	325478	USA: PA; Montoursville	2015-07-02	GCA_001045455.1	none	full	none	freshwater creek	41.25 N 76.94 W	0	0	Chryseobacterium sp. FH2	3685	na	4	none	none	none	none	none	2015/07/02	0	1674291	1	FH2	GCAT-SEEK	1674291	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. FH2	0	3988758	11	66	none	3988758	0	LFNE00000000.1	3749	24	283708	1	1512	2571	0	97.354	4316151	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_LFNE01000007.1	1513	2795	0	100	LFNE01000007.73280.74801	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. FH2	0	19	66	0
+RS_GCF_000495995.1	4	100	1.08	152	k__Bacteria (UID2565)	93	0	3889442	89.72886230318818	59	1540974	35.55007927962927	4334661	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	4	4	655991	655991	5161	1	2762	NZ_ASYH01000035.1	388	1	101	NZ_ASYH01000059.1	2762	5101	0	100	CP007547.219350.222125	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis NUHP1	73468	73468	t	f	f	463821	463821	Contig	NUH1	na	PRJNA224116	SAMN02470987	59	463821	Singapore	2013-11-07	GCA_000495995.1	none	full	none	hand hygiene sink aerator of the cardio-thoracic ICU ward of National University Hospital	none	0	0	Elizabethkingia anophelis NUH1	3981	na	3	none	none	none	none	none	2013/11/07	0	1117645	1	NUH1	SCELSE	1338014	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis;x__Elizabethkingia anophelis NUH1	0	4334661	11	45	none	4334661	0	ASYH00000000.1	4055	59	5161	1	1512	2787	0	99.934	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_ASYH01000035.1	1513	2795	0	100	CP016370.2367209.2368730	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	0	19	44	0
+RS_GCF_000220155.1	0	99.46	0.54	275	k__Bacteria (UID2569)	184	0	3238702	83.82755765519038	114	1510344	39.092342777807545	3863529	RS_GCF_900112795.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Thermophagus;s__Thermophagus xiamenensis	type strain of species	LPSN	t	19	19	167627	167627	none	0	none	none	none	0	none	none	none	none	none	none	none	none	33890	33890	f	f	t	77215	77215	Contig	ASM22015v2	na	PRJNA224116	SAMN02471207	114	77215	China: Xiamen; Fujian province	2011-07-06	GCA_000220155.2	none	full	none	offshore hot spring sediment	none	0	0	Thermophagus xiamenensis	2955	representative genome	0	none	none	none	none	none	2011/07/06	0	385682	0	HS1	Key Laboratory of Marine Biogenetic Resources, Third Institute of Oceanography, State Oceanic Administration	385682	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Thermophagus;s__Thermophagus xiamenensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Thermophagus;s__Thermophagus xiamenensis	0	3863529	11	46	assembly from type material	3863529	0	AFSL00000000.1	3054	114	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	46	0
+RS_GCF_000379725.1	105	100	0.3	454	o__Cytophagales (UID2936)	336	0	3970574	89.72795118781956	52	1639582	37.074568276429716	4425125	RS_GCF_000379725.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cytophagaceae;g__Cytophaga;s__Cytophaga aurantiaca	type strain of species	LPSN	f	9	8	328825	328825	3135	1	2886	NZ_KB903658.1	61833	4	106	NZ_KB903634.1	2817	5203	0	100	ARBN01000049.296.3112	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Cytophaga;Cytophaga aurantiaca DSM 3654	85047	94151	t	f	f	180147	251229	Scaffold	ASM37972v1	na	PRJNA224116	SAMN02256446	52	180147	Germany	2013-04-23	GCA_000379725.1	none	full	none	Pond soil	none	0	0	Cytophaga aurantiaca DSM 3654	3793	representative genome	7	47	8	251229	98332	57251	2013/04/23	5	29530	2	DSM 3654	DOE Joint Genome Institute	1121373	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Cytophaga;s__Cytophaga aurantiaca	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Cytophaga;s__Cytophaga aurantiaca;x__Cytophaga aurantiaca DSM 3654	2630	4425125	11	35	assembly from type material	4422495	0	ARBN00000000.1	3871	47	1625	2	1518	2686	0	98.617	163628	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Cytophaga;s__	1518	NZ_KB903660.1	1501	2772	0	100	ARBN01000051.64.1564	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Cytophaga;Cytophaga aurantiaca DSM 3654	2630	19	36	0
+RS_GCF_000378765.1	0	99.62	0	496	s__algicola (UID2847)	263	0	2719950	90.61030158127876	28	1094923	36.54926018427464	3001811	RS_GCF_000378765.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__Psychroflexus tropicus	type strain of species	LPSN	f	3	2	1008924	1008924	1603	2	1486	NZ_KB905357.1	990053	3	105	NZ_KB905343.1	1488	2475	0	96.774	CP003879.3841687.3844720	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroflexus;Psychroflexus torquis ATCC 700755	106990	176577	f	f	t	398616	990053	Scaffold	ASM37876v1	na	PRJNA224116	SAMN02440477	28	398616	USA	2013-04-23	GCA_000378765.1	none	full	none	none	25.76747 N 171.73331 W	0	1	Psychroflexus tropicus DSM 15496	2740	representative genome	8	17	2	990053	342083	145691	2013/04/23	11	197345	3	DSM 15496	DOE Joint Genome Institute	1123035	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__Psychroflexus tropicus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__Psychroflexus tropicus;x__Psychroflexus tropicus DSM 15496	6065	3001811	11	33	assembly from type material	2995746	0	ARLA00000000.1	2778	17	1662	1	1414	2591	0	99.788	576289	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__	1520	NZ_KB905356.1	1504	2778	0	100	ARLA01000003.79.1582	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroflexus;Psychroflexus tropicus DSM 15496	6065	19	33	0
+RS_GCF_000799465.1	0	99.67	0.17	571	s__algicola (UID2846)	303	0	3509518	91.32258996250316	1	1308814	34.05717943580389	3842990	RS_GCF_000799465.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens sp000799465	not type material	none	f	1	1	3842990	3842990	3842990	2	2806	NZ_JUGU01000001.1	3842990	2	102	NZ_JUGU01000001.1	2805	5180	0	100	JUGU01000001.1545993.1548800	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Psychroserpens sp. Hel_I_66	3842990	3842990	t	f	f	3842990	3842990	Contig	ASM79946v1	na	PRJNA224116	SAMN02841244	1	3842990	none	2014-12-09	GCA_000799465.1	none	full	none	none	none	0	1	Psychroserpens sp. Hel_I_66	3362	na	6	none	none	none	none	none	2014/12/09	0	1250004	2	Hel_I_66	DOE Joint Genome Institute	1250004	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;x__unclassified Psychroserpens;s__Psychroserpens sp. Hel_I_66	0	3842990	11	37	none	3842990	0	JUGU00000000.1	3429	1	3842990	2	1485	2534	0	97.441	150437	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__	1518	NZ_JUGU01000001.1	1502	2774	0	100	JUGU01000001.1549287.1550788	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Psychroserpens sp. Hel_I_66	0	19	38	0
+RS_GCF_000737515.1	0	100	0.3	454	o__Cytophagales (UID2936)	336	0	4285693	85.53263345623293	4	3098641	61.84178961616128	5010594	RS_GCF_000737515.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter sp000737515	not type material	none	f	1	1	4870994	4870994	4870994	4	2907	NZ_CP006587.1-#4	none	0	none	none	2907	5369	0	100	CP006587.2162886.2165801	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. APR13	1252648	1252648	f	f	t	4870994	4870994	Complete Genome	ASM73751v1	na	PRJNA224116	SAMN02988321	none	none	China: Jiangsu	2014-08-04	GCA_000737515.1	none	full	none	silkworm feces	none	4	0	Hymenobacter sp. APR13	4179	na	12	4	1	4870994	4870994	4870994	2014/08/04	0	1356852	4	APR13	Nanjing Agricultural University	1356852	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;x__unclassified Hymenobacter;s__Hymenobacter sp. APR13	0	5010594	11	44	none	5010594	0	none	4263	4	4870994	4	none	none	none	none	none	none	1511	NZ_CP006587.1-#4	1511	2791	0	100	CP006587.2161126.2162649	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. APR13	0	19	42	0
+RS_GCF_000583675.1	0	99.46	0.54	275	k__Bacteria (UID2569)	184	0	4928403	87.23576742169823	299	2113846	37.41637565379436	5649521	RS_GCF_000517085.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Saccharicrinis;s__Saccharicrinis fermentans	type strain of species	LPSN	t	29	29	218358	218358	3119	1	2789	NZ_BAMD01000161.1	3119	1	103	NZ_BAMD01000161.1	2789	5151	0	100	BAMD01000161.221.3018	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Saccharicrinis;Saccharicrinis fermentans DSM 9555 = JCM 21142	18894	18894	t	f	f	59017	59017	Contig	ASM58367v1	na	PRJNA224116	SAMD00008733	299	59017	none	2014-02-27	GCA_000583675.1	none	full	none	none	none	0	0	Saccharicrinis fermentans DSM 9555 = JCM 21142	4506	na	3	none	none	none	none	none	2014/02/27	0	982	1	JCM 21142	The University of Tokyo	869213	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Saccharicrinis;s__Saccharicrinis fermentans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Saccharicrinis;s__Saccharicrinis fermentans;x__Saccharicrinis fermentans DSM 9555 = JCM 21142	0	5649521	11	45	assembly from type material	5649521	0	BAMD00000000.1	4939	299	1713	1	1464	2663	0	99.249	1127185	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Marinilabiaceae;g__Cytophaga;s__fermentans	1519	NZ_BAMD01000190.1	1466	2667	0	99.25	M58766.1.1474	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Saccharicrinis;Saccharicrinis fermentans	0	18	45	0
+RS_GCF_000325705.1	0	100	0	454	o__Cytophagales (UID2936)	336	0	4870724	86.85251888360283	1	2509805	44.75369291231874	5608040	RS_GCF_000325705.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Echinicola;s__Echinicola vietnamensis	type strain of species	LPSN	f	1	1	5608040	5608040	5608040	4	2892	NC_019904.1	5608040	4	95	NC_019904.1	2892	5341	0	100	CP003346.5532660.5535553	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Echinicola;Echinicola vietnamensis DSM 17526	5608040	5608040	t	f	f	5608040	5608040	Complete Genome	ASM32570v1	na	PRJNA224116	SAMN02232018	none	none	Viet Nam	2012-12-19	GCA_000325705.1	none	full	none	seawater from mussel farm	12.230558 N 109.201183 E	1	0	Echinicola vietnamensis DSM 17526	4529	representative genome	12	1	1	5608040	5608040	5608040	2012/12/19	0	390884	4	DSM 17526	DOE Joint Genome Institute	926556	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Echinicola;s__Echinicola vietnamensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Echinicola;s__Echinicola vietnamensis;x__Echinicola vietnamensis DSM 17526	0	5608040	11	45	assembly from type material	5608040	0	none	4631	1	5608040	4	none	none	none	none	none	none	1519	NC_019904.1	1437	2651	0	99.93	AM406795.1.1437	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Echinicola;Echinicola vietnamensis	0	19	45	0
+RS_GCF_000271945.1	2	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	1932704	86.20207648138187	104	1083562	48.328858282115554	2242062	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	17	17	176576	176576	9377	1	2889	NZ_AJZS01000099.1	9377	1	106	NZ_AJZS01000099.1	2889	5336	0	100	CP011995.2193448.2196342	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	21558	21558	t	f	f	33147	33147	Contig	PgingivalisW50v1.0	na	PRJNA224116	SAMN00792205	104	33147	none	2012-06-25	GCA_000271945.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Porphyromonas gingivalis W50	1996	na	3	none	none	none	none	none	2012/06/25	0	837	1	W50	J. Craig Venter Institute	1125722	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis;x__Porphyromonas gingivalis W50	0	2242062	11	48	none	2242062	0	AJZS00000000.1	1960	104	9377	1	1527	2809	0	99.869	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_AJZS01000099.1	1528	2811	0	99.869	CP025931.2275253.2276794	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	48	0
+RS_GCF_000598925.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4630858	88.97358492886121	102	2254149	43.30940778011495	5204756	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	13	13	622654	622654	5355	4	2881	NZ_JGEG01000033.1	5355	7	106	NZ_JGEG01000033.1	2881	5321	0	100	JGEG01000033.2247.5132	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 3397 N3	51027	51027	t	f	f	116865	116865	Contig	ASM59892v1	na	PRJNA224116	SAMN02314529	102	116865	USA	2014-03-20	GCA_000598925.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3397 N3	4570	na	19	none	none	none	none	none	2014/03/20	0	817	4	3397 N3	IGS	1339301	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3397 N3	0	5204756	11	83	none	5204756	0	JGEG00000000.1	4378	102	65394	2	1525	2784	0	99.607	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGEG01000088.1	1526	2802	0	99.803	FQ312004.3903056.3904588	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis 638R	0	19	84	0
+RS_GCF_000598425.1	0	98.14	1.61	492	o__Bacteroidales (UID2657)	269	100	4695861	89.22607013650321	426	2283232	43.38369865928921	5262880	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	42	42	130036	130036	1379	7	1378	NZ_JGCQ01000334.1	1087	7	106	NZ_JGCQ01000101.1	1378	2545	0	100	JGCO01000337.1.2076	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 2-F-2 #7	12354	12354	f	f	t	34895	34895	Contig	ASM59842v1	na	PRJNA224116	SAMN02315073	426	34895	USA	2014-03-20	GCA_000598425.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 34-F-2 #13	4745	na	23	none	none	none	none	none	2014/03/20	0	817	7	34-F-2 #13	IGS	1339336	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 34-F-2 #13	0	5262880	11	87	none	5262880	0	JGCQ00000000.1	4594	426	1609	6	785	1450	0	100	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	786	NZ_JGCQ01000361.1	786	1452	0	100	CP012706.2989623.2991162	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	89	0
+RS_GCF_000769435.1	0	99.62	0.19	496	s__algicola (UID2847)	263	0	2923033	90.78898244807569	19	1225785	38.08453391081188	3219590	RS_GCF_001653755.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Dokdonia;s__Dokdonia donghaensis	type strain of species	LPSN	t	3	1	662038	3196506	3196506	1	2817	NZ_JSAQ01000001.1	3196506	3	104	NZ_JSAQ01000001.1	2817	5203	0	100	CP015125.1804275.1807091	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Dokdonia;Dokdonia donghaensis DSW-1	169399	357732	t	f	f	416949	3196506	Scaffold	ASM76943v1	na	PRJNA224116	SAMN03135132	19	416949	South Korea	2014-10-27	GCA_000769435.1	none	full	none	sea water	none	0	1	Dokdonia donghaensis DSW-1	2844	na	3	9	1	3196506	3196506	3196506	2014/10/27	10	326320	1	DSW-1	University of La Laguna	1300343	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Dokdonia;s__Dokdonia donghaensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Dokdonia;s__Dokdonia donghaensis;x__Dokdonia donghaensis DSW-1	1000	3219590	11	40	assembly from type material	3218590	0	JSAQ00000000.1	2867	9	3196506	1	1519	2761	0	99.473	145419	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Krokinobacter;s__genikus	1520	NZ_JSAQ01000001.1	1520	2808	0	100	CP015125.60470.61989	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Dokdonia;Dokdonia donghaensis DSW-1	1000	19	40	0
+RS_GCF_000688315.1	0	99.67	0.83	571	s__algicola (UID2846)	303	33.33	4356435	91.23347657820668	3	1659370	34.75091308135639	4775040	RS_GCF_900112245.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter stanieri	not type material	none	f	2	2	2306468	2306468	2306468	4	2817	NZ_JHZW01000002.1-#2	2306468	4	108	NZ_JHZW01000002.1	2817	5203	0	100	JHZW01000002.2290754.2293582	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter sp. Hel_I_7	1591680	1591680	t	f	f	2196190	2196190	Contig	ASM68831v1	na	PRJNA224116	SAMN02743898	3	2196190	none	2014-04-08	GCA_000688315.1	none	full	none	none	54.1841 N 7.9 E	0	1	Maribacter sp. Hel_I_7	4112	na	12	none	none	none	none	none	2014/04/08	0	1249997	4	Hel_I_7	DOE Joint Genome Institute	1249997	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;x__unclassified Maribacter;s__Maribacter sp. Hel_I_7	0	4775040	11	43	none	4775040	0	JHZW00000000.1	4179	3	272382	4	1506	2782	0	100	243393	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__	1522	NZ_JHZW01000001.1	1520	2654	0	98.224	LAZR01026266.489.2006	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;marine sediment metagenome	0	19	43	0
+RS_GCF_001045435.1	0	100	0.74	324	o__Flavobacteriales (UID2815)	204	0	2796094	88.64660898490047	64	1265610	40.12455761407874	3154203	RS_GCF_001045435.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella koreensis	type strain of species	LPSN	f	7	7	323096	323096	323096	1	2752	NZ_LFNG01000006.1	122510	2	94	NZ_LFNG01000013.1	2752	5083	0	100	LFNG01000006.196370.199132	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium koreense CCUG 49689	49284	49284	t	f	f	142678	142678	Contig	ASM104543v1	na	PRJNA224116	SAMN03787380	64	142678	South Korea	2015-07-02	GCA_001045435.1	none	full	none	freshwater stream	none	0	0	Chryseobacterium koreense CCUG 49689	2932	na	6	none	none	none	none	none	2015/07/02	0	232216	2	CCUG 49689	GCAT-SEEK	1304281	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium koreense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium koreense;x__Chryseobacterium koreense CCUG 49689	0	3154203	11	40	assembly from type material	3154203	0	LFNG00000000.1	2980	64	323096	1	1470	2699	0	99.796	46641	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_LFNG01000006.1	1470	2699	0	99.796	AF344179.1.1472	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium koreense	0	19	39	0
+RS_GCF_000374505.1	0	99.28	0.48	314	p__Bacteroidetes (UID2605)	208	0	3455694	89.39494749651287	32	2235550	57.846222794705746	3865648	GB_GCA_025145285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii	type strain of species	LPSN	f	5	5	608369	608369	2655	3	2625	NZ_KB894565.1	293051	2	109	NZ_KB894547.1	2616	4831	0	100	ARFY01000005.2.2617	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes onderdonkii WAL 8169 = DSM 19147	120770	133298	t	f	f	322666	322666	Scaffold	ASM37450v1	na	PRJNA224116	SAMN02441364	32	322666	USA	2013-04-23	GCA_000374505.1	none	full	none	none	none	0	0	Alistipes onderdonkii WAL 8169 = DSM 19147	3187	na	7	29	5	322666	125863	99819	2013/04/23	3	328813	2	DSM 19147	DOE Joint Genome Institute	1203611	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii;x__Alistipes onderdonkii WAL 8169 = DSM 19147	1005	3865648	11	43	assembly from type material	3864643	0	ARFY00000000.1	3161	29	608369	2	1486	2745	0	100	607515	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__onderdonkii	1525	NZ_KB894541.1	1508	2785	0	100	ARFY01000017.91797.93304	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes onderdonkii WAL 8169 = DSM 19147	1005	19	43	0
+RS_GCF_000333355.1	138	94.59	4.57	324	o__Flavobacteriales (UID2815)	204	61.54	3627048	87.06822342365872	701	1543384	37.05165270953522	4165754	RS_GCF_000333355.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium sp000333355	not type material	none	f	83	83	104566	104566	10572	2	2743	NZ_BACY01000184.1	1520	3	101	NZ_BACY01000048.1	2740	5060	0	100	BACY01000184.4420.7163	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Flavobacterium sp. B17	5942	5976	t	f	f	15427	15427	Scaffold	ASM33335v1	na	PRJNA224116	SAMD00036569	701	15427	none	2013-01-08	GCA_000333355.1	none	full	none	none	none	0	0	Flavobacterium sp. B17	4070	na	7	697	83	15427	7960	2974	2013/01/08	4	95618	2	B17	Kazusa DNA Research Institute	95618	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. B17	123	4165754	11	56	none	4165631	0	BACY00000000.1	4330	697	10572	2	1483	2699	0	99.528	248871	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_BACY01000184.1	1497	2765	0	100	BACY01000184.7855.9351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Flavobacterium sp. B17	123	19	56	0
+RS_GCF_000614205.1	0	98.5	0	567	g__Prevotella (UID2724)	296	0	2544727	85.52229481101242	82	1288315	43.29723983729865	2975513	RS_GCF_000614205.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella saccharolytica	type strain of species	LPSN	f	9	9	400690	400690	2514	2	2209	NZ_BAKN01000055.1	2514	1	110	NZ_BAKN01000055.1	2209	4080	0	100	BAKN01000055.1.2216	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella saccharolytica JCM 17484	36286	36286	t	f	f	84653	84653	Contig	ASM61420v1	na	PRJNA224116	SAMD00006087	82	84653	none	2014-03-31	GCA_000614205.1	none	full	none	none	none	0	0	Prevotella saccharolytica JCM 17484	2410	na	4	none	none	none	none	none	2014/03/31	0	633701	1	JCM 17484	The University of Tokyo	1236516	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella saccharolytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella saccharolytica;x__Prevotella saccharolytica JCM 17484	0	2975513	11	48	assembly from type material	2975513	0	BAKN00000000.1	2762	82	1677	1	1361	2497	0	99.78	1064443	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1398	NZ_BAKN01000060.1	1363	2501	0	99.78	AB616135.1.1491	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella saccharolytica	0	19	48	0
+RS_GCF_000273115.1	0	99.26	0.07	492	o__Bacteroidales (UID2657)	269	0	4656410	89.09705710932295	35	2265173	43.44382116858598	5226222	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	5	2	698375	1812676	1812676	5	4282	NZ_JH724181.1-#2	1028707	5	106	NZ_JH724183.1	2883	5325	0	100	AGXL01000003.45.2929	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis CL03T12C07	148972	746603	t	f	f	312513	1481262	Scaffold	Bact_frag_CL03T12C07_V1	na	PRJNA224116	SAMN02463922	35	312513	none	2012-07-23	GCA_000273115.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides fragilis CL03T12C07	4588	na	13	7	2	1481262	1028707	877841	2012/07/23	28	817	4	CL03T12C07	Broad Institute	997879	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis CL03T12C07	12194	5226222	11	68	none	5214028	0	AGXL00000000.1	4354	7	1812676	5	1525	2784	0	99.607	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JH724181.1	1526	2802	0	99.803	CP012706.4164520.4166059	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	12194	19	67	0
+RS_GCF_000601055.1	0	98.88	0.45	492	o__Bacteroidales (UID2657)	269	50	4749372	89.0492278598566	133	2312982	43.36768338082316	5333423	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	13	13	444802	444802	5772	2	2881	NZ_JHEF01000052.1	172670	7	106	NZ_JHEF01000031.1	2881	5321	0	100	JHEF01000052.225.3108	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. S23L17	40100	40100	t	f	f	105766	105766	Contig	ASM60105v1	na	PRJNA224116	SAMN02315067	133	105766	USA	2014-03-26	GCA_000601055.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. S23L17	4774	na	18	none	none	none	none	none	2014/03/26	0	817	5	S23L17	IGS	1339329	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. S23L17	0	5333423	11	90	none	5333423	0	JHEF00000000.1	4550	133	39273	4	1525	2778	0	99.541	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JHEF01000050.1	1526	2802	0	99.803	CP011073.4368909.4370448	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	90	0
+RS_GCF_000826655.1	0	99.5	0.33	571	s__algicola (UID2846)	303	0	3582923	90.8042903731698	106	1282109	32.49330167744447	3945764	RS_GCF_000826655.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens damuponensis	type strain of species	LPSN	f	6	6	532260	532260	437291	1	2807	NZ_JXJO01000016.1	437291	1	102	NZ_JXJO01000016.1	2804	5179	0	100	JXJO01000016.231154.233960	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Psychroserpens damuponensis	37224	37224	t	f	f	232058	232058	Contig	ASM82665v1	na	PRJNA224116	SAMN02929384	106	232058	South Korea	2015-01-20	GCA_000826655.1	none	full	none	sea water	none	0	1	Psychroserpens damuponensis	3527	representative genome	3	none	none	none	none	none	2015/01/20	0	943936	1	JCM 17632	KORIA POLAR RESEARCH INSTITUTE	943936	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens damuponensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens damuponensis	0	3945764	11	35	assembly from type material	3945764	0	JXJO00000000.1	3582	106	437291	1	1480	2667	0	99.189	2464	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__	1518	NZ_JXJO01000016.1	1444	2667	0	100	HQ336490.1.1444	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Psychroserpens damuponensis	0	19	35	0
+RS_GCF_000170795.1	0	100	0.64	314	p__Bacteroidetes (UID2605)	209	0	5239100	90.51574156011675	47	2599724	44.91533769380866	5788054	RS_GCF_000170795.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter sp000170795	not type material	none	f	8	8	510929	510929	510929	7	2868	NZ_ABCM01000001.1	189001	7	292	NZ_ABCM01000012.1-#2	2859	5280	0	100	ABCM01000012.28463.31326	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. BAL39	123150	123150	t	f	f	239014	239014	Contig	ASM17079v1	na	PRJNA224116	SAMN02436100	47	239014	none	2007-06-20	GCA_000170795.1	none	full	none	none	none	0	0	Pedobacter sp. BAL39	4820	na	21	none	none	none	none	none	2007/06/20	0	391596	6	BAL39	Moore Foundation	391596	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;x__unclassified Pedobacter;s__Pedobacter sp. BAL39	0	5788054	11	61	none	5788054	0	ABCM00000000.1	4935	47	510929	6	1518	2760	0	99.473	2453163	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	1519	NZ_ABCM01000001.1	1502	2774	0	100	ABCM01000001.364165.365666	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. BAL39	0	19	61	0
+RS_GCF_000022605.2	0	98.82	0	143	k__Bacteria (UID2565)	85	0	609138	95.0389665098645	2	174070	27.158760248699167	640935	RS_GCF_000022605.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Blattabacteriaceae;g__Blattabacterium;s__Blattabacterium sp000022605	not type material	none	f	1	1	636850	636850	636850	1	2877	NC_013454.1	636850	1	103	NC_013454.1	2877	5313	0	100	CP001487.295061.297938	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Blattabacteriaceae;Blattabacterium;Blattabacterium sp. (Blattella germanica) str. Bge	320467	320467	t	f	f	636850	636850	Complete Genome	ASM2260v1	na	PRJNA224116	SAMN02604249	none	none	none	2011-06-17	GCA_000022605.2	none	full	none	none	none	2	0	Blattabacterium sp. (Blattella germanica) str. Bge	594	na	3	2	1	636850	636850	636850	2011/06/17	0	624186	1	Alboraia	University of Valencia	331104	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Blattabacteriaceae;g__Blattabacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Blattabacteriaceae;g__Blattabacterium;x__unclassified Blattabacterium;s__Blattabacterium sp. (Blattella germanica);x__Blattabacterium sp. (Blattella germanica) str. Bge	0	640935	11	34	none	640935	0	none	596	2	636850	1	none	none	none	none	none	none	1531	NC_013454.1	1524	2815	0	100	CP001487.293222.294748	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Blattabacteriaceae;Blattabacterium;Blattabacterium sp. (Blattella germanica) str. Bge	0	19	34	0
+RS_GCF_000275825.1	1	100	0	300	p__Bacteroidetes (UID2591)	201	0	3705202	82.42482620543908	76	2067077	46.05633636494689	4495250	RS_GCF_000275825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__Saprospira;s__Saprospira grandis_A	not type material	none	f	10	1	486435	4422561	4422561	3	2808	NZ_JH719942.1-#2	4422561	2	102	NZ_JH719942.1	2808	5186	0	100	AGRT01000027.122655.125466	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Saprospira;Saprospira grandis DSM 2844	59054	899050	t	f	f	145991	4422561	Scaffold	ASM27582v1	na	PRJNA224116	SAMN02261388	76	145991	France	2012-07-12	GCA_000275825.1	none	full	none	Decaying crab carapace; Roscoff; France	48.70 N 3.97 W	0	0	Saprospira grandis DSM 2844	4021	na	9	5	1	4422561	4422561	4422561	2012/07/12	71	1008	3	DSM 2844	JGI	694433	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__Saprospira;s__Saprospira grandis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__Saprospira;s__Saprospira grandis;x__Saprospira grandis DSM 2844	7100	4495250	11	48	none	4488150	0	AGRT00000000.1	3537	5	4422561	3	1524	2769	0	99.475	3496030	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Saprospiraceae;g__Saprospira;s__	1526	NZ_JH719942.1-#2	1508	2785	0	100	AGRT01000027.120929.122436	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Saprospira;Saprospira grandis DSM 2844	7100	19	48	0
+RS_GCF_000947275.1	0	93.81	0.48	316	p__Bacteroidetes (UID2605)	210	0	2164274	86.41844872169595	206	903546	36.07816924691305	2504412	RS_GCF_002302565.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canimorsus	not type material	none	f	28	28	75826	75826	26108	2	2822	NZ_CDOJ01000103.1	14968	3	104	NZ_CDOJ01000043.1	2822	5212	0	100	CDOJ01000103.7221.10055	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga canimorsus	12157	12157	t	f	f	28366	28366	Contig	Cc2.1	na	PRJNA224116	SAMEA3180117	206	28366	none	2015-01-21	GCA_000947275.1	none	full	none	none	none	0	0	Capnocytophaga canimorsus	2347	na	6	none	none	none	none	none	2015/01/21	0	28188	1	Cc2	BIOZENTRUM, UNIVERSITY OF BASEL	28188	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canimorsus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canimorsus	0	2504412	11	35	none	2504412	0	CDOJ00000000.1	2672	206	26108	1	1467	2678	0	99.591	314128	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__canimorsus	1512	NZ_CDOJ01000103.1	1512	2763	0	99.669	CP022389.193017.194537	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga canimorsus	0	20	35	0
+RS_GCF_000466425.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2421345	88.87933293837035	191	1130265	41.62262944732952	2724306	RS_GCF_000466425.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga sp000466425	not type material	none	f	15	9	173235	326066	4984	1	2818	NZ_KE992121.1	none	0	none	none	2818	5204	0	100	AWSR01000088.13.2841	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. oral taxon 863 str. F0517	14217	26449	f	f	t	60987	88323	Scaffold	ASM46642v1	na	PRJNA224116	SAMN02436819	191	60987	USA	2013-09-12	GCA_000466425.1	none	full	none	supragingival plaque biofilm of a molar	none	0	1	Capnocytophaga sp. oral taxon 863 str. F0517	2594	na	2	103	9	88323	44815	18239	2013/09/12	88	1227265	1	F0517	Washington University	1227266	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;x__unclassified Capnocytophaga;s__Capnocytophaga sp. oral taxon 863;x__Capnocytophaga sp. oral taxon 863 str. F0517	8800	2724306	11	45	none	2715506	0	AWSR00000000.1	2594	103	4984	1	1476	2654	0	99.119	245563	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1509	NZ_KE992121.1	1501	2772	0	100	AWSR01000088.3347.4847	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. oral taxon 863 str. F0517	8800	19	44	0
+RS_GCF_000162215.1	1	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4055456	90.37320493981666	62	2065109	46.380751723801815	4487454	GB_GCA_025147485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	not type material	none	f	10	2	464323	1436640	5145	1	2871	NZ_GG730109.1	1436640	2	106	NZ_GG730105.1	2871	5291	0	99.93	CEBY01031409.104682.107559	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;gut metagenome	71814	299163	t	f	f	149898	1323254	Scaffold	ASM16221v1	na	PRJNA224116	SAMN02463737	62	149898	none	2009-12-04	GCA_000162215.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides sp. D20	3633	na	4	15	2	1323254	1048216	661006	2009/12/04	47	585543	1	D20	Broad Institute	585543	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. D20	34940	4487454	11	60	none	4452514	0	ACPT00000000.1	3658	15	5145	1	1523	2796	0	99.803	4369395	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1524	NZ_GG730109.1	1517	2791	0	99.868	EU136680.1.2019	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	34940	19	58	0
+RS_GCF_000416985.1	0	99.37	4.76	316	p__Bacteroidetes (UID2605)	210	70	4641102	90.53408081642351	23	2094393	40.855371229365716	5126359	RS_GCF_000416985.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium paucimobilis	type strain of species	LPSN	f	4	4	1001915	1001915	233488	5	2874	NZ_ATDL01000003.1	149667	6	108	NZ_ATDL01000001.1	2874	5308	0	100	ATDL01000003.253.3135	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium paucimobilis HER1398	222885	222885	t	f	f	416944	416944	Contig	23.k55	na	PRJNA224116	SAMN02471610	23	416944	India: KA	2013-07-01	GCA_000416985.1	none	full	none	homogenate diseased silkworms	none	0	0	Sphingobacterium paucimobilis HER1398	4266	representative genome	18	none	none	none	none	none	2013/07/01	0	1385985	6	HER1398	University of British Columbia	1346330	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium paucimobilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium paucimobilis;x__Sphingobacterium paucimobilis HER1398	0	5126359	11	68	assembly from type material	5126359	0	ATDL00000000.1	4354	23	233488	2	1492	2438	0	96.18	4406530	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	1525	NZ_ATDL01000003.1	1525	2817	0	100	ATDL01000003.3570.5106	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium paucimobilis HER1398	0	19	64	0
+RS_GCF_000430525.1	0	98.99	0.05	567	g__Prevotella (UID2724)	296	0	2404831	85.8805030772736	93	1231453	44.124736414956764	2800206	RS_GCF_000430525.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella corporis	type strain of species	LPSN	f	13	12	224786	224786	1192	1	1188	NZ_AUME01000091.1	3116	1	86	NZ_AUME01000079.1	1188	2194	0	100	BAIT01000093.337.3226	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella corporis DSM 18810 = JCM 8529	30009	33335	f	f	t	54867	60710	Scaffold	ASM43052v1	na	PRJNA224116	SAMN02441145	93	54867	none	2013-07-16	GCA_000430525.1	none	full	none	none	none	0	0	Prevotella corporis DSM 18810 = JCM 8529	2423	representative genome	2	84	12	60710	35471	17712	2013/07/16	9	28128	0	DSM 18810	DOE Joint Genome Institute	1122981	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella corporis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella corporis;x__Prevotella corporis DSM 18810 = JCM 8529	9361	2800206	11	45	assembly from type material	2790845	0	AUME00000000.1	2506	84	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	9361	18	45	0
+RS_GCF_000210575.1	0	97.12	0	314	p__Bacteroidetes (UID2605)	208	0	3195013	84.89885385685022	197	2100660	57.55750105762929	3763317	GB_GCA_025145845.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes shahii	type strain of species	LPSN	f	36	1	84377	3763317	3763317	1	2865	NC_021030.1	3763317	1	109	NC_021030.1	2865	5291	0	100	FP929032.883349.886219	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes shahii WAL 8301	18526	3763317	t	f	f	31365	3763317	Chromosome	ASM21057v1	na	PRJNA224116	SAMEA3138370	197	31365	none	2010-03-25	GCA_000210575.1	none	full	none	none	none	1	0	Alistipes shahii WAL 8301	3110	na	3	1	1	3763317	3763317	3763317	2010/03/25	196	328814	1	WAL 8301	metaHIT	717959	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes shahii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes shahii;x__Alistipes shahii WAL 8301	113645	3763317	11	45	assembly from type material	3649672	0	none	3079	1	3763317	1	none	none	none	none	none	none	1521	NC_021030.1	1512	2793	0	100	FP929032.881290.882801	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes shahii WAL 8301	113645	19	45	0
+RS_GCF_000768955.1	57	99.45	0	475	f__Porphyromonadaceae (UID2622)	318	0	1831688	87.00419467749528	14	956532	45.435985616773465	2105287	RS_GCF_900167225.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	not type material	none	f	2	2	608641	608641	608641	1	2864	NZ_JQJB01000006.1	608641	1	105	NZ_JQJB01000006.1	2864	5289	0	100	JQJB01000006.232163.235042	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas crevioricanis	150377	150377	t	f	f	491012	491012	Contig	ASM76895v1	na	PRJNA224116	SAMN03004341	14	491012	United Kingdom: Leicestershire	2014-10-27	GCA_000768955.1	none	full	none	dog mouth	none	0	0	Porphyromonas crevioricanis	1799	na	3	none	none	none	none	none	2014/10/27	0	393921	1	COT-253 OH2125	UC Davis	393921	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas crevioricanis	0	2105287	11	49	none	2105287	0	JQJB00000000.1	1820	14	608641	1	1489	2750	0	100	643126	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_JQJB01000006.1	1519	2800	0	99.934	LS483447.316388.317906	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas crevioricanis	0	19	49	0
+RS_GCF_000598985.1	0	99.26	0.58	492	o__Bacteroidales (UID2657)	269	100	4640087	89.21408479409045	87	2245168	43.16742516443732	5201070	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	7	7	897750	897750	70341	6	1570	NZ_JGEK01000065.1	70341	6	106	NZ_JGEK01000065.1	1570	2900	0	100	JHEF01000052.225.3108	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. S23L17	59782	59782	f	f	t	198514	198514	Contig	ASM59898v1	na	PRJNA224116	SAMN02314413	87	198514	Thailand	2014-03-20	GCA_000598985.1	none	full	none	stool	none	0	0	Bacteroides fragilis str. A7 (UDC12-2)	4504	na	18	none	none	none	none	none	2014/03/20	0	817	5	A7 (UDC12-2)	IGS	1339274	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. A7 (UDC12-2)	0	5201070	11	72	none	5201070	0	JGEK00000000.1	4308	87	27620	4	1525	2772	0	99.475	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGEK01000066.1	1526	2802	0	99.803	CP011073.4641052.4642591	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	72	0
+RS_GCF_000973105.1	0	99.67	1.04	571	s__algicola (UID2846)	303	0	4982811	90.24032763751532	1	2362167	42.77961255494673	5521712	RS_GCF_000973105.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zobellia;s__Zobellia galactanivorans	type strain of species	LPSN	t	1	1	5521712	5521712	5521712	2	2819	NC_015844.1	5521712	2	103	NC_015844.1	2819	5206	0	100	FP476056.3532100.3534944	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Zobellia;Zobellia galactanivorans	5521712	5521712	t	f	f	5521712	5521712	Complete Genome	ASM97310v1	na	PRJNA224116	SAMEA3315864	none	none	none	2011-07-10	GCA_000973105.1	none	full	none	none	none	1	1	Zobellia galactanivorans	4465	representative genome	6	1	1	5521712	5521712	5521712	2011/07/10	0	63186	2	DsiJT	Genoscope CEA	63186	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zobellia;s__Zobellia galactanivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zobellia;s__Zobellia galactanivorans	0	5521712	11	40	assembly from type material	5521712	0	none	4550	1	5521712	2	none	none	none	none	none	none	1521	NC_015844.1	1521	2809	0	100	FP476056.3529953.3531478	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Zobellia;Zobellia galactanivorans	0	19	40	0
+RS_GCF_000377685.1	0	99.32	0.34	567	g__Prevotella (UID2724)	296	100	2647790	86.43826829001556	53	1341757	43.83152318607696	3063215	RS_GCF_900637655.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella oris	type strain of species	LPSN	f	7	7	313901	313901	none	0	none	none	56732	4	108	NZ_KB898595.1	none	none	none	none	none	none	57757	66591	f	f	t	167458	173440	Scaffold	ASM37768v1	na	PRJNA224116	SAMN02440460	53	167458	none	2013-04-23	GCA_000377685.1	none	full	none	none	none	0	0	Prevotella oris DSM 18711 = JCM 12252	2560	na	6	46	7	173440	119965	66476	2013/04/23	7	28135	1	DSM 18711	DOE Joint Genome Institute	1122989	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella oris	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella oris;x__Prevotella oris DSM 18711 = JCM 12252	2046	3063215	11	51	assembly from type material	3061169	0	ARIU00000000.1	2625	46	153289	1	267	494	1.19e-138	100	610343	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	268	NZ_KB898587.1	268	492	1.1e-137	99.627	L16474.1.1480	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella oris	2046	18	51	0
+RS_GCF_000463315.1	12	99.26	0.93	491	o__Bacteroidales (UID2657)	269	0	6437312	90.89516597271329	25	3023590	42.69331369325213	7082128	RS_GCF_000158035.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	not type material	none	f	3	3	1976684	1976684	4835	6	2736	NZ_ATFI01000022.1	885155	4	105	NZ_ATFI01000004.1	2736	5046	0	100	ATFI01000022.2097.4835	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides cellulosilyticus WH2	283285	283285	t	f	f	798728	798728	Contig	B_cell_WH2_1.0	na	PRJNA224116	SAMN02436915	25	798728	USA	2013-08-30	GCA_000463315.1	none	full	none	stool sample	none	2	0	Bacteroides cellulosilyticus WH2	5386	na	15	none	none	none	none	none	2013/08/30	0	246787	5	WH2	Center for Genome Sciences and Systems Biology, Washington University in St. Louis	1268240	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus;x__Bacteroides cellulosilyticus WH2	0	7082128	11	59	none	7082128	0	ATFI00000000.1	5490	25	4835	5	1519	2710	0	98.881	4319619	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1519	NZ_ATFI01000022.1	1520	2795	0	99.868	CP012801.1646789.1648308	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides cellulosilyticus	0	19	58	0
+RS_GCF_000598485.1	0	99.07	8.92	492	o__Bacteroidales (UID2657)	269	100	5434019	89.09834560330552	444	2688111	44.07534145501648	6098900	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	38	38	241867	241867	2362	7	1492	NZ_JGDB01000199.1	55544	7	106	NZ_JGDB01000197.1	1492	2745	0	99.866	ACPP01000056.328.3214	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. 2_1_16	13736	13736	f	f	t	49644	49644	Contig	ASM59848v1	na	PRJNA224116	SAMN02363970	444	49644	USA	2014-03-20	GCA_000598485.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3998T(B)3	5688	na	23	none	none	none	none	none	2014/03/20	0	817	7	3998T(B)3	IGS	1339316	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3998T(B)3	0	6098900	11	88	none	6098900	0	JGDB00000000.1	5459	444	1684	7	1209	2222	0	99.835	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1210	NZ_JGDB01000245.1	1210	2224	0	99.835	CP011073.3048810.3050349	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	85	0
+RS_GCF_000163495.1	0	98.99	0.11	567	g__Prevotella (UID2724)	296	100	2896062	79.6606463101764	189	1669800	46.75524533483566	3635499	RS_GCF_000378085.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella loescheii	not type material	none	f	25	2	193360	1573102	5307	1	2892	NZ_GG704830.1	5307	1	108	NZ_GG704830.1	2890	5337	0	100	ACZS01000105.276.3170	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. oral taxon 472 str. F0295	18896	93217	t	f	f	41750	1184459	Scaffold	ASM16349v1	na	PRJNA224116	SAMN00216890	189	41750	none	2009-10-08	GCA_000163495.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Prevotella sp. oral taxon 472 str. F0295	2811	na	4	39	2	1184459	1184459	291887	2009/10/08	150	655809	2	F0295	Baylor College of Medicine	619693	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. oral taxon 472;x__Prevotella sp. oral taxon 472 str. F0295	64135	3635499	11	45	none	3571364	0	ACZS00000000.1	2930	39	5307	1	1427	2636	0	100	851935	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1428	NZ_GG704830.1	1393	2523	0	99.354	AB547689.1.1476	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella loescheii	64135	18	45	0
+RS_GCF_000379945.1	3	99.92	0.16	475	f__Porphyromonadaceae (UID2622)	318	0	1962954	88.63991662324128	32	965424	43.60878821263973	2214526	RS_GCF_000379945.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas macacae	type strain of species	LPSN	f	6	5	486281	668483	5424	1	2876	NZ_KB904146.1	none	0	none	none	2876	5312	0	100	BAKQ01000038.2445.5335	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas macacae DSM 20710 = JCM 13914	69182	71436	f	f	t	108918	108918	Scaffold	ASM37994v1	na	PRJNA224116	SAMN02256414	32	108918	none	2013-04-23	GCA_000379945.1	none	full	none	Periodontal pocket of stumptailed macaque (Macaca arctoides)	none	0	0	Porphyromonas macacae DSM 20710 = JCM 13914	1854	representative genome	5	31	5	108918	66412	28736	2013/04/23	1	28115	4	DSM 20710	DOE Joint Genome Institute	1122974	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas macacae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas macacae;x__Porphyromonas macacae DSM 20710 = JCM 13914	694	2214526	11	47	assembly from type material	2213832	0	ARBY00000000.1	1883	31	5424	1	1490	2719	0	99.597	635083	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1527	NZ_KB904146.1	1512	2793	0	100	ARBY01000031.3757.5268	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas macacae DSM 20710 = JCM 13914	694	19	47	0
+RS_GCF_000335775.1	6	99.65	0.7	511	f__Flavobacteriaceae (UID2817)	283	0	4586377	88.2247696168559	84	1851166	35.6095633593331	5198514	RS_GCF_002217475.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium tructae	not type material	none	f	13	13	346653	346653	2922	1	2863	NZ_AMYW01000066.1	31190	3	105	NZ_AMYW01000045.1	2863	5221	0	99.581	MIKE01000016.1.2882	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium spartansii	61887	61887	t	f	f	112722	112722	Contig	WG21.1.0	na	PRJNA224116	SAMN02471198	84	112722	USA:MI	2013-02-01	GCA_000335775.1	none	full	none	Wintergreen Lake	none	0	0	Flavobacterium sp. WG21	4261	na	7	none	none	none	none	none	2013/02/01	0	1229487	3	WG21	University of Notre Dame	1229487	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. WG21	0	5198514	11	56	none	5198514	0	AMYW00000000.1	4323	84	1606	1	1312	2385	0	99.466	149279	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1314	NZ_AMYW01000070.1	1314	2388	0	99.467	MUFW01000003.574053.575570	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. LM4	0	19	55	0
+RS_GCF_000764435.1	0	99.67	0.54	571	s__algicola (UID2846)	303	0	3996472	90.41658889631714	72	1530755	34.631956769866505	4420065	RS_GCF_900102165.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga baltica	not type material	none	f	7	7	692305	692305	5244	1	2821	NZ_JQCT01000039.1	none	0	none	none	2821	5210	0	100	JQCT01000039.157.2992	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga sp. E6(2014)	61389	61389	f	f	t	203379	203379	Contig	ASM76443v1	na	PRJNA224116	SAMN02894428	72	203379	USA: Coastal waters Apponagansett Bay; South Dartmouth; Massachusetts	2014-10-07	GCA_000764435.1	none	full	none	seaweed attached to rock near shore	41.58 N 70.95 W	0	1	Cellulophaga sp. E6(2014)	3828	na	2	none	none	none	none	none	2014/10/07	0	1495334	1	E6	University of Massachusetts Dartmouth	1495334	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;x__unclassified Cellulophaga;s__Cellulophaga sp. E6(2014)	0	4420065	11	36	none	4420065	0	JQCT00000000.1	3890	72	5244	1	1474	2693	0	99.661	783268	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__baltica	1515	NZ_JQCT01000039.1	1515	2793	0	99.934	CP009887.407810.409335	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga baltica NN016038	0	19	37	0
+RS_GCF_000739395.1	0	99.29	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2509880	86.52565642845693	1	942575	32.49435056976939	2900735	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	1	1	2900735	2900735	2900735	6	2872	NZ_CP007627.1	2900735	6	104	NZ_CP007627.1	2872	5299	0	99.965	CP010278.2441608.2444499	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	2900735	2900735	t	f	f	2900735	2900735	Complete Genome	ASM73939v1	na	PRJNA224116	SAMN02770278	none	none	USA: Idaho	2014-08-14	GCA_000739395.1	none	full	none	trout farm	none	1	1	Flavobacterium psychrophilum	2524	na	18	1	1	2900735	2900735	2900735	2014/08/14	0	96345	6	CSF259-93	Igenbio, Inc	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2900735	11	50	none	2900735	0	none	2545	1	2900735	6	none	none	none	none	none	none	1508	NZ_CP007627.1	1508	2785	0	100	CP010274.2488027.2489544	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	50	0
+RS_GCF_001005305.1	0	99.59	0.77	571	s__algicola (UID2846)	303	0	3667951	90.97996504120073	44	1364294	33.83998870920574	4031603	RS_GCF_001005305.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__Kordia zhangzhouensis	type strain of species	LPSN	f	4	4	719723	719723	3418	1	2806	NZ_LBMH01000021.1	3418	1	104	NZ_LBMH01000021.1	2800	5171	0	100	LBMH01000021.269.3071	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Kordia;Kordia zhangzhouensis	91627	91627	t	f	f	405274	405274	Contig	ASM100530v1	na	PRJNA224116	SAMN03568965	44	405274	China: Jiulong River Nanjing; Fujian	2015-05-08	GCA_001005305.1	none	full	none	Surface sediment of the Jiulong River	none	0	1	Kordia zhangzhouensis	3464	representative genome	3	none	none	none	none	none	2015/05/08	0	1620405	1	MCCC 1A00726	The Third Institute of Oceanography, Key Laboratory of Marine Biogenetic Resources	1620405	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__Kordia zhangzhouensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__Kordia zhangzhouensis	0	4031603	11	43	assembly from type material	4031603	0	LBMH00000000.1	3554	44	1839	1	1483	2471	0	96.831	250190	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kordia;s__	1520	NZ_LBMH01000029.1	1488	2743	0	99.933	KP704352.1.1488	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Kordia;Kordia zhangzhouensis	0	19	44	0
+RS_GCF_000364265.2	0	99.04	1.79	427	o__Bacteroidales (UID2621)	260	54.55	6259517	90.22564638474982	6	3013866	43.442330768814976	6937625	RS_GCF_000969835.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii	not type material	none	f	1	1	6847904	6847904	6847904	6	2870	NZ_AQFV02000006.1	6847904	6	103	NZ_AQFV02000006.1	2870	5301	0	100	ASSQ01000023.1902.4779	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides goldsteinii dnLKV18	1156270	1156270	t	f	f	6847904	6847904	Contig	ASM36426v2	na	PRJNA224116	SAMN01731008	6	6847904	USA: Iowa	2022-06-06	GCA_000364265.2	none	full	none	Cecum	none	0	0	Parabacteroides sp. ASF519	5367	na	18	none	none	none	none	none	2022/06/06	0	1235803	6	ASF519	Broad Institute	1235803	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;x__unclassified Parabacteroides;s__Parabacteroides sp. ASF519	0	6937625	11	78	none	6937625	0	AQFV00000000.2	5628	6	6847904	6	1523	2758	0	99.343	4318495	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__	1524	NZ_AQFV02000006.1	1517	2778	0	99.736	EU136697.1.2002	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides goldsteinii	0	19	78	0
+RS_GCF_000939155.1	172	99.19	9.21	492	o__Bacteroidales (UID2657)	269	71.43	4168250	92.31994205986483	929	2127792	47.12891927564098	4515005	GB_GCA_025147485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	not type material	none	f	145	145	51532	51532	5477	2	2871	NZ_CELS01000805.1	699	3	106	NZ_CELS01000784.1	2871	5297	0	99.965	CELT01001249.183.3060	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	4860	4860	f	f	t	9495	9495	Contig	2a7B_assembly3	na	PRJNA224116	SAMEA3217998	929	9495	none	2015-02-25	GCA_000939155.1	none	full	none	none	none	0	0	Bacteroides uniformis	3948	na	8	none	none	none	none	none	2015/02/25	0	820	3	2a7B	CGS-GL	820	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	0	4515005	11	55	none	4515005	0	CELS00000000.1	3987	929	5477	2	1523	2802	0	99.869	4369395	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1524	NZ_CELS01000805.1	1517	2785	0	99.802	EU136680.1.2019	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	0	19	54	0
+RS_GCF_000157035.2	0	99.42	0	427	o__Bacteroidales (UID2621)	260	0	4667119	90.33771157783653	41	2327637	45.08126933635368	5166302	RS_GCF_000012845.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis	not type material	none	f	5	1	773920	3038395	3038395	2	2812	NZ_KQ236096.1	815589	8	106	NZ_KQ236092.1	2810	5190	0	100	ABZY02000021.1.2816	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides sp. 2_1_7	125931	516630	t	f	f	366300	3038395	Scaffold	Bacteroides_sp_2_1_7_V2	na	PRJNA224116	SAMN02463691	41	366300	none	2015-07-16	GCA_000157035.2	none	full	none	biological product [ENVO:02000043]	none	0	0	Parabacteroides sp. 2_1_7	4380	na	13	10	1	3038395	565040	270340	2015/07/16	31	457388	3	2_1_7	Broad Institute	457388	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;x__unclassified Parabacteroides;s__Parabacteroides sp. 2_1_7	3100	5166302	11	72	none	5163202	0	ABZY00000000.2	4402	10	3038395	2	1272	2268	0	98.899	4317509	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__distasonis	1759	NZ_KQ236096.1	1279	2298	0	99.14	CP000140.3411907.3413403	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides distasonis ATCC 8503	3100	19	74	0
+RS_GCF_001274635.1	0	98.66	1.19	454	o__Cytophagales (UID2936)	336	0	3227114	83.28837846843064	2	1645025	42.4563448300959	3874627	RS_GCF_001274635.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Persicobacter;s__Persicobacter sp001274635	not type material	none	f	1	1	3843563	3843563	31064	3	2868	NZ_LBGV01000002.1	31064	3	107	NZ_LBGV01000002.1	2868	5297	0	100	LBGV01000002.17571.20443	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Persicobacter;Persicobacter sp. CCB-QB2	1937313	1937313	t	f	f	3843563	3843563	Contig	ASM127463v1	na	PRJNA224116	SAMN03103716	2	3843563	Malaysia: Penang	2015-08-26	GCA_001274635.1	none	full	none	Seaweeds surface	none	0	0	Persicobacter sp. CCB-QB2	3293	na	9	none	none	none	none	none	2015/08/26	0	1561025	3	CCB-QB2	Universiti Sains Malaysia	1561025	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Persicobacteraceae;g__Persicobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Persicobacteraceae;g__Persicobacter;x__unclassified Persicobacter;s__Persicobacter sp. CCB-QB2	0	3874627	11	159	none	3874627	0	LBGV00000000.1	3365	2	31064	3	1465	2673	0	99.386	2573	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flammeovirgaceae;g__Persicobacter;s__diffluens	1519	NZ_LBGV01000002.1	1502	2763	0	99.867	CP012859.23200.24701	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Persicobacter sp. JZB09	0	19	156	0
+RS_GCF_000832545.1	0	100	2.55	315	p__Bacteroidetes (UID2605)	209	57.14	5405601	90.27107870879784	201	2338164	39.046275608961444	5988187	RS_GCF_000832545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter lusitanus	type strain of species	LPSN	f	33	33	180540	180540	3173	4	2869	NZ_JXRA01000046.1	48659	3	106	NZ_JXRA01000067.1	2869	5299	0	100	JXRA01000046.96.2975	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. NL19	29791	29791	t	f	f	57420	57420	Contig	ASM83254v1	na	PRJNA224116	SAMN03291000	201	57420	Portugal: Quinta do Bispo; Viseu	2015-02-05	GCA_000832545.1	none	full	none	sludge of an effluent treatment pond in an abandoned uranium mine	none	0	0	Pedobacter lusitanus	5248	representative genome	8	none	none	none	none	none	2015/02/05	0	1503925	1	NL19	University of Aveiro	1503925	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter lusitanus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter lusitanus	0	5988187	11	54	assembly from type material	5988187	0	JXRA00000000.1	5459	201	2392	1	1495	2651	0	98.729	741890	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__cryoconitis	1519	NZ_JXRA01000009.1	1518	2804	0	100	KJ579161.1.1520	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter lusitanus	0	19	54	0
+RS_GCF_000769095.1	71	99.92	0.63	475	f__Porphyromonadaceae (UID2622)	318	0	2029903	86.99160512323614	53	1137478	48.74816574782633	2333447	RS_GCF_000378065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gulae	not type material	none	f	9	9	246775	246775	122218	1	2885	NZ_JRFD01000003.1	122218	1	105	NZ_JRFD01000003.1	2885	5328	0	100	JRFD01000003.117580.120472	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gulae	44027	44027	t	f	f	78081	78081	Contig	ASM76909v1	na	PRJNA224116	SAMN03004269	53	78081	United Kingdom: Leicestershire	2014-10-27	GCA_000769095.1	none	full	none	dog mouth	none	0	0	Porphyromonas gulae	2045	na	7	none	none	none	none	none	2014/10/27	0	111105	5	COT-052 OH2857	UC Davis	111105	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gulae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gulae	0	2333447	11	49	none	2333447	0	JRFD00000000.1	2047	53	122218	3	1286	2353	0	99.689	693282	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1320	NZ_JRFD01000003.1	1307	2392	0	99.694	ARJN01000002.1.1352	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gulae DSM 15663	0	19	49	0
+RS_GCF_001418085.1	0	99.34	0.06	571	s__algicola (UID2846)	303	100	3288174	89.80776746918552	46	1148382	31.365014023527404	3661347	RS_GCF_001418085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lacinutrix;s__Lacinutrix algicola	type strain of species	LPSN	f	7	7	449564	449564	1064	5	652	NZ_LIQH01000015.1	1064	5	101	NZ_LIQH01000015.1	652	1199	0	99.847	LIQG01000027.166639.169449	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Lacinutrix;Lacinutrix mariniflava	79594	79594	f	f	t	204393	204393	Contig	ASM141808v1	na	PRJNA224116	SAMN04002512	46	204393	Antarctica: King George Island	2015-10-28	GCA_001418085.1	none	full	none	marine red alga at Marian Cove	none	0	1	Lacinutrix algicola	3273	representative genome	13	none	none	none	none	none	2015/10/28	0	342954	3	AKS293	KORIA POLAR RESEARCH INSTITUTE	342954	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lacinutrix;s__Lacinutrix algicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lacinutrix;s__Lacinutrix algicola	0	3661347	11	38	assembly from type material	3661347	0	LIQH00000000.1	3331	46	1701	2	265	484	7.36e-136	99.623	4313822	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	274	NZ_LIQH01000026.1	274	496	8.72e-139	99.27	CP025118.3661673.3663195	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Lacinutrix;Lacinutrix sp. Bg11-31	0	18	37	0
+RS_GCF_000403785.1	0	96.58	0.1	496	s__algicola (UID2847)	263	0	3239577	88.83534002189913	54	1236089	33.89590264788559	3646721	RS_GCF_000403785.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__Gillisia sp000403785	not type material	none	f	5	5	735795	735795	1734	1	1592	NZ_APHJ01000016.1	104270	2	104	NZ_APHJ01000024.1	1592	2872	0	99.246	AJLT01000015.108.2929	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Gillisia;Gillisia marina	67531	67531	f	f	t	225052	225052	Contig	ASM40378v1	na	PRJNA224116	SAMN02471749	54	225052	Antarctica	2013-05-31	GCA_000403785.1	none	full	none	none	none	0	1	Gillisia sp. CAL575	3204	na	4	none	none	none	none	none	2013/05/31	0	985255	1	CAL575	University of Florence	985255	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;x__unclassified Gillisia;s__Gillisia sp. CAL575	0	3646721	11	36	none	3646721	0	APHJ00000000.1	3270	54	1686	1	1514	2700	0	98.877	4296699	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__	1516	NZ_APHJ01000014.1	1514	2700	0	98.877	JX193348.1.1513	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Gillisia;uncultured bacterium	0	19	36	0
+RS_GCF_000598365.1	0	97.77	0.74	492	o__Bacteroidales (UID2657)	269	100	4610079	88.81831282776479	408	2254779	43.44083183378737	5190460	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	33	33	188232	188232	642	6	641	NZ_JGCY01000332.1	370	7	106	NZ_JGCY01000155.1	642	1179	0	99.844	JGEP01000085.66976.69860	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. S36L12	12721	12721	f	f	t	46575	46575	Contig	ASM59836v1	na	PRJNA224116	SAMN02314558	408	46575	USA	2014-03-20	GCA_000598365.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3988T(B)14	4751	na	21	none	none	none	none	none	2014/03/20	0	817	4	3988T(B)14	IGS	1339315	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3988T(B)14	0	5190460	11	103	none	5190460	0	JGCY00000000.1	4564	408	781	4	752	1384	0	99.867	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	753	NZ_JGCY01000335.1	753	1386	0	99.867	CP012706.2989623.2991162	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	20	108	0
+RS_GCF_000724545.1	0	99.5	1.49	302	p__Bacteroidetes (UID2591)	202	0	6246599	84.7846965674856	185	2629411	35.68883063987441	7367602	RS_GCF_000724545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__Aureispira;s__Aureispira sp000724545	not type material	none	f	13	13	455074	455074	3275	1	2854	NZ_JHBV01000168.1	none	0	none	none	2854	5271	0	100	JHBV01000168.139.3004	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Aureispira;Aureispira sp. CCB-QB1	39824	39824	f	f	t	191707	191707	Contig	Aureispira sp. CCB-QB1 genome	na	PRJNA224116	SAMN02670898	185	191707	Malaysia: Penang	2014-07-09	GCA_000724545.1	none	full	none	seaweed	none	0	0	Aureispira sp. CCB-QB1	5790	na	3	none	none	none	none	none	2014/07/09	0	1313421	1	CCB-QB1	Universiti Sains Malaysia	1313421	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__Aureispira;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__Aureispira;x__unclassified Aureispira;s__Aureispira sp. CCB-QB1	0	7367602	11	74	none	7367602	0	JHBV00000000.1	5889	185	1810	1	none	none	none	none	none	none	1524	NZ_JHBV01000176.1	1430	2617	0	99.72	AB278130.1.1432	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Aureispira;Aureispira maritima	0	19	75	0
+RS_GCF_000598865.1	0	99.26	1.3	492	o__Bacteroidales (UID2657)	269	80	4717159	88.99529267182332	201	2287131	43.149678169381176	5300459	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	19	19	416644	416644	811	4	779	NZ_JGDT01000068.1	128244	6	106	NZ_JGDT01000066.1	779	1428	0	99.743	JGEE01000047.78453.81336	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 1009-4-F #7	26370	26370	f	f	t	84284	84284	Contig	ASM59886v1	na	PRJNA224116	SAMN02315072	201	84284	USA	2014-03-20	GCA_000598865.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3-F-2 #6	4765	na	20	none	none	none	none	none	2014/03/20	0	817	5	3-F-2 #6	IGS	1339335	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3-F-2 #6	0	5300459	11	92	none	5300459	0	JGDT00000000.1	4550	201	17420	4	1235	2242	0	99.433	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1236	NZ_JGDT01000081.1	1236	2266	0	99.757	CP012706.4164520.4166059	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	95	0
+RS_GCF_000185145.2	0	99.29	0.36	530	g__Prevotella (UID2721)	280	0	2507298	88.29953615677485	6	1262186	44.540609438888666	2839537	RS_GCF_000185145.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella oralis	type strain of species	LPSN	f	2	1	854967	2169350	6221	2	2941	NZ_GL833117.1	377507	4	108	NZ_GL833116.1	2941	5432	0	100	ATFN01000012.287730.290683	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella oralis HGA0225	472297	709884	t	f	f	692746	2169350	Scaffold	ASM18514v2	na	PRJNA224116	SAMN00216885	6	692746	none	2011-02-16	GCA_000185145.2	none	full	none	oral	none	0	0	Prevotella oralis ATCC 33269	2279	representative genome	9	4	1	2169350	2169350	286459	2011/02/16	2	28134	2	ATCC 33269	Baylor College of Medicine	873533	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella oralis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella oralis;x__Prevotella oralis ATCC 33269	5750	2839537	11	48	assembly from type material	2833787	0	AEPE00000000.2	2347	4	6221	2	1531	2828	0	100	851923	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1532	NZ_GL833117.1	1523	2813	0	100	AEPE02000001.423.1945	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella oralis ATCC 33269	5750	19	48	0
+RS_GCF_000768895.1	27	98.79	0.31	475	f__Porphyromonadaceae (UID2622)	318	0	1901189	87.23571490843685	21	972286	44.61372074060852	2179370	RS_GCF_000769115.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas_A;s__Porphyromonas_A canoris	not type material	none	f	3	3	518179	518179	225693	1	2858	NZ_JRAP01000007.1	225693	2	102	NZ_JRAP01000007.1	2858	5278	0	100	JRAP01000007.301.3178	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. COT-108 OH2963	103779	103779	t	f	f	225693	225693	Contig	ASM76889v1	na	PRJNA224116	SAMN03002888	21	225693	United Kingdom: Leicestershire	2014-10-27	GCA_000768895.1	none	full	none	dog mouth	none	0	0	Porphyromonas sp. COT-108 OH2963	1772	na	8	none	none	none	none	none	2014/10/27	0	1515614	4	COT-108 OH2963	UC Davis	1515614	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;x__unclassified Porphyromonas;s__Porphyromonas sp. COT-108 OH2963	0	2179370	11	45	none	2179370	0	JRAP00000000.1	1829	21	148499	1	1490	2713	0	99.53	556500	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_JRAP01000009.1	1490	2713	0	99.53	AB525416.1.1493	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas canoris	0	19	45	0
+RS_GCF_000383955.1	35	100	0.6	454	o__Cytophagales (UID2936)	336	0	5843324	89.26507584131832	18	3557073	54.351258388402904	6546036	RS_GCF_000383955.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Rudanella;s__Rudanella lutea	type strain of species	LPSN	t	1	1	5708050	6328514	6328514	3	2813	NZ_KB913013.1	none	0	none	none	2807	5151	0	99.786	ARPG01000002.2288864.2291681	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Rudanella;Rudanella lutea DSM 19387	363590	1636509	f	f	t	5708050	6328514	Scaffold	ASM38395v1	na	PRJNA224116	SAMN02261300	18	5708050	Korea	2013-04-26	GCA_000383955.1	none	full	none	air sample	37.263 N 127.028 E	0	0	Rudanella lutea DSM 19387	5185	representative genome	9	4	1	6328514	6328514	6328514	2013/04/26	14	451374	3	DSM 19387	JGI	1089547	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Rudanella;s__Rudanella lutea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Rudanella;s__Rudanella lutea;x__Rudanella lutea DSM 19387	1400	6546036	11	39	assembly from type material	6544636	0	ARPG00000000.1	5304	4	6328514	3	1433	2639	0	99.86	3778552	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Rudanella;s__	1505	NZ_KB913013.1	1488	2748	0	100	ARPG01000002.2291892.2293379	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Rudanella;Rudanella lutea DSM 19387	1400	19	39	0
+RS_GCF_000737775.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	3817128	87.94022200648114	89	1529164	35.22937183251877	4340594	RS_GCF_002285635.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium piperi	type strain of species	LPSN	f	15	15	454250	454250	12865	1	2752	NZ_JPRJ01000062.1	124090	4	101	NZ_JPRJ01000005.1	2752	5083	0	100	CP023049.3648047.3650811	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium piperi	48770	48770	t	f	f	81897	81897	Contig	ASM73777v1	na	PRJNA224116	SAMN02927203	89	81897	USA: Forksville	2014-08-05	GCA_000737775.1	none	full	none	freshwater creek	41.488 N 76.600 W	0	0	Chryseobacterium piperi	3765	na	6	none	none	none	none	none	2014/08/05	0	558152	1	CTM	GCAT-SEEK	558152	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium piperi	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium piperi	0	4340594	11	56	assembly from type material	4340594	0	JPRJ00000000.1	3853	89	12865	1	1442	2658	0	99.931	345793	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_JPRJ01000062.1	1513	2795	0	100	CP023049.2121988.2123509	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium piperi	0	19	57	0
+RS_GCF_000262545.1	0	99.66	0	567	g__Prevotella (UID2724)	296	0	2180265	86.4759693452185	14	1004528	39.86003941054022	2521238	RS_GCF_000262545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella bivia	type strain of species	LPSN	f	2	1	1244302	1982184	1982184	4	2900	NZ_JH660660.1-#2	139446	4	108	NZ_JH660658.1	2894	5345	0	100	AJVZ01000012.332405.335303	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bivia DSM 20514	180009	840412	t	f	f	388585	1982184	Scaffold	ASM26254v1	na	PRJNA224116	SAMN02261368	14	388585	none	2012-05-29	GCA_000262545.1	none	full	none	endometrium	none	0	0	Prevotella bivia DSM 20514	2148	representative genome	12	3	1	1982184	1982184	399608	2012/05/29	11	28125	4	DSM 20514	JGI	868129	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bivia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bivia;x__Prevotella bivia DSM 20514	1100	2521238	11	50	assembly from type material	2520138	0	AJVZ00000000.1	2142	3	1982184	4	1527	2791	0	99.673	610043	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1528	NZ_JH660660.1-#3	1511	2791	0	100	AJVZ01000011.66937.68447	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bivia DSM 20514	1100	19	50	0
+RS_GCF_000403825.2	0	99.62	1.03	427	o__Bacteroidales (UID2621)	260	0	6375826	89.96831550051321	33	3075560	43.52491280327803	7086746	RS_GCF_000969835.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii	not type material	none	f	5	2	1194871	2403023	355502	8	2870	NZ_KE159521.1	2403023	10	103	NZ_KE159513.1	2870	5301	0	100	ASSQ01000023.1902.4779	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides goldsteinii dnLKV18	214127	506196	t	f	f	355502	1662278	Scaffold	Para_gold_dnLKV18_V1	na	PRJNA224116	SAMN01730987	33	355502	USA: St. Louis; MO	2013-06-14	GCA_000403825.2	none	full	none	feces	none	0	0	Parabacteroides goldsteinii dnLKV18	5556	na	28	14	2	1662278	1472770	311152	2013/06/14	19	328812	8	dnLKV18	Broad Institute	1235789	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii;x__Parabacteroides goldsteinii dnLKV18	20540	7086746	11	78	none	7066206	0	ASSQ00000000.1	5649	14	1662278	8	1523	2752	0	99.278	4318495	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__	1524	NZ_KE159519.1	1517	2778	0	99.736	EU136697.1.2002	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides goldsteinii	20540	19	78	0
+RS_GCF_000708265.2	0	97.61	0.16	315	p__Bacteroidetes (UID2605)	209	0	4390835	87.70228360081438	15	1859014	37.131837804400384	5006523	RS_GCF_000708265.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter sp000708265	not type material	none	f	4	4	871995	871995	551591	1	2868	NZ_JCKI01000008.1	551591	1	106	NZ_JCKI01000008.1	2862	5286	0	100	JCKI01000008.297396.300261	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. R20-19	333768	333768	t	f	f	551591	551591	Contig	Genome assembly for Pedobacter sp. R20-19	na	PRJNA224116	SAMN02594495	15	551591	USA: Salladasburg; PA	2014-06-16	GCA_000708265.2	none	full	none	Freshwater creek	none	0	0	Pedobacter sp. R20-19	4229	na	3	none	none	none	none	none	2014/06/16	0	1270196	1	R20-19	GCAT Seek	1270196	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;x__unclassified Pedobacter;s__Pedobacter sp. R20-19	0	5006523	11	51	none	5006523	0	JCKI00000000.1	4296	15	551591	1	none	none	none	none	none	none	1517	NZ_JCKI01000008.1	1500	2771	0	100	JCKI01000008.301262.302761	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. R20-19	0	19	49	0
+RS_GCF_000250735.1	0	98.91	1.63	275	k__Bacteria (UID2569)	184	0	3775933	83.11165795952417	371	1881835	41.42086918816122	4543205	RS_GCF_000250735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Anaerophaga;s__Anaerophaga thermohalophila_A	not type material	none	f	56	56	131405	131405	2499	2	2436	NZ_AHZV01000282.1	2855	1	105	NZ_AHZV01000254.1	2360	4359	0	100	AHZV01000282.132.2499	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Anaerophaga;Anaerophaga thermohalophila str. Valhall	12245	12245	t	f	f	24270	24270	Contig	ASM25073v2	na	PRJNA224116	SAMN02471584	371	24270	Norway: North Sea	2012-02-28	GCA_000250735.2	none	full	none	oil reservoir produced water	56.28 N 3.40 E	0	0	Anaerophaga thermohalophila str. Valhall	3571	na	4	none	none	none	none	none	2012/02/28	0	177400	1	Valhall	University of Bergen	1144273	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Anaerophaga;s__Anaerophaga thermohalophila	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Anaerophaga;s__Anaerophaga thermohalophila;x__Anaerophaga thermohalophila str. Valhall	0	4543205	11	46	none	4543205	0	AHZV00000000.1	3755	371	1636	1	1424	2599	0	99.579	238065	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Marinilabiaceae;g__;s__	1523	NZ_AHZV01000304.1	1506	2782	0	100	AHZV01000304.106.1611	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Anaerophaga;Anaerophaga thermohalophila str. Valhall	0	19	47	0
+RS_GCF_000243235.1	7	99.49	0	496	s__algicola (UID2847)	263	0	3417483	86.15089981816838	35	1490901	37.61460159051453	3966857	RS_GCF_000243235.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__Gillisia limnaea	type strain of species	LPSN	t	6	1	625392	3558876	3558876	2	2124	NZ_JH594606.1	3558876	3	105	NZ_JH594606.1	2123	3921	0	100	AHKR01000018.162835.164963	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Gillisia;Gillisia limnaea DSM 15749	113246	1983428	t	f	f	236824	3558876	Scaffold	ASM24323v1	na	PRJNA224116	SAMN02261365	35	236824	Antarctica: McMurdo Dry Valleys	2012-01-24	GCA_000243235.1	none	full	none	Microbial mats in Lake Fryxell; McMurdo Dry Valleys; Antarctica	none	0	1	Gillisia limnaea DSM 15749	3506	representative genome	5	2	1	3558876	3558876	407981	2012/01/24	33	195907	2	DSM 15749	JGI	865937	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__Gillisia limnaea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__Gillisia limnaea;x__Gillisia limnaea DSM 15749	3227	3966857	11	41	assembly from type material	3963630	0	AHKR00000000.1	3520	2	3558876	3	1483	2678	0	99.123	4482305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__	1518	NZ_JH594606.1-#2	1502	2774	0	100	AHKR01000029.621465.622966	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Gillisia;Gillisia limnaea DSM 15749	3227	19	41	0
+RS_GCF_000424605.1	0	98.31	2.2	567	g__Prevotella (UID2724)	296	27.27	2903047	89.34417879625825	29	1252015	38.58231416536391	3249285	RS_GCF_022024235.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella bryantii	not type material	none	f	6	5	431332	589475	162077	1	293	NZ_AUKF01000011.1	207661	9	108	NZ_AUKF01000009.1	293	542	1.06e-152	100	FOEM01000030.1.2672	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bryantii B14	111898	147694	f	f	t	207661	276069	Scaffold	ASM42460v1	na	PRJNA224116	SAMN02441482	29	207661	none	2013-07-11	GCA_000424605.1	none	full	none	none	none	0	0	Prevotella bryantii C21a	2553	na	17	22	5	276069	139328	116377	2013/07/11	7	77095	0	C21a	DOE Joint Genome Institute	1280705	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bryantii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bryantii;x__Prevotella bryantii C21a	4236	3249285	11	61	none	3245049	0	AUKF00000000.1	2595	22	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4236	18	61	0
+RS_GCF_000012845.1	0	99.42	0.38	427	o__Bacteroidales (UID2621)	260	0	4353804	90.48973277723496	1	2167987	45.05957647485263	4811379	RS_GCF_000012845.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis	type strain of species	LPSN	t	1	1	4811379	4811379	4811379	7	2871	NC_009615.1-#6	4811379	7	106	NC_009615.1	2871	5258	0	99.721	ADCJ01000062.2268.5145	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Bacteroides sp. 3_1_19	4811379	4811379	t	f	f	4811379	4811379	Complete Genome	ASM1284v1	na	PRJNA224116	SAMN02604310	none	none	none	2007-06-27	GCA_000012845.1	none	full	none	none	none	1	0	Parabacteroides distasonis ATCC 8503	3976	na	21	1	1	4811379	4811379	4811379	2007/06/27	0	823	7	ATCC 8503	Washington University (WashU)	435591	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis;x__Parabacteroides distasonis ATCC 8503	0	4811379	11	82	assembly from type material	4811379	0	none	4002	1	4811379	7	none	none	none	none	none	none	1524	NC_009615.1	1517	2769	0	99.604	EU136681.1.1911	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides distasonis	0	19	82	0
+RS_GCF_000688335.1	0	99.67	0	571	s__algicola (UID2846)	303	0	3704734	90.22616123074884	1	1518684	36.98646851367968	4106053	RS_GCF_000688335.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens sp000688335	not type material	none	f	1	1	4106053	4106053	4106053	2	2816	NZ_JHZX01000001.1	4106053	2	104	NZ_JHZX01000001.1	2814	5197	0	100	JHZX01000001.498428.501244	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Sediminibacter;Sediminibacter sp. Hel_I_10	4106053	4106053	t	f	f	4106053	4106053	Contig	ASM68833v1	na	PRJNA224116	SAMN02743904	1	4106053	none	2014-04-08	GCA_000688335.1	none	full	none	none	54.1841 N 7.9 E	0	1	Sediminibacter sp. Hel_I_10	3568	na	6	none	none	none	none	none	2014/04/08	0	1392490	2	Hel_I_10	DOE Joint Genome Institute	1392490	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Sediminibacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Sediminibacter;x__unclassified Sediminibacter;s__Sediminibacter sp. Hel_I_10	0	4106053	11	37	none	4106053	0	JHZX00000000.1	3649	1	4106053	2	1519	2259	0	93.68	543469	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__	1518	NZ_JHZX01000001.1	1501	2772	0	100	JHZX01000001.1367369.1368869	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Sediminibacter sp. Hel_I_10	0	19	37	0
+RS_GCF_000273785.1	0	99.26	0.37	492	o__Bacteroidales (UID2657)	269	0	4431956	89.37303347630069	60	2274978	46.28696609502897	4958941	GB_GCA_025147485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	not type material	none	f	11	1	414464	4915651	4915651	4	2871	NZ_JH724260.1	4915651	4	106	NZ_JH724260.1	2871	5302	0	100	AGXX01000053.84947.87824	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis CL03T00C23	81915	619867	t	f	f	177479	4915651	Scaffold	Bact_unif_CL03T00C23_V1	na	PRJNA224116	SAMN02463932	60	177479	none	2012-07-23	GCA_000273785.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides uniformis CL03T00C23	4175	na	13	8	1	4915651	4915651	4915651	2012/07/23	52	820	4	CL03T00C23	Broad Institute	997889	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis;x__Bacteroides uniformis CL03T00C23	43998	4958941	11	62	none	4914943	0	AGXX00000000.1	4171	8	4915651	4	1523	2813	0	100	4369395	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1524	NZ_JH724260.1	1517	2796	0	99.934	EU136680.1.2019	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	43998	19	62	0
+RS_GCF_000827555.1	0	99.52	0.95	316	p__Bacteroidetes (UID2605)	210	33.33	2251315	87.3994668252655	216	916840	35.593120982215474	2575891	RS_GCF_000827555.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	type strain of species	LPSN	f	16	16	186044	186044	2868	1	2819	NZ_CDOI01000209.1	none	0	none	none	2819	5206	0	100	CDOI01000209.21.2852	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga canimorsus	11925	11925	f	f	t	43463	43463	Contig	CcanD38.1	na	PRJNA224116	SAMEA3180118	216	43463	none	2015-01-21	GCA_000827555.1	none	full	none	none	none	0	1	Capnocytophaga canis	2218	na	4	none	none	none	none	none	2015/01/21	0	1848903	1	CcD38	BIOZENTRUM, UNIVERSITY OF BASEL	1848903	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	0	2575891	11	42	assembly from type material	2575891	0	CDOI00000000.1	2273	216	1623	1	1474	2700	0	99.729	2231213	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1502	NZ_CDOI01000084.1	1502	2769	0	99.933	CP022381.398479.400003	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. H2931	0	19	42	0
+RS_GCF_000598165.1	0	99.26	1.86	492	o__Bacteroidales (UID2657)	269	87.5	4669681	89.36748948424929	447	2280599	43.645680968419356	5225257	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	45	45	259474	259474	2192	5	1963	NZ_JGCU01000216.1	20779	7	106	NZ_JGCU01000177.1	1963	3626	0	100	JGCU01000216.222.2192	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 3976T7	11689	11689	t	f	f	35864	35864	Contig	ASM59816v1	na	PRJNA224116	SAMN02314536	447	35864	USA	2014-03-20	GCA_000598165.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3976T7	4691	na	20	none	none	none	none	none	2014/03/20	0	817	5	3976T7	IGS	1339313	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3976T7	0	5225257	11	88	none	5225257	0	JGCU00000000.1	4515	447	2305	5	1525	2800	0	99.803	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGCU01000180.1	1526	2808	0	99.869	CP012706.2340858.2342397	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	88	0
+RS_GCF_000598765.2	0	98.88	1.49	492	o__Bacteroidales (UID2657)	269	88.89	4420202	89.20583993046299	40	2142568	43.24000985659303	4955059	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	5	5	896013	896013	92220	7	1518	NZ_JGEV01000040.1	896013	7	106	NZ_JGEV01000024.1	1518	2787	0	99.802	CP012706.3752418.3755312	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	123876	123876	f	f	t	398504	398504	Contig	ASM59876v2	na	PRJNA224116	SAMN02315069	40	398504	USA	2014-03-20	GCA_000598765.2	none	full	none	L colon	none	0	0	Bacteroides fragilis str. S38L3	4256	na	17	none	none	none	none	none	2014/03/20	0	817	2	S38L3	IGS	1339331	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. S38L3	0	4955059	11	68	none	4955059	0	JGEV00000000.1	4051	40	56270	2	513	937	0	99.61	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	514	NZ_JGEV01000037.1	514	950	0	100	CP012706.2340858.2342397	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	68	0
+RS_GCF_000832085.1	0	99.46	0	278	k__Bacteria (UID2569)	186	0	3079426	90.28795498365132	39	1433088	42.01776072281357	3410672	GB_GCA_001487125.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinifilaceae;g__Gabonibacter;s__Gabonibacter massiliensis	not type material	none	f	3	3	654302	654302	3230	2	2873	NZ_JPIT01000019.1	347172	5	101	NZ_JPIT01000008.1	2873	5306	0	100	JPIT01000019.209.3091	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Sanguibacteroides;Sanguibacteroides justesenii	87453	87453	t	f	f	483020	483020	Contig	OUH334697_1.0	na	PRJNA224116	SAMN02906675	39	483020	Denmark: Odense	2015-02-03	GCA_000832085.1	none	full	none	blood	55.3958 N 10.3886 E	0	0	Sanguibacteroides justesenii	2788	na	12	none	none	none	none	none	2015/02/03	0	1547597	4	OUH 334697	Odense University Hospital	1547597	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Sanguibacteroides;s__Sanguibacteroides justesenii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Sanguibacteroides;s__Sanguibacteroides justesenii	0	3410672	11	53	none	3410672	0	JPIT00000000.1	2846	39	1545	2	1382	2542	0	99.855	4333921	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__[Odoribacteraceae];g__Butyricimonas;s__	1521	NZ_JPIT01000001.1	1521	2809	0	100	JPIT01000001.10.1536	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Sanguibacteroides;Sanguibacteroides justesenii	0	19	52	0
+RS_GCF_000373265.1	18	100	0	454	o__Cytophagales (UID2936)	336	0	3975530	86.77392458332243	14	2411942	52.65737280984708	4581480	RS_GCF_000373265.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter roseus	type strain of species	LPSN	f	3	2	1075384	1400409	5434	1	2877	NZ_KB890763.1	5434	4	107	NZ_KB890763.1	2877	5313	0	100	ARDO01000013.2244.5134	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Pontibacter;Pontibacter roseus DSM 17521	327175	381790	t	f	f	626903	1075384	Scaffold	ASM37326v1	na	PRJNA224116	SAMN02441712	14	626903	India	2013-04-23	GCA_000373265.1	none	full	none	none	30.733 N 76.779 E	0	0	Pontibacter roseus DSM 17521	3960	representative genome	6	12	2	1075384	534749	238205	2013/04/23	2	336989	1	DSM 17521	DOE Joint Genome Institute	1122967	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter roseus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter roseus;x__Pontibacter roseus DSM 17521	1017	4581480	11	41	assembly from type material	4580463	0	ARDO00000000.1	4002	12	5434	1	1481	2512	0	97.299	3403306	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Pontibacter;s__	1518	NZ_KB890763.1	1501	2772	0	100	ARDO01000013.184.1684	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Pontibacter;Pontibacter roseus DSM 17521	1017	19	41	0
+RS_GCF_000801315.1	0	100	0.6	454	o__Cytophagales (UID2936)	336	100	3801748	87.19547507596853	4	2508933	57.54395211591482	4360029	RS_GCF_000801315.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter sp000801315	not type material	none	f	1	1	3874646	3874646	3874646	2	2898	NZ_CP010054.1	3874646	2	106	NZ_CP010054.1	2898	5352	0	100	CP010054.969646.972553	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. DG25B	1090007	1090007	t	f	f	3874646	3874646	Complete Genome	ASM80131v1	na	PRJNA224116	SAMN03174911	none	none	South Korea: Seoul	2014-12-11	GCA_000801315.1	none	full	none	soil	none	4	0	Hymenobacter sp. DG25B	3703	na	6	4	1	3874646	3874646	185052	2014/12/11	0	1385664	2	DG25B	Kyungpook National University	1385664	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;x__unclassified Hymenobacter;s__Hymenobacter sp. DG25B	0	4360029	11	43	none	4360029	0	none	3801	4	3874646	2	none	none	none	none	none	none	1510	NZ_CP010054.1	1509	2787	0	100	CP010054.967645.969155	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. DG25B	0	19	43	0
+RS_GCF_000277585.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2304306	86.83183878554065	42	1048276	39.50158209662754	2653757	RS_GCF_000023285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga ochracea	not type material	none	f	8	8	231723	231723	40242	4	2825	NZ_AKFV01000014.1	40242	4	104	NZ_AKFV01000014.1	2825	5217	0	100	AEOH01000054.2236.5072	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga ochracea F0287	63184	63184	t	f	f	114967	114967	Contig	CochraceaHolt25v1.0	na	PRJNA224116	SAMN00792203	42	114967	none	2012-07-10	GCA_000277585.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Capnocytophaga ochracea str. Holt 25	2278	na	12	none	none	none	none	none	2012/07/10	0	1018	4	Holt 25	J. Craig Venter Institute	1125719	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga ochracea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga ochracea;x__Capnocytophaga ochracea str. Holt 25	0	2653757	11	43	none	2653757	0	AKFV00000000.1	2215	42	40242	4	1511	2791	0	100	4436135	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__ochracea	1512	NZ_AKFV01000014.1	1489	2750	0	100	AKFV01000014.34952.36440	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga ochracea str. Holt 25	0	19	43	0
+RS_GCF_001421515.1	169	98.09	0.48	315	p__Bacteroidetes (UID2605)	209	0	4900721	86.27938789378986	38	2168134	38.17210576752265	5680060	RS_GCF_001421515.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter sp001421515	not type material	none	f	7	7	649466	649466	633475	1	2770	NZ_LMKM01000007.1	633475	1	106	NZ_LMKM01000007.1	2770	5107	0	99.964	LMKM01000007.630463.633243	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. Leaf216	149475	149475	t	f	f	241312	241312	Contig	Leaf216	na	PRJNA224116	SAMN04151685	38	241312	Switzerland: Zurich	2015-11-02	GCA_001421515.1	none	full	none	leaf	47.4074722 N 8.50825 E	0	0	Pedobacter sp. Leaf216	4843	na	4	none	none	none	none	none	2015/11/02	0	1735684	1	Leaf216	Max Planck Institute for Plant Breeding Research	1735684	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;x__unclassified Pedobacter;s__Pedobacter sp. Leaf216	0	5680060	11	48	none	5680060	0	LMKM00000000.1	4857	38	262287	1	1480	2614	0	98.514	3420629	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	1519	NZ_LMKM01000001.1	1519	2800	0	99.934	LMKM01000001.61.1587	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. Leaf216	0	19	48	0
+RS_GCF_001310225.1	0	98.68	0.53	571	s__algicola (UID2846)	303	0	3600979	90.14233610445658	1	1270383	31.8011550101758	3994770	RS_GCF_001310225.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algibacter_A;s__Algibacter_A alginicilyticus	type strain of species	LPSN	f	1	1	3994770	3994770	3994770	2	2807	NZ_CP012898.1	3994770	2	102	NZ_CP012898.1	2807	5184	0	100	CP012898.3277118.3279944	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Algibacter;Algibacter alginicilyticus	3994770	3994770	t	f	f	3994770	3994770	Complete Genome	ASM131022v1	na	PRJNA224116	SAMN04156175	none	none	China: Zhoushan islands; East China Sea	2015-10-13	GCA_001310225.1	none	full	none	seawater	29.93 N 122.27999999 E	1	1	Algibacter alginicilyticus	3308	representative genome	6	1	1	3994770	3994770	3994770	2015/10/13	0	1736674	2	HZ22	Zhejiang University	1736674	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algibacter;s__Algibacter alginicilyticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algibacter;s__Algibacter alginicilyticus	0	3994770	11	40	assembly from type material	3994770	0	none	3342	1	3994770	2	1483	2484	0	97.033	4404663	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1512	NZ_CP012898.1	1512	2793	0	100	CP012898.3989474.3990992	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Algibacter alginicilyticus	0	19	40	0
+RS_GCF_000331535.1	0	100	0.75	454	o__Cytophagales (UID2936)	336	0	5945583	88.24136254456901	226	2856046	42.38800308228245	6737864	RS_GCF_000331535.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Fulvivirga;s__Fulvivirga imtechensis	type strain of species	LPSN	f	26	26	289802	289802	3332	1	2909	NZ_AMZN01000126.1	none	0	none	none	2909	5373	0	100	AMZN01000126.369.3282	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Fulvivirga;Fulvivirga imtechensis AK7	29813	29813	f	f	t	96329	96329	Contig	Fulvivirga imtechensis Genome Sequencing	na	PRJNA224116	SAMN02469986	226	96329	India: Andhra Pradesh	2013-01-11	GCA_000331535.1	none	full	none	seawater collected on the coast at Visakhapatnam	none	0	0	Fulvivirga imtechensis AK7	5585	representative genome	2	none	none	none	none	none	2013/01/11	0	881893	1	AK7	Institute of Microbial Technology	1237149	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Fulvivirgaceae;g__Fulvivirga;s__Fulvivirga imtechensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Fulvivirgaceae;g__Fulvivirga;s__Fulvivirga imtechensis;x__Fulvivirga imtechensis AK7	0	6737864	11	51	assembly from type material	6737864	0	AMZN00000000.1	5754	226	2632	1	1400	2586	0	100	3478144	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flammeovirgaceae;g__Fulvivirga;s__	1517	NZ_AMZN01000157.1	1409	2603	0	100	FR687203.1.1411	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Fulvivirga;Fulvivirga imtechensis AK7	0	19	49	0
+RS_GCF_000699665.1	0	99.3	0	839	g__Bacteroides (UID2691)	309	0	6322089	90.56521957745517	556	2959052	42.389025861721954	6980703	RS_GCF_001314995.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides ovatus	not type material	none	f	60	60	158988	158988	3077	5	2211	NZ_JNHG01000059.1	25403	5	106	NZ_JNHG01000010.1	2203	4069	0	100	JNHG01000059.1.2206	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus str. 3725 D9 iii	12555	12555	t	f	f	34367	34367	Contig	ASM69966v1	na	PRJNA224116	SAMN02370948	556	34367	USA	2014-06-09	GCA_000699665.1	none	full	none	tissue	none	0	0	Bacteroides ovatus str. 3725 D9 iii	5883	na	21	none	none	none	none	none	2014/06/09	0	28116	7	3725 D9 iii	IGS	1339347	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides ovatus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides ovatus;x__Bacteroides ovatus str. 3725 D9 iii	0	6980703	11	85	none	6980703	0	JNHG00000000.1	5942	556	1235	6	1232	2237	0	99.432	4313256	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__ovatus	1233	NZ_JNHG01000060.1	1233	2266	0	99.838	LT622246.5345680.5347196	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus V975	0	19	83	0
+RS_GCF_000429125.1	0	99.62	0	496	s__algicola (UID2847)	263	0	3507938	86.76777880454247	32	1489587	36.87829536415283	4042904	RS_GCF_000429125.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita capsosiphonis	type strain of species	LPSN	f	6	6	460443	460443	3154	1	2821	NZ_AUBG01000027.1	131918	1	86	NZ_AUBG01000016.1	2724	5031	0	100	AUBG01000027.100.2823	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aequorivita;Aequorivita capsosiphonis DSM 23843	126224	155496	t	f	f	263608	295609	Scaffold	ASM42912v1	na	PRJNA224116	SAMN02440880	32	263608	South Korea	2013-09-05	GCA_000429125.1	none	full	none	none	none	0	1	Aequorivita capsosiphonis DSM 23843	3589	representative genome	4	26	6	295609	221701	131918	2013/09/05	6	487317	2	DSM 23843	DOE Joint Genome Institute	1120951	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita capsosiphonis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita capsosiphonis;x__Aequorivita capsosiphonis DSM 23843	3707	4042904	11	37	assembly from type material	4039197	0	AUBG00000000.1	3641	26	304733	2	1405	2595	0	100	4395263	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__	1524	NZ_AUBG01000007.1	1412	2608	0	100	EU290153.1.1412	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aequorivita;Aequorivita capsosiphonis	3707	19	39	0
+RS_GCF_000382385.1	0	99.32	0.34	567	g__Prevotella (UID2724)	296	100	2896426	87.39350106434819	63	1569459	47.38561637631714	3314235	RS_GCF_000382385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella maculosa	type strain of species	LPSN	f	7	6	475142	475142	60167	1	344	NZ_KB908333.1	74980	4	109	NZ_KB908330.1	344	564	2.69e-159	96.221	ACUZ02000034.209270.212171	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella oris F0302	52573	55237	f	f	t	126931	126931	Scaffold	ASM38238v1	na	PRJNA224116	SAMN02440499	63	126931	United Kingdom	2013-04-24	GCA_000382385.1	none	full	none	none	none	0	0	Prevotella maculosa DSM 19339 = JCM 15638	2702	na	9	60	6	126931	61618	30311	2013/04/24	3	439703	4	DSM 19339	DOE Joint Genome Institute	1122986	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella maculosa	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella maculosa;x__Prevotella maculosa DSM 19339 = JCM 15638	2135	3314235	11	47	assembly from type material	3312100	0	ARNR00000000.1	2806	60	104660	4	372	665	0	98.925	4357558	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	373	NZ_KB908329.1	369	660	0	98.916	HL283006.1.1512	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;unidentified	2135	18	47	0
+RS_GCF_000621125.1	0	99.67	0.11	571	s__algicola (UID2846)	303	0	4161662	85.7542432428534	35	1815197	37.42627154586303	4853010	RS_GCF_000621125.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter antarcticus	type strain of species	LPSN	f	6	4	767842	1099025	127434	2	2362	NZ_JHZC01000012.1	127434	2	108	NZ_JHZC01000012.1	2362	4362	0	100	JHZC01000012.125069.127434	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter antarcticus DSM 21422	138573	151656	t	f	f	339358	353268	Scaffold	ASM62112v1	na	PRJNA224116	SAMN02743978	35	339358	Southern Ocean	2014-04-08	GCA_000621125.1	none	full	none	none	none	0	1	Maribacter antarcticus DSM 21422	4128	representative genome	6	32	4	353268	133008	101336	2014/04/08	3	505250	2	DSM 21422	DOE Joint Genome Institute	1122191	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter antarcticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter antarcticus;x__Maribacter antarcticus DSM 21422	2949	4853010	11	39	assembly from type material	4850061	0	JHZC00000000.1	4305	32	101336	2	1472	2689	0	99.66	80944	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__	1523	NZ_JHZC01000018.1	1410	2599	0	99.929	EU512921.1.1410	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter antarcticus	2949	19	38	0
+RS_GCF_000762865.1	0	99.29	0.71	530	g__Prevotella (UID2721)	280	0	2496264	89.22006109641146	131	1227661	43.87836760281829	2797873	RS_GCF_001553265.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp001553265	not type material	none	f	18	18	150813	150813	5366	4	2890	NZ_JRPT01000097.1	5366	1	109	NZ_JRPT01000097.1	2890	5337	0	100	JRPT01000097.258.3154	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. S7 MS 2	21357	21357	t	f	f	43676	43676	Contig	04_NF40_HMP671v01	na	PRJNA224116	SAMN02850950	131	43676	none	2014-10-02	GCA_000762865.1	none	full	none	vagina	none	0	0	Prevotella sp. S7 MS 2	2323	na	8	none	none	none	none	none	2014/10/02	0	1287488	3	S7 MS 2	J. Craig Venter Institute	1287488	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. S7 MS 2	0	2797873	11	49	none	2797873	0	JRPT00000000.1	2401	131	5366	3	1489	2750	0	100	68416	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1527	NZ_JRPT01000097.1	1518	2804	0	100	LSDM01000016.215.1732	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. DNF00663	0	19	49	0
+RS_GCF_000374085.1	149	100	0.74	454	o__Cytophagales (UID2936)	336	25	6647159	88.06537959417497	244	3803169	50.411799574878934	7547982	RS_GCF_000374085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma spitsbergense	type strain of species	LPSN	f	36	35	212470	215619	2836	2	2802	NZ_KB893492.1	none	0	none	none	2802	5175	0	100	ARFD01000199.13.2836	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma spitsbergense DSM 19989	30919	31714	f	f	t	63256	64448	Scaffold	ASM37408v1	na	PRJNA224116	SAMN02441695	244	63256	Norway	2013-04-23	GCA_000374085.1	none	full	none	none	78.21 N 15.8 E	0	0	Spirosoma spitsbergense DSM 19989	6482	representative genome	9	238	35	64448	33436	16380	2013/04/23	6	431554	4	DSM 19989	DOE Joint Genome Institute	1123278	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma spitsbergense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma spitsbergense;x__Spirosoma spitsbergense DSM 19989	3629	7547982	11	39	assembly from type material	7544353	0	ARFD00000000.1	6776	238	1529	4	1388	2314	0	96.902	1130804	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__	1506	NZ_KB893519.1	1489	2750	0	100	ARFD01000223.22.1510	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma spitsbergense DSM 19989	3629	19	38	0
+RS_GCF_000190595.1	0	99.67	0	571	s__algicola (UID2846)	303	0	3438159	91.29626738213288	1	1209276	32.11090151293065	3765936	RS_GCF_000190595.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga lytica	type strain of species	LPSN	t	1	1	3765936	3765936	3765936	4	2815	NC_015167.1-#4	3765936	4	104	NC_015167.1	2815	5199	0	100	CP002534.1163654.1166478	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga lytica DSM 7489	3765936	3765936	t	f	f	3765936	3765936	Complete Genome	ASM19059v1	na	PRJNA224116	SAMN00713590	none	none	Costa Rica	2011-02-28	GCA_000190595.1	none	full	none	beach mud	10.131928 N 83.518524 W	1	1	Cellulophaga lytica DSM 7489	3268	representative genome	12	1	1	3765936	3765936	3765936	2011/02/28	0	979	4	DSM 7489	US DOE Joint Genome Institute (JGI-PGF)	867900	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga lytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Cellulophaga;s__Cellulophaga lytica;x__Cellulophaga lytica DSM 7489	0	3765936	11	40	assembly from type material	3765936	0	none	3303	1	3765936	4	none	none	none	none	none	none	1516	NC_015167.1	1508	2785	0	100	CP002534.1167149.1168656	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Cellulophaga;Cellulophaga lytica DSM 7489	0	19	40	0
+RS_GCF_000498535.1	0	99.65	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	3106369	89.60996889120692	56	1335593	38.52808445529611	3466544	RS_GCF_000498535.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium limnosediminis	type strain of species	LPSN	f	4	4	617354	617354	7399	1	2863	NZ_AVGG01000026.1	7399	1	105	NZ_AVGG01000026.1	2862	5286	0	100	AVGG01000026.2097.4968	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium limnosediminis JC2902	61902	61902	t	f	f	311990	311990	Contig	Flim1.0	na	PRJNA224116	SAMN02470908	56	311990	South Korea	2013-11-22	GCA_000498535.1	none	full	none	none	none	0	1	Flavobacterium limnosediminis JC2902	3089	representative genome	3	none	none	none	none	none	2013/11/22	0	1401027	1	JC2902	Seoul National University	1341181	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium limnosediminis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium limnosediminis;x__Flavobacterium limnosediminis JC2902	0	3466544	11	48	assembly from type material	3466544	0	AVGG00000000.1	3121	56	7399	1	1441	2542	0	98.473	4130973	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1512	NZ_AVGG01000026.1	1459	2617	0	99.04	KU753810.1.1460	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. TH2	0	19	48	0
+RS_GCF_000735695.2	0	100	0.49	323	o__Flavobacteriales (UID2815)	204	0	2548250	89.54622299952526	96	1048770	36.85407330333056	2845737	RS_GCF_000735695.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella haifensis	type strain of species	LPSN	f	11	11	236214	236214	85677	2	2748	NZ_JASZ02000007.1	85677	2	101	NZ_JASZ02000007.1	2755	4854	0	98.512	CYUH01000010.36563.39326	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. FF12	29643	29643	t	f	f	79920	79920	Contig	ASM73569v2	na	PRJNA224116	SAMN02586124	96	79920	none	2017-06-19	GCA_000735695.2	none	full	none	none	none	0	0	Chryseobacterium haifense DSM 19056	2768	representative genome	6	none	none	none	none	none	2017/06/19	0	421525	2	DSM 19056	Pennsylvania State University Genomic Core	1450526	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella haifensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Kaistella;s__Kaistella haifensis;x__Chryseobacterium haifense DSM 19056	0	2845737	11	36	assembly from type material	2845737	0	JASZ00000000.2	2810	96	85677	2	1514	2736	0	99.339	45877	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_JASZ02000007.1	1509	2721	0	99.271	AM421015.1.1509	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Kaistella flava	0	19	36	0
+RS_GCF_000355905.1	3	99.62	0.19	496	s__algicola (UID2847)	263	0	2911816	87.92330863756156	62	1183965	35.75027213585505	3311768	RS_GCF_000355905.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__Psychroflexus gondwanensis	type strain of species	LPSN	f	5	5	412604	412604	348630	3	2838	NZ_APLF01000003.1	348630	3	105	NZ_APLF01000003.1	2838	5241	0	100	APLF01000009.124939.127974	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroflexus;Psychroflexus gondwanensis ACAM 44	53415	53415	t	f	f	290486	290486	Contig	Pgondw1.0	na	PRJNA224116	SAMN02471957	62	290486	Antarctica: Vesthold Hills	2013-04-08	GCA_000355905.1	none	full	none	organic; hypersaline lake	68.450056 S 78.200083 E	0	1	Psychroflexus gondwanensis ACAM 44	2974	representative genome	9	none	none	none	none	none	2013/04/08	0	251	3	ACAM 44	University of Tasmania	1189619	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__Psychroflexus gondwanensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__Psychroflexus gondwanensis;x__Psychroflexus gondwanensis ACAM 44	0	3311768	11	37	assembly from type material	3311768	0	APLF00000000.1	2999	62	367296	3	1518	2721	0	99.012	4449390	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroflexus;s__	1520	NZ_APLF01000009.1	1520	2808	0	100	APLF01000009.122855.124375	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroflexus;Psychroflexus gondwanensis ACAM 44	0	19	38	0
+RS_GCF_000273075.1	0	99.25	0.38	486	o__Bacteroidales (UID2654)	266	0	4821775	89.13734428197554	47	2238165	41.54560147489006	5409377	RS_GCF_013009555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei	not type material	none	f	8	3	473395	1791987	1791987	8	2881	NZ_JH724153.1	1791987	5	106	NZ_JH724153.1	2881	5321	0	100	AGXI01000008.222979.225865	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides dorei CL03T12C01	114622	270468	t	f	f	227865	859325	Scaffold	Bact_dore_CL03T12C01_V1	na	PRJNA224116	SAMN02463920	47	227865	none	2012-07-23	GCA_000273075.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Phocaeicola dorei CL03T12C01	4453	na	20	20	3	859325	319652	203878	2012/07/23	27	357276	7	CL03T12C01	Broad Institute	997877	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei;x__Phocaeicola dorei CL03T12C01	22128	5409377	11	84	none	5387249	0	AGXI00000000.1	4420	20	1791987	7	1528	2822	0	100	361962	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1529	NZ_JH724153.1	1529	2824	0	100	CP011531.2144830.2146373	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides dorei CL03T12C01	22128	19	83	0
+RS_GCF_000218365.1	7	99.46	0	839	g__Bacteroides (UID2691)	309	0	5741413	88.5947789471605	171	2721174	42.24298548927475	6480532	RS_GCF_000210075.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides xylanisolvens	not type material	none	f	23	6	360849	889073	2094	7	1816	NZ_GL945124.1	889073	6	106	NZ_GL945090.1	1816	3293	0	99.394	ACRR01000018.30060.32937	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. 3_1_13	37670	88774	f	f	t	99333	346383	Scaffold	Bacteroides_sp_1_1_30_V1	na	PRJNA224116	SAMN02463820	171	99333	none	2011-06-15	GCA_000218365.1	none	full	none	gastrointestinal tract	none	0	0	Bacteroides sp. 1_1_30	5311	na	18	73	6	346383	258935	183203	2011/06/15	98	457387	5	1_1_30	Broad Institute	457387	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. 1_1_30	38807	6480532	11	70	none	6441725	0	ADCL00000000.1	5204	73	2416	3	1526	2747	0	99.214	4479453	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1522	NZ_GL945119.1	1527	2687	0	98.494	CP012938.2956562.2958087	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus	38807	19	70	0
+RS_GCF_001280435.1	0	99.67	0.5	571	s__algicola (UID2846)	303	0	3504855	91.57654299794552	42	1466694	38.32248870661659	3827241	RS_GCF_001280435.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mangrovimonas_A;s__Mangrovimonas_A xylaniphaga	type strain of species	LPSN	f	1	1	1998227	1998227	5017	1	2807	NZ_LBIP01000035.1	253233	4	104	NZ_LBIP01000017.1	2807	5184	0	100	LBIP01000035.1989.4806	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mangrovimonas;Mangrovimonas sp. ST2L12	91124	91124	t	f	f	1998227	1998227	Contig	ASM128043v1	na	PRJNA224116	SAMN03494314	42	1998227	Malaysia: Perak	2015-09-09	GCA_001280435.1	none	full	none	mangrove soil	none	0	1	Mangrovimonas xylaniphaga	3302	representative genome	10	none	none	none	none	none	2015/09/09	0	1645915	5	ST2L12	UNIVERSITI SAINS MALAYSIA	1645915	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mangrovimonas;s__Mangrovimonas xylaniphaga	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mangrovimonas;s__Mangrovimonas xylaniphaga	0	3827241	11	40	assembly from type material	3827241	0	LBIP00000000.1	3360	42	5017	1	none	none	none	none	none	none	1513	NZ_LBIP01000035.1	1513	2795	0	100	KR780982.1.1519	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mangrovimonas;Mangrovimonas sp. ST2L12	0	19	40	0
+RS_GCF_000312445.1	1	96.28	1.12	492	o__Bacteroidales (UID2657)	269	25	2268974	89.43968881411627	33	1197393	47.31600431513102	2536876	RS_GCF_000312445.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola abscessus	type strain of species	LPSN	t	4	2	411706	1004446	5427	1	2912	NZ_HE997189.1	none	0	none	none	2912	5378	0	100	CAKQ01000027.2254.5173	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidales Incertae Sedis;Phocaeicola;Phocaeicola abscessus CCUG 55929	76685	181205	f	f	t	299731	584143	Scaffold	ASM31244v1	na	PRJNA224116	SAMEA2272382	33	299731	none	2012-10-03	GCA_000312445.1	none	full	none	none	none	0	0	Phocaeicola abscessus CCUG 55929	2060	representative genome	3	14	2	584143	373437	252144	2012/10/03	19	555313	1	CCUG 55929	ebi	1204719	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola abscessus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola abscessus;x__Phocaeicola abscessus CCUG 55929	6245	2536876	11	50	assembly from type material	2530631	0	CAKQ00000000.1	2086	14	5427	1	1495	2756	0	99.933	1124080	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	1527	NZ_HE997189.1	1511	2791	0	100	CAKQ01000027.230.1740	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidales Incertae Sedis;Phocaeicola;Phocaeicola abscessus CCUG 55929	6245	19	50	0
+RS_GCF_000831385.1	0	97.78	0	496	s__algicola (UID2847)	263	0	2648426	90.82642870860654	2	1152522	39.65945480560184	2915920	RS_GCF_000831385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens marinus	type strain of species	LPSN	f	1	1	1469904	2915920	2915920	2	2808	NZ_AP014548.1	2915920	2	104	NZ_AP014548.1	2808	5186	0	100	AP014548.632.3487	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens marinus S1-08	1453023	2915920	t	f	f	1469904	2915920	Chromosome	ASM83138v1	na	PRJNA224116	SAMD00061027	2	1469904	none	2014-03-17	GCA_000831385.1	none	full	none	none	none	1	1	Nonlabens marinus S1-08	2634	representative genome	6	1	1	2915920	2915920	2915920	2014/03/17	1	930802	2	S1-08	Atmosphere and Ocean Research Institute, Univ. Tokyo	1454201	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens marinus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens marinus;x__Nonlabens marinus S1-08	9874	2915920	11	36	assembly from type material	2906046	0	none	2683	1	2915920	2	none	none	none	none	none	none	1518	NZ_AP014548.1	1518	2804	0	100	AP014548.4128.5652	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens marinus S1-08	9874	19	36	0
+RS_GCF_000467875.1	0	98.99	0.34	567	g__Prevotella (UID2724)	296	0	2287340	84.76222486480637	397	1062268	39.56398232062801	2698537	RS_GCF_000613345.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella disiens	type strain of species	LPSN	f	33	24	142398	171097	2785	2	2596	NZ_KI259519.1	628	1	108	NZ_KI259377.1	2588	4780	0	100	AWUY01000054.198.2785	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella disiens JCM 6334 = ATCC 29426	6763	10339	t	f	f	21585	31181	Scaffold	ASM46787v1	na	PRJNA224116	SAMN02436748	397	21585	none	2013-09-16	GCA_000467875.1	none	full	none	urogenital tract	none	0	0	Prevotella disiens JCM 6334 = ATCC 29426	2434	na	4	261	24	31181	13535	5057	2013/09/16	136	28130	1	ATCC 29426	Washington University	1235811	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella disiens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella disiens;x__Prevotella disiens JCM 6334 = ATCC 29426	13600	2698537	11	38	assembly from type material	2684937	0	AWUY00000000.1	2396	261	8031	1	1527	2809	0	99.869	851668	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1528	NZ_KI259350.1	1489	2750	0	100	AB547682.1.1492	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella disiens	13600	18	38	0
+RS_GCF_000424645.1	0	99.62	0.19	496	s__algicola (UID2847)	263	0	3546184	85.5819718598102	14	1431791	34.798747839951	4143611	RS_GCF_007997295.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__Gillisia hiemivivida	not type material	none	f	3	1	987192	2402518	994087	1	1008	NZ_KE384219.1	none	0	none	none	1006	1764	0	98.31	AJLT01000015.108.2929	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Gillisia;Gillisia marina	293892	460401	f	f	t	688663	2402518	Scaffold	ASM42464v1	na	PRJNA224116	SAMN02441483	14	688663	none	2013-07-11	GCA_000424645.1	none	full	none	none	none	0	1	Gillisia sp. JM1	3680	na	3	9	1	2402518	994087	582713	2013/07/11	5	1283286	2	JM1	DOE Joint Genome Institute	1283286	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;x__unclassified Gillisia;s__Gillisia sp. JM1	29121	4143611	11	38	none	4114490	0	AUKH00000000.1	3766	9	61198	2	1485	2675	0	99.192	701991	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Gillisia;s__	1516	NZ_KE384220.1	1485	2663	0	99.057	JQ801212.1.1484	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Gillisia;uncultured bacterium	29121	19	39	0
+RS_GCF_000218235.1	2	98.65	0.56	567	g__Prevotella (UID2724)	296	0	3006963	88.73646803854285	27	1636375	48.30595934137107	3388644	RS_GCF_000218235.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella multisaccharivorax	type strain of species	LPSN	f	3	1	1025685	3334154	3334154	5	2940	NZ_GL945017.1-#4	3334154	5	108	NZ_GL945017.1	2934	5419	0	100	AFJE01000016.322456.325392	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella multisaccharivorax DSM 17128	125463	1129548	t	f	f	355782	3334154	Scaffold	ASM21823v1	na	PRJNA224116	SAMN02256517	27	355782	Japan	2011-06-14	GCA_000218235.1	none	full	none	Subgingival plaque; chronic periodontitis; Japan	none	0	0	Prevotella multisaccharivorax DSM 17128	2774	representative genome	13	3	1	3334154	3334154	3334154	2011/06/14	24	310514	4	DSM 17128	US DOE Joint Genome Institute (JGI-PGF)	688246	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella multisaccharivorax	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella multisaccharivorax;x__Prevotella multisaccharivorax DSM 17128	1120	3388644	11	57	assembly from type material	3387524	0	AFJE00000000.1	2948	3	3334154	4	1494	2715	0	99.531	1126155	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1533	NZ_GL945017.1-#3	1516	2800	0	100	AFJE01000016.325925.327440	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella multisaccharivorax DSM 17128	1120	19	57	0
+RS_GCF_000307395.1	0	99.62	0.51	427	o__Bacteroidales (UID2621)	260	0	6027850	89.85781450756826	50	2910119	43.497195965538474	6708209	RS_GCF_000969835.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii	not type material	none	f	9	3	909841	1763407	442843	8	2870	NZ_JH976476.1	1763407	6	103	NZ_JH976471.1	2870	5301	0	100	AGZO01000037.93034.95912	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides goldsteinii CL02T12C30	133807	479157	t	f	f	260719	1216526	Scaffold	Para_gold_CL02T12C30_V1	na	PRJNA224116	SAMN02463939	50	260719	none	2012-10-23	GCA_000307395.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Parabacteroides goldsteinii CL02T12C30	5334	na	19	14	3	1216526	907655	442843	2012/10/23	36	328812	6	CL02T12C30	Broad Institute	999418	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides goldsteinii;x__Parabacteroides goldsteinii CL02T12C30	17849	6708209	11	74	none	6690360	0	AGZO00000000.1	5404	14	1763407	6	1523	2802	0	99.869	4318495	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__	1524	NZ_JH976471.1	1519	2745	0	99.342	EU136697.1.2002	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides goldsteinii	17849	19	74	0
+RS_GCF_000758925.1	0	98.3	1.13	567	g__Prevotella (UID2724)	296	16.67	2456809	86.53987255070831	152	1373342	48.37528747596368	2838933	RS_GCF_000758925.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp000758925	not type material	none	f	17	17	144717	144717	3460	1	2897	NZ_JRNC01000118.1	3460	1	109	NZ_JRNC01000118.1	2897	5350	0	100	JRNC01000118.212.3120	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. S7-1-8	18677	18677	t	f	f	57968	57968	Contig	04_NF40_HMP1640v01	na	PRJNA224116	SAMN02850936	152	57968	none	2014-09-26	GCA_000758925.1	none	full	none	vagina	none	0	0	Prevotella sp. S7-1-8	2477	na	3	none	none	none	none	none	2014/09/26	0	1284775	1	S7-1-8	JCVI	1284775	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. S7-1-8	0	2838933	11	48	none	2838933	0	JRNC00000000.1	2558	152	2302	1	1466	2573	0	98.295	227285	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1530	NZ_JRNC01000117.1	1530	2826	0	100	JRNC01000117.436.1973	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. S7-1-8	0	18	48	0
+RS_GCF_000633375.1	0	99.65	0.12	511	f__Flavobacteriaceae (UID2817)	283	0	3341039	86.19091180200623	183	1317366	33.98493005228665	3876324	RS_GCF_001485415.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium odoratimimum	not type material	none	f	22	22	254039	254039	3094	1	2878	NZ_AYMS01000007.1	209	2	105	NZ_AYMS01000138.1	2879	5249	0	99.583	CP013690.2030545.2033438	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides odoratimimus	21182	21182	t	f	f	54645	54645	Contig	ASM63337v1	na	PRJNA224116	SAMN02729861	183	54645	Malaysia	2014-04-18	GCA_000633375.1	none	full	none	Carnivorous Plant Phytotelma	none	0	1	Myroides odoratimimus H1bi	3456	na	4	none	none	none	none	none	2014/04/18	0	76832	1	H1bi	University of Malaya	1416760	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides odoratimimus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides odoratimimus;x__Myroides odoratimimus H1bi	0	3876324	11	89	none	3876324	0	AYMS00000000.1	3530	183	1848	1	none	none	none	none	none	none	1514	NZ_AYMS01000052.1	1514	2769	0	99.67	CP013690.267206.268729	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides odoratimimus	0	18	88	0
+RS_GCF_000243275.1	0	99.65	3	511	f__Flavobacteriaceae (UID2817)	283	38.46	3708839	86.21513760849422	54	1538601	35.81021668122876	4301842	RS_GCF_000243275.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium odoratum	type strain of species	LPSN	t	7	1	410147	4301842	4301842	5	2864	NZ_CM001437.1	4301842	7	102	NZ_CM001437.1	2864	5289	0	100	AHKQ01000028.163289.166165	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides odoratus DSM 2801	79565	4301842	t	f	f	198887	4301842	Chromosome	ASM24327v1	na	PRJNA224116	SAMN02256523	54	198887	Germany	2012-01-24	GCA_000243275.1	none	full	none	not provided; submitted under MIGS 2.1	none	1	1	Myroides odoratus DSM 2801	3791	na	9	1	1	4301842	4301842	4301842	2012/01/24	53	256	1	DSM 2801	DOE Joint Genome Institute	929704	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides odoratus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides odoratus;x__Myroides odoratus DSM 2801	5300	4301842	11	77	assembly from type material	4296542	0	AHKQ00000000.1	3791	1	4301842	2	1513	2795	0	100	4314681	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__	1514	NZ_CM001437.1	1506	2782	0	100	AGZJ01000004.68833.70338	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides odoratus CIP 103059	5300	19	76	0
+RS_GCF_000413395.1	0	99.26	0.5	492	o__Bacteroidales (UID2657)	269	0	3609832	87.98759828988997	57	1850110	45.92647682700177	4102660	GB_GCA_025147325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercoris	not type material	none	f	10	3	284653	967553	967553	2	2872	NZ_KE340309.1	132540	2	106	NZ_KE340317.1	2872	5304	0	100	ATFP01000001.71085.73963	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides stercoris CC31F	70673	410266	t	f	f	133996	676612	Scaffold	Bact_ster_CC31F_V1	na	PRJNA224116	SAMN02596993	57	133996	none	2013-06-21	GCA_000413395.1	none	full	none	none	none	0	0	Bacteroides stercoris CC31F	3440	na	5	10	3	676612	359277	139641	2013/06/21	47	46506	1	CC31F	Broad Institute	1073351	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercoris	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercoris;x__Bacteroides stercoris CC31F	74243	4102660	11	57	none	4028417	0	ATFP00000000.1	3483	10	967553	1	1523	2791	0	99.737	262319	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1524	NZ_KE340309.1	1515	2776	0	99.736	ABFZ02000022.100210.101724	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides stercoris ATCC 43183	74243	19	56	0
+RS_GCF_000468635.1	0	99.32	0.51	567	g__Prevotella (UID2724)	296	0	2683813	88.74051114657158	44	1610539	53.25261263787314	3024338	RS_GCF_000426585.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella baroniae	not type material	none	f	6	6	473878	473878	3309	1	2913	NZ_AWEY01000002.1	3309	1	109	NZ_AWEY01000002.1	2916	5293	0	99.451	AUFQ01000039.125.3047	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella baroniae DSM 16972 = JCM 13447	68734	68734	t	f	f	165873	165873	Contig	PbaroF0067v1.0	na	PRJNA224116	SAMN00828753	44	165873	none	2013-09-18	GCA_000468635.1	none	full	none	none	none	0	0	Prevotella baroniae F0067	2389	representative genome	3	none	none	none	none	none	2013/09/18	0	305719	1	F0067	J. Craig Venter Institute	1115809	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella baroniae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella baroniae;x__Prevotella baroniae F0067	0	3024338	11	47	none	3024338	0	AWEY00000000.1	2406	44	1633	1	none	none	none	none	none	none	1531	NZ_AWEY01000022.1	1491	2732	0	99.732	AB547671.1.1494	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella baroniae	0	18	47	0
+RS_GCF_000775755.1	0	99.34	0.87	571	s__algicola (UID2846)	303	12.5	3425826	90.02654420052184	98	1290848	33.92191679558601	3805351	RS_GCF_002973595.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Jejuia;s__Jejuia pallidilutea	not type material	none	f	6	6	538023	538023	5752	1	2820	NZ_BBNY01000013.1	5752	1	102	NZ_BBNY01000013.1	2820	5208	0	100	BBNY01000013.2552.5399	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Jejuia;Jejuia pallidilutea	38830	38830	t	f	f	244792	244792	Contig	ASM77575v1	na	PRJNA224116	SAMD00020220	98	244792	none	2014-10-16	GCA_000775755.1	none	full	none	none	none	0	1	Jejuia pallidilutea	3257	na	3	none	none	none	none	none	2014/10/16	0	504487	1	JCM 19538	Hokkaido University	504487	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Jejuia;s__Jejuia pallidilutea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Jejuia;s__Jejuia pallidilutea	0	3805351	11	36	none	3805351	0	BBNY00000000.1	3297	98	5752	1	none	none	none	none	none	none	1514	NZ_BBNY01000013.1	1480	2721	0	99.865	EU443204.1.1480	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Jejuia;Jejuia pallidilutea	0	19	36	0
+RS_GCF_000273135.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4706087	89.10417687514816	59	2291117	43.45443813872012	5281556	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	9	1	421282	2643952	404295	1	1300	NZ_JH724197.1	501002	5	106	NZ_JH724194.1	1300	2401	0	100	AGXO01000020.2487.5373	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis CL05T00C42	89363	406273	f	f	t	180078	2643952	Scaffold	Bact_frag_CL05T12C13_V1	na	PRJNA224116	SAMN02463924	59	180078	none	2012-07-23	GCA_000273135.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Bacteroides fragilis CL05T12C13	4674	na	7	13	1	2643952	437299	225581	2012/07/23	46	817	1	CL05T12C13	Broad Institute	997881	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis CL05T12C13	9098	5281556	11	61	none	5272458	0	AGXP00000000.1	4424	13	449120	1	1125	2061	0	99.733	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1126	NZ_JH724195.1	1126	2074	0	99.911	CR626927.5128421.5129953	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis NCTC 9343	9098	19	61	0
+RS_GCF_000613625.1	0	98.73	0.84	567	g__Prevotella (UID2724)	296	0	2168954	86.13245936220916	80	1194782	47.44660885463638	2518161	RS_GCF_000146675.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella marshii	type strain of species	LPSN	f	11	11	210833	210833	5826	1	2899	NZ_BAJI01000051.1	5826	1	106	NZ_BAJI01000051.1	2890	5337	0	100	BAJI01000051.315.3210	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella marshii DSM 16973 = JCM 13450	31477	31477	t	f	f	66797	66797	Contig	ASM61362v1	na	PRJNA224116	SAMD00009951	80	66797	none	2014-03-31	GCA_000613625.1	none	full	none	none	none	0	0	Prevotella marshii DSM 16973 = JCM 13450	2171	na	3	none	none	none	none	none	2014/03/31	0	189722	1	JCM 13450	The University of Tokyo	862515	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella marshii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella marshii;x__Prevotella marshii DSM 16973 = JCM 13450	0	2518161	11	46	assembly from type material	2518161	0	BAJI00000000.1	2425	80	5826	1	1526	2819	0	100	610180	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1527	NZ_BAJI01000051.1	1518	2804	0	100	AEEI01000070.4049.5566	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella marshii DSM 16973 = JCM 13450	0	19	46	0
+RS_GCF_000238215.1	0	98.91	0	427	o__Bacteroidales (UID2621)	260	0	3045411	89.42570020857308	1	1599776	46.975954633666916	3405521	RS_GCF_001006485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Tannerella;s__Tannerella forsythia	not type material	none	f	1	1	3405521	3405521	3405521	2	2877	NC_016610.1	3405521	2	105	NC_016610.1	2877	5286	0	99.826	MEHX01000050.286.3182	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Tannerella;Tannerella forsythia	3405521	3405521	t	f	f	3405521	3405521	Complete Genome	ASM23821v1	na	PRJNA224116	SAMN02604009	none	none	USA: Massachusetts	2011-12-15	GCA_000238215.1	none	full	none	periodontal pocket	none	1	0	Tannerella forsythia 92A2	2813	representative genome	6	1	1	3405521	3405521	3405521	2011/12/15	0	28112	2	92A2	TIGR	203275	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Tannerella;s__Tannerella forsythia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Tannerella;s__Tannerella forsythia;x__Tannerella forsythia 92A2	0	3405521	11	46	none	3405521	0	none	2863	1	3405521	2	none	none	none	none	none	none	1522	NC_016610.1	1513	2795	0	100	AP013045.677900.679412	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Tannerella;Tannerella forsythia KS16	0	19	46	0
+RS_GCF_000467995.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	1926185	86.89829499904583	154	1072443	48.46987499305116	2216597	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	24	14	93775	254371	5680	1	2889	NZ_KI260210.1	5680	1	106	NZ_KI260210.1	2889	5336	0	100	AWVE01000058.2482.5380	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis W4087	14367	19443	t	f	f	27573	37287	Scaffold	ASM46799v1	na	PRJNA224116	SAMN02436749	154	27573	none	2013-09-16	GCA_000467995.1	none	full	none	oral cavity- mouth	none	0	0	Porphyromonas gingivalis W4087	1936	na	3	114	14	37287	17984	9427	2013/09/16	40	837	1	W4087	Washington University	1321823	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis;x__Porphyromonas gingivalis W4087	4000	2216597	11	45	none	2212597	0	AWVE00000000.1	1900	114	5680	1	1527	2804	0	99.804	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_KI260210.1	1528	2811	0	99.869	CP024594.285996.287537	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	4000	19	45	0
+RS_GCF_000426825.1	0	99.18	0.55	274	k__Bacteria (UID2570)	183	0	2718494	91.99744024214145	26	1440834	48.77815434834052	2954967	RS_GCF_000426825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Thermonemataceae;g__Thermonema;s__Thermonema rossianum	type strain of species	LPSN	f	5	5	488043	488043	none	0	none	none	148405	3	99	NZ_AUGC01000009.1	none	none	none	none	none	none	113609	123123	f	f	t	202966	202966	Scaffold	ASM42682v1	na	PRJNA224116	SAMN02440846	26	202966	Italy	2014-06-06	GCA_000426825.1	none	full	none	none	40.735 N 14.275 E	0	0	Thermonema rossianum DSM 10300	2577	representative genome	6	24	5	202966	133482	66899	2014/06/06	2	55505	3	DSM 10300	DOE Joint Genome Institute	1313301	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Thermonemataceae;g__Thermonema;s__Thermonema rossianum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Thermonemataceae;g__Thermonema;s__Thermonema rossianum;x__Thermonema rossianum DSM 10300	1116	2954967	11	43	assembly from type material	2953851	0	AUGC00000000.1	2602	24	133482	2	188	320	1.72e-86	97.34	1064283	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__;g__;s__	220	NZ_AUGC01000010.1	196	357	3.35e-97	99.49	KC252970.1.1460	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Thermonemataceae;Thermonema;Thermonema rossianum	1116	19	44	0
+RS_GCF_001422545.1	150	98.09	1.12	315	p__Bacteroidetes (UID2605)	209	0	4197281	87.80055609571608	13	1806095	37.78186908747988	4780472	RS_GCF_001422545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter sp001422545	not type material	none	f	3	3	1550853	1550853	375879	1	2869	NZ_LMLE01000009.1	375879	1	106	NZ_LMLE01000009.1	2869	5293	0	99.965	LMLE01000009.315961.318840	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter sp. Leaf41	367728	367728	t	f	f	557215	557215	Contig	Leaf41	na	PRJNA224116	SAMN04151598	13	557215	Switzerland: Zurich	2015-11-02	GCA_001422545.1	none	full	none	leaf	47.4816806 N 8.21754722 E	0	0	Pedobacter sp. Leaf41	4130	na	3	none	none	none	none	none	2015/11/02	0	1736218	1	Leaf41	Max Planck Institute for Plant Breeding Research	1736218	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;x__unclassified Pedobacter;s__Pedobacter sp. Leaf41	0	4780472	11	47	none	4780472	0	LMLE00000000.1	4167	13	375879	1	1451	2619	0	99.104	4458507	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	1517	NZ_LMLE01000009.1	1500	2704	0	99.133	AJLG01000244.178.1677	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter agri PB92	0	19	46	0
+RS_GCF_000599345.1	0	99.26	10.16	492	o__Bacteroidales (UID2657)	269	95	5498477	88.9196600193478	90	2693918	43.56520408833235	6183646	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	12	12	396044	396044	160724	6	2882	NZ_JGEP01000035.1	268369	8	106	NZ_JGEP01000066.1	2882	5323	0	100	JGEP01000085.66976.69860	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. S36L12	68707	68707	f	f	f	199357	199357	Contig	ASM59934v1	na	PRJNA224116	SAMN02363971	90	199357	USA	2014-03-20	GCA_000599345.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. S36L12	5685	na	24	none	none	none	none	none	2014/03/20	0	817	8	S36L12	IGS	1339328	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. S36L12	0	6183646	11	86	none	6183646	0	JGEP00000000.1	5453	90	160724	6	1525	2800	0	99.803	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGEP01000035.1	1526	2813	0	99.934	CR626927.5128421.5129953	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis NCTC 9343	0	19	84	0
+RS_GCF_000193395.1	0	99.32	0	567	g__Prevotella (UID2724)	296	0	2485195	84.59981978418357	1	1479389	50.36065290277163	2937589	RS_GCF_900454835.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella denticola	not type material	none	f	1	1	2937589	2937589	2937589	4	2896	NC_015311.1	2937589	4	108	NC_015311.1	2839	5243	0	100	CP002589.532172.535010	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella denticola F0289	2937589	2937589	t	f	f	2937589	2937589	Complete Genome	ASM19339v1	na	PRJNA224116	SAMN00031760	none	none	none	2011-03-28	GCA_000193395.1	none	full	none	biological product [ENVO:02000043]	none	1	0	Prevotella denticola F0289	2333	na	12	1	1	2937589	2937589	2937589	2011/03/28	0	28129	4	F0289	J. Craig Venter Institute	767031	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella denticola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella denticola;x__Prevotella denticola F0289	0	2937589	11	50	none	2937589	0	none	2355	1	2937589	4	none	none	none	none	none	none	1527	NC_015311.1	1504	2743	0	99.535	AY323524.1.1506	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella denticola	0	19	50	0
+RS_GCF_001185845.1	0	99.14	0.16	839	g__Bacteroides (UID2691)	309	0	5610315	89.02130615643767	46	2608837	41.71993793911419	6302216	RS_GCF_000210075.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides xylanisolvens	not type material	none	f	8	1	589327	3268607	3268607	3	2871	NZ_KQ236955.1	3268607	5	106	NZ_KQ236955.1	2871	5302	0	100	ACRR01000006.199871.202748	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. 3_1_13	135939	350123	t	f	f	297087	3268607	Scaffold	Bact_sp_3_1_13_V1	na	PRJNA224116	SAMN00103198	46	297087	none	2015-07-22	GCA_001185845.1	none	full	none	none	none	0	0	Bacteroides sp. 3_1_13	4985	na	13	18	1	3268607	2470686	2470686	2015/07/22	28	457389	5	3_1_13	Broad Institute	457389	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. 3_1_13	49002	6302216	11	66	none	6253214	0	ACRR00000000.1	5009	18	2470686	5	1525	2806	0	99.869	4479453	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1526	NZ_KQ236956.1	1526	2752	0	99.214	CP012938.2956562.2958087	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus	49002	19	66	0
+RS_GCF_000831225.1	0	99.29	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2378781	88.16765628127294	1	873230	32.36558661536979	2698020	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	1	1	2698020	2698020	2698020	1	2872	NZ_CP008878.1	2698020	1	104	NZ_CP008878.1	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	2698020	2698020	t	f	f	2698020	2698020	Complete Genome	ASM83122v1	na	PRJNA224116	SAMN02900749	none	none	Denmark	2014-07-22	GCA_000831225.1	none	full	none	none	none	1	1	Flavobacterium psychrophilum	2380	na	3	1	1	2698020	2698020	2698020	2014/07/22	0	96345	1	V3-5	University of Copenhagen	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2698020	11	39	none	2698020	0	none	2393	1	2698020	1	none	none	none	none	none	none	1508	NZ_CP008878.1	1508	2785	0	100	CP010278.992834.994351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	39	0
+RS_GCF_000598845.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4663861	88.91647169535058	117	2269914	43.27589178405618	5245216	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	13	13	349293	349293	14707	4	2880	NZ_JGDP01000099.1	242822	5	106	NZ_JGDP01000094.1	2880	5319	0	100	AGXR01000010.55937.58821	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis HMW 615	44830	44830	t	f	f	135120	135120	Contig	ASM59884v1	na	PRJNA224116	SAMN02314524	117	135120	USA	2014-03-20	GCA_000598845.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3719 A10	4595	na	13	none	none	none	none	none	2014/03/20	0	817	4	3719 A10	IGS	1339307	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3719 A10	0	5245216	11	83	none	5245216	0	JGDP00000000.1	4411	117	141498	4	1525	2800	0	99.803	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JGDP01000095.1	1526	2808	0	99.869	CP012706.2989623.2991162	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	84	0
+RS_GCF_001297705.1	0	100	0.49	324	o__Flavobacteriales (UID2815)	204	0	4792964	86.62649008441853	10	1884913	34.06731143912026	5532908	RS_GCF_001297705.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium sp001297705	not type material	none	f	2	2	1673155	1673155	7297	7	2755	NZ_LIRF01000002.1	7297	7	101	NZ_LIRF01000002.1	2755	5088	0	100	LIRF01000006.1065.3831	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. ERMR1:04	553290	553290	f	f	t	1207894	1207894	Scaffold	ASM129770v1	na	PRJNA224116	SAMN04008510	10	1207894	India: East Rathong Glacier; Sikkim	2015-09-23	GCA_001297705.1	none	full	none	Moraine Ridge Soil	27.33 N 88.07 E	2	0	Chryseobacterium sp. ERMR1:04	4859	na	24	10	2	1207894	647698	341354	2015/09/23	0	1705393	10	ERMR1:04	CSIR-Institute of Himalayan Bioresource Technology	1705393	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. ERMR1:04	0	5532908	11	81	none	5532908	0	LIRF00000000.1	5012	10	7297	10	none	none	none	none	none	none	1082	NZ_LIRF01000002.1	1078	1991	0	100	KT766029.1.1506	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. ERMR1:04	0	19	79	0
+RS_GCF_000379805.1	425	99.5	1.75	300	p__Bacteroidetes (UID2591)	200	0	6466556	88.59731652403396	91	3283445	44.99746812197691	7298817	RS_GCF_000379805.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__Lewinella;s__Lewinella cohaerens	type strain of species	LPSN	t	13	12	562660	562660	403316	2	2823	NZ_KB903532.1	403316	2	104	NZ_KB903532.1	2823	5214	0	100	ARBR01000048.419.3246	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Lewinella;Lewinella cohaerens DSM 23179	80190	82009	t	f	f	224140	229035	Scaffold	ASM37980v1	na	PRJNA224116	SAMN02256444	91	224140	France	2013-04-23	GCA_000379805.1	none	full	none	Beach sand; Biarritz; France	43.483 N 1.558 W	0	0	Lewinella cohaerens DSM 23179	5505	representative genome	6	89	12	229035	146581	62224	2013/04/23	2	70995	2	DSM 23179	DOE Joint Genome Institute	1122176	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Lewinellaceae;g__Lewinella;s__Lewinella cohaerens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Lewinellaceae;g__Lewinella;s__Lewinella cohaerens;x__Lewinella cohaerens DSM 23179	1437	7298817	11	41	assembly from type material	7297380	0	ARBR00000000.1	5584	89	111956	2	1482	2715	0	99.73	263575	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Saprospiraceae;g__Lewinella;s__cohaerens	1518	NZ_KB903548.1	1446	2671	0	100	AB301614.1.1446	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Lewinella;Lewinella cohaerens	1437	19	41	0
+RS_GCF_000785025.1	1	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4964530	88.91780458798412	77	2445839	43.80649793786053	5583280	RS_GCF_002849695.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis_A	not type material	none	f	10	10	670923	670923	160686	7	2881	NZ_JANI01000001.1	160686	7	106	NZ_JANI01000001.1	2881	5321	0	100	JANI01000024.46.2932	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. UW	72510	72510	t	f	f	176999	176999	Contig	ASM78502v1	na	PRJNA224116	SAMN02951417	77	176999	USA: Pacific Northwest	2014-11-17	GCA_000785025.1	none	full	1	intra-abdominal abscesses	47.6097 N 122.3331 W	0	0	Bacteroides sp. UW	4834	na	19	none	none	none	none	none	2014/11/17	0	1450439	5	1;UW	University of Washington	1450439	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. UW	0	5583280	11	62	none	5583280	0	JANI00000000.1	4759	77	1869	5	1525	2795	0	99.738	4466243	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_JANI01000007.1	1526	2813	0	99.934	CP018937.2409138.2410677	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	19	62	0
+RS_GCF_000422685.1	0	99.65	0	511	f__Flavobacteriaceae (UID2817)	283	0	3130086	90.96329223436034	51	1032958	30.03135831571015	3441043	RS_GCF_000422685.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium gelidilacus	type strain of species	LPSN	f	4	4	593161	593161	3322	1	2863	NZ_AUGN01000037.1	427223	3	105	NZ_AUGN01000004.1	2859	5280	0	100	AUGN01000037.359.3222	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium gelidilacus DSM 15343	67443	73213	t	f	f	408195	418451	Scaffold	ASM42268v1	na	PRJNA224116	SAMN02441177	51	408195	Antarctica	2013-07-11	GCA_000422685.1	none	full	none	none	none	0	0	Flavobacterium gelidilacus DSM 15343	3109	representative genome	5	47	4	418451	167049	64425	2013/07/11	4	206041	1	DSM 15343	DOE Joint Genome Institute	1121891	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium gelidilacus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium gelidilacus;x__Flavobacterium gelidilacus DSM 15343	1445	3441043	11	37	assembly from type material	3439598	0	AUGN00000000.1	3134	47	1613	1	1417	2610	0	99.929	688735	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1436	NZ_AUGN01000045.1	1415	2614	0	100	AJ507151.1.1467	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium gelidilacus	1445	18	37	0
+RS_GCF_000701505.1	0	100	0	454	o__Cytophagales (UID2936)	336	0	5612557	90.91494739945395	45	2884538	46.73269155371799	6173415	RS_GCF_000701505.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__Dyadobacter crusticola	type strain of species	LPSN	f	6	6	792901	792901	1626	1	1577	NZ_JNJB01000039.1	47755	2	90	NZ_JNJB01000023.1	1577	2780	0	98.478	FNYL01000032.50.2869	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Dyadobacter;Dyadobacter sp. SG02	137164	154335	f	f	t	465525	476804	Scaffold	ASM70150v1	na	PRJNA224116	SAMN02841160	45	465525	USA	2014-06-11	GCA_000701505.1	none	full	none	none	38.15 N 109.73 W	0	0	Dyadobacter crusticola DSM 16708	5280	representative genome	6	40	6	476804	281310	98954	2014/06/11	5	292407	3	DSM 16708	DOE Joint Genome Institute	1121483	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__Dyadobacter crusticola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__Dyadobacter crusticola;x__Dyadobacter crusticola DSM 16708	995	6173415	11	36	assembly from type material	6172420	0	JNJB00000000.1	5352	40	476804	4	245	448	1.29e-124	99.592	1130121	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Dyadobacter;s__	356	NZ_JNJB01000007.1	247	457	5.48e-127	100	LMPS01000001.74.1588	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Dyadobacter;Dyadobacter sp. Leaf189	995	19	37	0
+RS_GCF_000769075.1	54	98.51	0	475	f__Porphyromonadaceae (UID2622)	318	0	1980647	86.3488671285258	48	1143615	49.858548497004215	2293773	RS_GCF_000769075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas sp000769075	not type material	none	f	3	3	735367	735367	735367	1	2866	NZ_JRFC01000014.1	14715	2	104	NZ_JRFC01000032.1	2865	5291	0	100	JRFC01000014.454717.457697	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. COT-290 OH3588	47786	47786	t	f	f	183859	183859	Contig	ASM76907v1	na	PRJNA224116	SAMN03004271	48	183859	United Kingdom: Leicestershire	2014-10-27	GCA_000769075.1	none	full	none	dog mouth	none	0	0	Porphyromonas sp. COT-290 OH3588	1741	na	6	none	none	none	none	none	2014/10/27	0	1515617	2	COT-290 OH3588	UC Davis	1515617	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;x__unclassified Porphyromonas;s__Porphyromonas sp. COT-290 OH3588	0	2293773	11	45	none	2293773	0	JRFC00000000.1	1801	48	735367	1	1486	2728	0	99.798	4387396	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1525	NZ_JRFC01000014.1	1525	2817	0	100	JRFC01000014.44.1581	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas sp. COT-290 OH3588	0	19	45	0
+RS_GCF_000482305.1	0	100	0.49	324	o__Flavobacteriales (UID2815)	204	0	4405026	88.33767131240528	35	1853019	37.170098697334794	4986577	GB_GCA_016025055.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium indologenes	not type material	none	f	6	5	650232	742183	2381	1	2283	NZ_AXUZ01000030.1	257395	5	98	NZ_AXUZ01000013.1	2283	4217	0	100	CP022058.3966873.3969629	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium indologenes	142435	171950	t	f	f	257395	358451	Scaffold	ASM48230v1	na	PRJNA224116	SAMN02440767	35	257395	none	2013-10-30	GCA_000482305.1	none	full	none	none	none	0	0	Chryseobacterium sp. UNC8MFCol	4417	na	7	29	5	358451	237595	177302	2013/10/30	6	1340435	1	UNC8MFCol	DOE Joint Genome Institute	1340435	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. UNC8MFCol	1336	4986577	11	66	none	4985241	0	AXUZ00000000.1	4513	29	1645	1	1512	2715	0	99.074	606865	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_AXUZ01000033.1	1513	2795	0	100	CP022058.4629363.4630883	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium indologenes	1336	19	68	0
+RS_GCF_000969845.1	0	99.62	1.35	427	o__Bacteroidales (UID2621)	260	0	6142054	90.83791844861676	18	2987201	44.311699593122256	6761553	RS_GCF_000969825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides gordonii	not type material	none	f	3	1	1625071	4460853	4460853	7	2132	NZ_KQ033902.1-#2	4460853	6	103	NZ_KQ033902.1	2132	3938	0	100	AGES01000006.94844.96984	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides sp. HGS0025	374518	676155	t	f	f	1342917	4460853	Scaffold	Para_sp_HGS0025_V1	na	PRJNA224116	SAMN03383452	18	1342917	none	2015-04-07	GCA_000969845.1	none	full	none	none	none	0	0	Parabacteroides sp. HGS0025	5199	na	16	10	1	4460853	1616640	250389	2015/04/07	8	1078087	6	HGS0025	Broad Institute	1078087	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;x__unclassified Parabacteroides;s__Parabacteroides sp. HGS0025	20216	6761553	11	67	none	6741337	0	AGES00000000.1	5308	10	4460853	6	1485	2675	0	99.192	570230	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__gordonii	1524	NZ_KQ033902.1	1515	2765	0	99.604	AGES01000014.73256.74770	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides sp. HGS0025	20216	19	66	0
+RS_GCF_000411115.1	0	100	0.5	316	p__Bacteroidetes (UID2605)	210	0	2442315	88.9318197210916	28	1136392	41.47245022376814	2746278	RS_GCF_000411115.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga granulosa	type strain of species	LPSN	f	3	2	741386	983603	6962	2	1042	NZ_KE150251.1	564152	3	103	NZ_KE150253.1	1042	1925	0	100	FNND01000019.98.2931	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga granulosa	97861	137313	f	f	t	302489	564152	Scaffold	Capn_gran_ATCC_51502_V1	na	PRJNA224116	SAMN02595375	28	302489	none	2013-06-14	GCA_000411115.1	none	full	none	none	none	0	0	Capnocytophaga granulosa ATCC 51502	2477	na	6	20	2	564152	258539	101328	2013/06/14	8	45242	1	ATCC 51502	Broad Institute	641143	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga granulosa	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga granulosa;x__Capnocytophaga granulosa ATCC 51502	6165	2746278	11	44	assembly from type material	2740113	0	ADDA00000000.1	2511	20	6962	1	1433	2630	0	99.791	4402066	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1508	NZ_KE150251.1	1500	2771	0	100	ADDA01000024.266.1765	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga granulosa ATCC 51502	6165	19	43	0
+RS_GCF_000154465.1	0	99.52	0.96	314	p__Bacteroidetes (UID2605)	208	0	2191006	85.8989649026651	20	1358268	53.267960271040415	2550678	RS_GCF_000154465.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes putredinis	type strain of species	LPSN	t	2	2	1075629	1197641	626692	3	2867	NZ_DS499579.1	626692	3	109	NZ_DS499579.1	2867	5295	0	100	ABFK02000016.621688.624559	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes putredinis DSM 17216	127493	212556	t	f	f	626692	626692	Scaffold	ASM15446v1	na	PRJNA224116	SAMN00000002	20	626692	none	2007-11-01	GCA_000154465.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Alistipes putredinis DSM 17216	2367	representative genome	8	12	2	626692	479642	479642	2007/11/01	8	28117	2	DSM 17216	Washington University Genome Sequencing Center	445970	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes putredinis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes putredinis;x__Alistipes putredinis DSM 17216	800	2550678	11	50	assembly from type material	2549878	0	ABFK00000000.2	2353	12	626692	2	1522	2811	0	100	260579	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__putredinis	1524	NZ_DS499579.1	1515	2798	0	100	ABFK02000016.619821.621335	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes putredinis DSM 17216	800	19	50	0
+RS_GCF_001054895.1	5	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4862012	89.20386390114578	193	2377965	43.62882296766594	5450450	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	30	30	229066	229066	51583	3	1638	NZ_JVLP01000141.1	51583	2	106	NZ_JVLP01000141.1	1638	3020	0	99.939	ACPP01000056.328.3214	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. 2_1_16	28240	28240	f	f	t	58847	58847	Contig	ASM105489v1	na	PRJNA224116	SAMN03197513	193	58847	USA: WA	2015-07-10	GCA_001054895.1	none	full	none	none	none	0	0	Bacteroides fragilis	4844	na	6	none	none	none	none	none	2015/07/10	0	817	1	322_BFRA	University of Washington	817	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	0	5450450	11	32	none	5450450	0	JVLP00000000.1	4629	193	2265	1	none	none	none	none	none	none	1526	NZ_JVLP01000110.1	1526	2808	0	99.869	CP011073.3048810.3050349	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	0	14	32	0
+RS_GCF_001314265.1	0	99.82	0	475	f__Porphyromonadaceae (UID2622)	318	0	2041161	85.80373387050669	1	1150464	48.361744557924936	2378872	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	1	1	2378872	2378872	2378872	4	2888	NZ_CP012889.1	2378872	4	106	NZ_CP012889.1	2888	5334	0	100	CP025930.231607.234505	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis ATCC 33277	2378872	2378872	t	f	f	2378872	2378872	Complete Genome	ASM131426v1	na	PRJNA224116	SAMN03656156	none	none	USA: Boston; MA; Forsyth Dental Center	2015-10-14	GCA_001314265.1	none	full	none	subgingival plaque	42.363855 N 71.078845 W	1	0	Porphyromonas gingivalis 381	2070	na	12	1	1	2378872	2378872	2378872	2015/10/14	0	837	4	381	University of Florida	1403335	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis;x__Porphyromonas gingivalis 381	0	2378872	11	53	none	2378872	0	none	2015	1	2378872	4	none	none	none	none	none	none	1528	NZ_CP012889.1	1528	2822	0	100	CP025930.1584718.1586259	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis ATCC 33277	0	19	53	0
+RS_GCF_001275605.1	0	99.65	1.14	511	f__Flavobacteriaceae (UID2817)	283	0	4927334	87.56443600116934	59	1892788	33.637036517066086	5627095	RS_GCF_903819335.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium panici	not type material	none	f	10	10	377124	377124	359190	1	2868	NZ_LHVT01000005.1	359190	5	104	NZ_LHVT01000005.1	2868	5297	0	100	LHVT01000005.139425.142313	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. VMW	95374	95374	t	f	f	223560	223560	Contig	ASM127560v1	na	PRJNA224116	SAMN03964777	59	223560	USA: Montoursville; Pennsylvania	2015-08-31	GCA_001275605.1	none	full	none	Freshwater Creek	41.25 N 76.94 W	0	0	Flavobacterium sp. VMW	4800	na	7	none	none	none	none	none	2015/08/31	0	1699134	1	VMW	GCAT-SEEK	1699134	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. VMW	0	5627095	11	57	none	5627095	0	LHVT00000000.1	4804	59	359190	1	1493	2669	0	98.928	143325	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_LHVT01000005.1	1510	2789	0	100	LHVT01000005.137348.138865	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. VMW	0	19	57	0
+RS_GCF_000331695.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	1958796	90.42039476144117	1	759028	35.03765139146045	2166321	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	not type material	none	f	1	1	2166321	2166321	2166321	3	2738	NC_020125.1	2166321	3	101	NC_020125.1	2738	5057	0	100	CP007503.1142030.1144777	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	2166321	2166321	t	f	f	2166321	2166321	Complete Genome	ASM33169v1	na	PRJNA224116	SAMN02602992	none	none	none	2013-01-14	GCA_000331695.1	none	full	none	none	none	1	0	Riemerella anatipestifer RA-CH-2	1997	na	9	1	1	2166321	2166321	2166321	2013/01/14	0	34085	3	RA-CH-2	Avian Disease Research Center, Sichuan Agricultural University	1271752	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer;x__Riemerella anatipestifer RA-CH-2	0	2166321	11	41	none	2166321	0	none	2008	1	2166321	3	none	none	none	none	none	none	1513	NC_020125.1	1505	2780	0	100	CP007504.1714132.1715636	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	0	19	41	0
+RS_GCF_000157935.1	0	98.31	1.35	567	g__Prevotella (UID2724)	296	0	2999178	85.38650688560453	73	1573414	44.85379031681022	3512473	GB_GCA_025151535.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella copri	type strain of species	LPSN	f	9	3	283492	866821	294362	7	2890	NZ_GG703855.1	442348	6	108	NZ_GG703854.1	2890	5337	0	100	ACBX02000017.19548.22442	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella copri DSM 18205	48053	130091	t	f	f	131403	442348	Scaffold	ASM15793v1	na	PRJNA224116	SAMN00008847	73	131403	none	2009-10-02	GCA_000157935.1	none	full	none	biological product [ENVO:02000043]	none	0	0	Prevotella copri DSM 18205	2916	na	16	27	3	442348	158202	91171	2009/10/02	46	165179	4	DSM 18205	Washington University Genome Sequencing Center	537011	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella copri	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella copri;x__Prevotella copri DSM 18205	4600	3512473	11	59	assembly from type material	3507873	0	ACBX00000000.2	3024	27	204356	7	1218	2178	0	98.933	245767	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__copri	2202	NZ_GG703856.1	1217	2248	0	100	ACBX02000025.1.1217	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_9;Prevotella copri DSM 18205	4600	19	60	0
+RS_GCF_000614285.1	0	97.67	0.17	567	g__Prevotella (UID2724)	296	100	2653779	83.3362066935161	113	1295996	40.6979596002418	3184425	RS_GCF_018127785.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella scopos	type strain of species	LPSN	f	19	19	220842	220842	3186	1	2889	NZ_BAKP01000091.1	7253	2	109	NZ_BAKP01000080.1	2889	5336	0	100	BAKP01000091.213.3108	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella scopos JCM 17725	28180	28180	t	f	f	48387	48387	Contig	ASM61428v1	na	PRJNA224116	SAMD00009021	113	48387	none	2014-03-31	GCA_000614285.1	none	full	none	none	none	0	0	Prevotella scopos JCM 17725	2541	na	4	none	none	none	none	none	2014/03/31	0	589437	1	JCM 17725	The University of Tokyo	1236518	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella scopos	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella scopos;x__Prevotella scopos JCM 17725	0	3184425	11	45	assembly from type material	3184425	0	BAKP00000000.1	2890	113	1840	1	1489	2750	0	100	4428059	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__melaninogenica	1528	NZ_BAKP01000095.1	1528	2822	0	100	CP016204.560439.561979	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella scopos JCM 17725	0	18	45	0
+RS_GCF_000212375.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	1911931	87.44773300036132	1	1147150	52.46824645416832	2186370	RS_GCF_000212375.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas asaccharolytica	type strain of species	LPSN	t	1	1	2186370	2186370	2186370	2	2864	NC_015501.1	2186370	2	105	NC_015501.1	2864	5289	0	100	CP002689.747267.750143	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas asaccharolytica DSM 20707	2186370	2186370	t	f	f	2186370	2186370	Complete Genome	ASM21237v1	na	PRJNA224116	SAMN00713611	none	none	none	2011-05-05	GCA_000212375.1	none	full	none	empyema	none	1	0	Porphyromonas asaccharolytica DSM 20707	1730	representative genome	6	1	1	2186370	2186370	2186370	2011/05/05	0	28123	2	DSM 20707	US DOE Joint Genome Institute (JGI-PGF)	879243	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas asaccharolytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas asaccharolytica;x__Porphyromonas asaccharolytica DSM 20707	0	2186370	11	47	assembly from type material	2186370	0	none	1731	1	2186370	2	none	none	none	none	none	none	1526	NC_015501.1	1517	2802	0	100	CP002689.1352301.1353817	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas asaccharolytica DSM 20707	0	19	47	0
+GB_GCA_001438165.1	0	95.7	2.41	278	k__Bacteria (UID2569)	186	11.11	1652157	95.63921969980706	324	943619	54.62373421769979	1727489	GB_GCA_002381225.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Schleiferiaceae;g__TMED14;s__TMED14 sp002381225	not type material	none	f	67	67	36814	36814	7946	1	980	LICE01000057.1	7946	1	104	LICE01000057.1	982	1663	0	97.251	KX158599.21523.24390	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Cryomorphaceae;Ant39E11;uncultured bacterium	5331	5331	f	f	t	7321	7321	Contig	ASM143816v1	na	PRJNA273799	SAMN03741979	324	7321	Baltic Sea	2015-11-06	GCA_001438165.1	derived from metagenome	full	BACL23 MAG-120924-bin60	surface water; brackish water collected from the surface of the Baltic Sea	56.930850 N 17.060667 E	0	0	Cryomorphaceae bacterium BACL23 MAG-120924-bin60	1672	na	3	none	none	none	none	none	2015/11/06	0	1655594	1	BACL23 MAG-120924-bin60	Kungliga Tekniska Hogskolan	1655594	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;x__unclassified Cryomorphaceae;s__Cryomorphaceae bacterium BACL23 MAG-120924-bin60	0	1727489	11	33	none	1727489	0	LICE00000000.1	1770	324	7269	1	none	none	none	none	none	none	1268	LICE01000070.1	1268	2305	0	99.527	EU802019.1.1484	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Cryomorphaceae;uncultured;uncultured bacterium	0	16	33	0
+GB_GCA_001439315.1	0	91.77	1.24	548	f__Flavobacteriaceae (UID2845)	298	28.57	2188342	90.84079359531354	520	772675	32.074698649141176	2408986	GB_GCA_002340765.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter sp002340765	not type material	none	f	103	103	27387	27387	none	0	none	none	none	0	none	none	none	none	none	none	none	none	4632	4632	f	f	t	6612	6612	Contig	ASM143931v1	na	PRJNA273799	SAMN03742021	520	6612	Baltic Sea	2015-11-06	GCA_001439315.1	derived from metagenome	full	BACL3 MAG-120619-bin32	surface water; brackish water collected from the surface of the Baltic Sea	56.930850 N 17.060667 E	0	0	Cryomorphaceae bacterium BACL22 MAG-120619-bin32	2221	na	0	none	none	none	none	none	2015/11/06	0	1655630	0	BACL3 MAG-120619-bin32	Kungliga Tekniska Hogskolan	1655630	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;x__unclassified Cryomorphaceae;s__Cryomorphaceae bacterium BACL22 MAG-120619-bin32	0	2408986	11	23	none	2408986	0	LIDG00000000.1	2376	520	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	24	0
+GB_GCA_001421095.1	144	92.86	7.86	316	p__Bacteroidetes (UID2605)	210	89.47	2153679	85.58486742104374	119	1404678	55.823574553080526	2516425	GB_GCA_001421095.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__CAJPTX01;g__Bacteroides_D;s__Bacteroides_D periocalifornicus	type strain of species	LPSN	f	17	17	129525	129525	none	0	none	none	11552	1	106	LIIK01000062.1	none	none	none	none	none	none	21146	21146	f	f	t	46708	46708	Contig	SK_12B	na	PRJNA289925	SAMN03859889	119	46708	USA: San Diego	2015-11-02	GCA_001421095.1	derived from metagenome	full	12B	oral subgingival plaque	none	0	0	Candidatus [Bacteroides] periocalifornicus	1678	na	1	none	none	none	none	none	2015/11/02	0	1702214	0	12B	University of Washington	1702214	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__Candidatus [Bacteroides] periocalifornicus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__Bacteroidetes incertae sedis;s__Candidatus [Bacteroides] periocalifornicus	0	2516425	11	39	none	2516425	0	LIIK00000000.1	1939	119	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	39	0
+GB_GCA_000433895.1	24	97.73	0.86	530	g__Prevotella (UID2721)	280	40	2395647	88.6206326359164	135	1424203	52.714756103158145	2703261	RS_GCF_002251385.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002251385	not type material	none	f	19	11	187514	233610	none	0	none	none	none	0	none	none	none	none	none	none	none	none	20012	29706	f	f	t	47177	74414	Scaffold	MGS474	na	PRJEB897	SAMEA3138582	135	47177	none	2013-07-17	GCA_000433895.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:474	2297	na	0	91	11	74414	32668	18873	2013/07/17	44	1262926	0	none	DTU	1262926	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:474	1521	2703261	11	33	none	2701740	0	CBGF000000000.1	2344	91	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1521	18	33	0
+GB_GCA_000432295.1	80	97.29	0.1	492	o__Bacteroidales (UID2657)	269	66.67	4486664	89.29222995933884	296	2102770	41.89285571980715	5024697	RS_GCF_000381365.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides salyersiae	not type material	none	f	43	22	230433	240340	none	0	none	none	none	0	none	none	none	none	none	none	none	none	16957	29908	f	f	t	37283	70501	Scaffold	MGS189	na	PRJEB747	SAMEA3138502	296	37283	none	2013-07-17	GCA_000432295.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:189	3866	na	0	168	22	70501	37283	18856	2013/07/17	128	1262737	0	none	DTU	1262737	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:189	5217	5024697	11	35	none	5019480	0	CAYI000000000.1	3991	168	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5217	17	35	0
+GB_GCA_000432715.1	130	95.9	1.6	314	p__Bacteroidetes (UID2605)	208	21.43	2547938	88.99585572400834	299	1674963	58.61243968909176	2862985	RS_GCF_000265365.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes finegoldii	not type material	none	f	51	27	63094	95871	none	0	none	none	none	0	none	none	none	none	none	none	none	none	9557	19744	f	f	t	17779	40070	Scaffold	MGS68	na	PRJEB978	SAMEA3138523	299	17779	none	2013-07-17	GCA_000432715.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Alistipes finegoldii CAG:68	2386	na	0	145	27	40070	24961	11271	2013/07/17	154	1263035	0	none	DTU	1263035	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes finegoldii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__environmental samples;s__Alistipes finegoldii CAG:68	5163	2862985	11	37	none	2857822	0	CBAO000000000.1	2482	145	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5163	17	36	0
+GB_GCA_000431255.1	121	93.7	0.51	427	o__Bacteroidales (UID2621)	260	0	3283461	90.15330774726353	381	1651180	45.41106699148587	3642086	GB_GCA_025151045.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides johnsonii	not type material	none	f	62	29	70316	141485	none	0	none	none	none	0	none	none	none	none	none	none	none	none	9543	15175	f	f	t	17951	32935	Scaffold	MGS246	na	PRJEB784	SAMEA3138450	381	17951	none	2013-07-17	GCA_000431255.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Parabacteroides johnsonii CAG:246	2941	na	0	240	29	32935	15105	6764	2013/07/17	141	1263091	0	none	DTU	1263091	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides johnsonii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;x__environmental samples;s__Parabacteroides johnsonii CAG:246	5891	3642086	11	37	none	3636195	0	CAXA000000000.1	3112	240	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5891	17	36	0
+GB_GCA_000431055.1	202	96.68	0.65	492	o__Bacteroidales (UID2657)	269	0	3034020	90.67532649178459	188	1639470	49.031919631041134	3346026	RS_GCF_019239235.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Mediterranea;s__Mediterranea pullorum	not type material	none	f	36	18	90500	153610	none	0	none	none	none	0	none	none	none	none	none	none	none	none	17786	34495	f	f	t	31935	65602	Scaffold	MGS598	na	PRJEB951	SAMEA3138440	188	31935	none	2013-07-17	GCA_000431055.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:598	2777	na	0	97	18	65602	41594	23860	2013/07/17	91	1262743	0	none	DTU	1262743	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:598	2145	3346026	11	36	none	3343881	0	CAWS000000000.1	2841	97	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2145	18	37	0
+GB_GCA_000437675.1	53	97.55	0.37	492	o__Bacteroidales (UID2657)	269	0	2178503	83.00804588241031	276	1239360	47.314977349619106	2624448	GB_GCA_000437675.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Alloprevotella;s__Alloprevotella sp000437675	not type material	none	f	48	30	70453	89164	none	0	none	none	none	0	none	none	none	none	none	none	none	none	9490	15258	f	f	t	16528	27588	Scaffold	MGS891	na	PRJEB1029	SAMEA3138768	276	16528	none	2013-07-17	GCA_000437675.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:891	2058	na	0	172	30	27588	15577	8369	2013/07/17	104	1262937	0	none	DTU	1262937	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:891	5013	2624448	11	40	none	2619435	0	CBJT000000000.1	2172	172	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5013	17	39	0
+GB_GCA_000433715.1	35	97.62	1.8	491	o__Bacteroidales (UID2657)	268	75	2997118	91.47318525047619	266	1477394	45.14266717429712	3276499	RS_GCF_003437535.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola plebeius_A	not type material	none	f	32	19	109559	250887	none	0	none	none	none	0	none	none	none	none	none	none	none	none	12303	18511	f	f	t	30464	49274	Scaffold	MGS211	na	PRJEB760	SAMEA3138573	266	30464	none	2013-07-17	GCA_000433715.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides plebeius CAG:211	2643	na	0	177	19	49274	29646	14932	2013/07/17	89	1263052	0	none	DTU	1263052	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides plebeius	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides plebeius CAG:211	3742	3276499	11	48	none	3272757	0	CBAT000000000.1	2775	177	574	1	none	none	none	none	none	none	572	HF998178.1	448	767	0	97.545	FJ505623.1.1380	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;uncultured bacterium	3742	17	47	0
+GB_GCA_000438035.1	5	96.91	0	485	o__Bacteroidales (UID2654)	265	0	3457252	90.04067031004861	231	1621997	42.28932732208467	3839656	RS_GCF_000012825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus	not type material	none	f	36	24	143362	158215	1460	1	1455	FR903382.1	none	0	none	none	1455	2660	0	99.656	AGXZ01000024.101223.104108	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides vulgatus CL09T03C04	16603	26120	f	f	t	34451	54331	Scaffold	MGS6	na	PRJEB952	SAMEA3138786	231	34451	none	2013-07-17	GCA_000438035.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides vulgatus CAG:6	3022	na	0	147	24	54331	30100	15501	2013/07/17	84	1263056	0	none	DTU	1263056	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides vulgatus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides vulgatus CAG:6	4175	3839656	11	38	none	3835481	0	CBKK000000000.1	3126	147	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4175	18	38	0
+GB_GCA_000436595.1	51	97.72	2.6	487	o__Bacteroidales (UID2716)	270	70	2555813	86.56284461713122	336	1438212	48.73585030336814	2952552	RS_GCF_016899855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp000436595	not type material	none	f	48	41	68464	105682	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8782	9809	f	f	t	17986	21324	Scaffold	MGS1124	na	PRJEB691	SAMEA3138714	336	17986	none	2013-07-17	GCA_000436595.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:1124	2441	na	0	301	41	21324	11005	4850	2013/07/17	35	1262920	0	none	DTU	1262920	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:1124	1466	2952552	11	28	none	2951086	0	CAYO000000000.1	2627	301	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1466	14	27	0
+GB_GCA_000435635.1	66	97.45	1.01	567	g__Prevotella (UID2724)	296	0	2098247	88.56288807652486	96	1207410	50.9908589696756	2369217	GB_GCA_000435635.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella avicola	not type material	none	f	16	13	126211	150557	1244	2	1229	FR882110.1	none	0	none	none	1235	1101	0	82.996	CEBV01008561.149.2387	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Paraprevotella;gut metagenome	24666	35897	f	f	t	55543	71962	Scaffold	MGS1320	na	PRJEB711	SAMEA3138668	96	55543	none	2013-07-17	GCA_000435635.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:1320	2035	na	0	66	13	71962	40075	20128	2013/07/17	30	1262922	0	none	DTU	1262922	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:1320	1256	2369217	11	44	none	2367961	0	CBCU000000000.1	2071	66	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1256	19	44	0
+GB_GCA_000432775.1	42	95	0.95	316	p__Bacteroidetes (UID2605)	210	0	2356297	91.6471934445511	169	1376715	53.59987759411704	2571052	GB_GCA_000432775.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Coprenecus;s__Coprenecus sp000432775	not type material	none	f	22	12	131147	164653	none	0	none	none	33151	1	109	HF990325.1	none	none	none	none	none	none	15198	26235	f	f	t	34947	59840	Scaffold	MGS831	na	PRJEB1020	SAMEA3138526	169	34947	none	2013-07-17	GCA_000432775.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Alistipes sp. CAG:831	2179	na	1	98	12	59840	33655	13220	2013/07/17	71	1262698	0	none	DTU	1262698	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__environmental samples;s__Alistipes sp. CAG:831	2506	2571052	11	39	none	2568546	0	CAYB000000000.1	2247	98	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2506	19	39	0
+GB_GCA_000435315.1	0	97.26	0.19	491	o__Bacteroidales (UID2657)	268	0	2833320	90.17470848501321	265	1281902	40.839250220698545	3142034	RS_GCF_000154845.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola coprocola	not type material	none	f	41	31	76130	107050	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11844	17169	f	f	t	23850	34044	Scaffold	MGS162	na	PRJEB733	SAMEA3138652	265	23850	none	2013-07-17	GCA_000435315.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides coprocola CAG:162	2478	na	0	183	31	34044	18985	10734	2013/07/17	82	1263040	0	none	DTU	1263040	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides coprocola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides coprocola CAG:162	3137	3142034	11	33	none	3138897	0	CBCJ000000000.1	2594	183	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	3137	14	33	0
+GB_GCA_000437995.1	49	78.45	0	104	k__Bacteria (UID203)	58	0	4853725	90.14330886660004	266	2308592	42.910416620585735	5384454	RS_GCF_000011065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	not type material	none	f	35	12	181122	483322	none	0	none	none	none	0	none	none	none	none	none	none	none	none	20225	37918	f	f	t	50678	132939	Scaffold	MGS40	na	PRJEB868	SAMEA3138784	266	50678	none	2013-07-17	GCA_000437995.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides thetaiotaomicron CAG:40	4067	na	0	142	12	132939	58419	23889	2013/07/17	124	1263054	0	none	DTU	1263054	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides thetaiotaomicron CAG:40	4378	5384454	11	32	none	5380076	0	CBJO000000000.1	4193	142	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4378	17	32	0
+GB_GCA_000431195.1	55	98.52	0.79	487	o__Bacteroidales (UID2716)	270	25	2936279	84.25177985058781	182	1593003	45.74170771591955	3485124	RS_GCF_001275135.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella rara	not type material	none	f	27	13	132371	237179	none	0	none	none	none	0	none	none	none	none	none	none	none	none	19135	31973	f	f	t	38665	98150	Scaffold	MGS255	na	PRJEB791	SAMEA3138447	182	38665	none	2013-07-17	GCA_000431195.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:255	2771	na	0	109	13	98150	53458	25429	2013/07/17	73	1262923	0	none	DTU	1262923	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:255	2464	3485124	11	38	none	3482660	0	CAWV000000000.1	2848	109	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2464	15	37	0
+GB_GCA_000433435.1	73	93.11	0.16	314	p__Bacteroidetes (UID2605)	208	0	2400469	88.92977624453282	284	1608966	59.75157821401766	2699286	GB_GCA_025145845.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes shahii	not type material	none	f	54	26	47929	111854	none	0	none	none	none	0	none	none	none	none	none	none	none	none	9481	19009	f	f	t	17597	37762	Scaffold	MGS53	na	PRJEB920	SAMEA3138559	284	17597	none	2013-07-17	GCA_000433435.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Alistipes sp. CAG:53	2193	na	0	142	26	37762	20726	10054	2013/07/17	142	1262697	0	none	DTU	1262697	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__environmental samples;s__Alistipes sp. CAG:53	6454	2699286	11	35	none	2692832	0	CBAY000000000.1	2291	142	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	6454	16	35	0
+GB_GCA_000431215.1	44	96.6	0.57	406	o__Bacteroidales (UID2617)	265	0	2285070	89.95060150899813	165	1360333	53.63587866591332	2540361	GB_GCA_000431215.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-1031;s__CAG-1031 sp000431215	not type material	none	f	30	13	88401	137326	none	0	none	none	none	0	none	none	none	none	none	none	none	none	15371	35779	f	f	t	27833	68956	Scaffold	MGS1031	na	PRJEB680	SAMEA3138448	165	27833	none	2013-07-17	GCA_000431215.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:1031	2199	na	0	71	13	68956	31701	20203	2013/07/17	94	1262917	0	none	DTU	1262917	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:1031	4080	2540361	11	40	none	2536281	0	CAWK000000000.1	2225	71	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4080	18	39	0
+GB_GCA_000437795.1	110	97.34	0	406	o__Bacteroidales (UID2617)	265	0	2202725	90.87074364072903	172	1214423	50.15429256281764	2424020	GB_GCA_022009815.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Limisoma;s__Limisoma sp000437795	not type material	none	f	32	12	158257	213435	643	1	641	FR899591.1	none	0	none	none	648	662	0	85.494	CEAX01052833.186887.189769	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Muribaculaceae;gut metagenome	14078	24734	f	f	t	22981	46701	Scaffold	MGS279	na	PRJEB809	SAMEA3138774	172	22981	none	2013-07-17	GCA_000437795.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:279	2076	na	0	98	12	46701	29028	14479	2013/07/17	74	1262924	0	none	DTU	1262924	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:279	2536	2424020	11	41	none	2421484	0	CBIX000000000.1	2116	98	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2536	18	40	0
+GB_GCA_000434735.1	28	97.94	0.56	492	o__Bacteroidales (UID2657)	269	0	3037442	90.2277138489635	194	1442219	42.86711280928666	3366418	GB_GCA_000434735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola sp000434735	not type material	none	f	34	20	126349	166330	none	0	none	none	12776	1	105	FR881235.1	none	none	none	none	none	none	17342	26717	f	f	t	31995	46438	Scaffold	MGS530	na	PRJEB921	SAMEA3138624	194	31995	none	2013-07-17	GCA_000434735.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:530	2669	na	1	126	20	46438	29723	16065	2013/07/17	68	1262741	0	none	DTU	1262741	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:530	1995	3366418	11	42	none	3364423	0	CBCL000000000.1	2761	126	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1995	18	43	0
+GB_GCA_000434215.1	81	95.85	0.13	406	o__Bacteroidales (UID2617)	265	0	2176562	88.20834164125658	289	1122235	45.66751973526524	2467524	GB_GCA_000434215.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA11471;g__UBA11471;s__UBA11471 sp000434215	not type material	none	f	48	14	42964	193878	1048	1	295	HF999652.1	1048	1	102	HF999652.1	295	545	8.25e-154	100	CDYK01001058.42994.45863	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Barnesiellaceae;Coprobacter;gut metagenome	8503	25438	f	f	t	16925	56810	Scaffold	MGS144	na	PRJEB720	SAMEA3138598	289	16925	none	2013-07-17	GCA_000434215.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:144	2103	na	1	97	14	56810	30069	14074	2013/07/17	192	1262736	0	none	DTU	1262736	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:144	10040	2467524	11	44	none	2457484	0	CBBJ000000000.1	2150	97	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	10040	19	45	0
+GB_GCA_000434875.1	31	64.26	0	104	k__Bacteria (UID203)	58	0	4897875	90.40946676619714	328	2339608	43.26332622758991	5417436	RS_GCF_900130125.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides congonensis	not type material	none	f	60	35	95134	180086	none	0	none	none	none	0	none	none	none	none	none	none	none	none	16487	30435	f	f	t	29067	50581	Scaffold	MGS754	na	PRJEB996	SAMEA3138631	328	29067	none	2013-07-17	GCA_000434875.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:754	4054	na	0	178	35	50581	29923	17669	2013/07/17	150	1262750	0	none	DTU	1262750	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:754	9573	5417436	11	29	none	5407863	0	CBCP000000000.1	4155	178	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	9573	17	28	0
+GB_GCA_000432655.1	61	89.83	0.24	316	p__Bacteroidetes (UID2605)	210	0	1621056	91.90597680035378	240	852181	48.55663024743237	1763820	GB_GCA_000432655.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Cryptobacteroides;s__Cryptobacteroides sp000432655	not type material	none	f	41	13	48678	108767	none	0	none	none	none	0	none	none	none	none	none	none	none	none	7312	20509	f	f	t	12950	47474	Scaffold	MGS1060	na	PRJEB683	SAMEA3138520	240	12950	none	2013-07-17	GCA_000432655.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:1060	1576	na	0	86	13	47474	26678	9119	2013/07/17	154	1262734	0	none	DTU	1262734	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:1060	8734	1763820	11	35	none	1755086	0	CAWQ000000000.1	1615	86	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	8734	19	35	0
+GB_GCA_000024525.1	0	100	0.89	454	o__Cytophagales (UID2936)	336	25	7481814	88.11196173758941	9	4258276	50.14894141716104	8491258	GB_GCA_000024525.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma linguale	type strain of species	LPSN	t	1	1	8078757	8078757	8078757	4	2808	CP001769.1	none	0	none	none	2808	5186	0	100	CP001769.6728674.6731505	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma linguale DSM 74	943473	943473	f	f	t	8078757	8078757	Complete Genome	ASM2452v1	na	PRJNA28817	SAMN00002598	none	none	none	2010-01-13	GCA_000024525.1	none	full	none	none	none	9	0	Spirosoma linguale DSM 74	6947	na	11	9	1	8078757	8078757	8078757	2010/01/13	0	108	4	DSM 74	US DOE Joint Genome Institute (JGI-PGF)	504472	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma linguale	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma linguale;x__Spirosoma linguale DSM 74	0	8491258	11	49	assembly from type material	8491258	0	none	7129	9	8078757	4	none	none	none	none	none	none	1504	CP001769.1	1495	2761	0	100	CP001769.6726840.6728334	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma linguale DSM 74	0	20	49	0
+GB_GCA_000436795.1	6	86.41	0.47	491	o__Bacteroidales (UID2657)	268	33.33	2601713	89.4883911947743	210	1234986	42.51451964761088	2907319	GB_GCA_000436795.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola sp000436795	not type material	none	f	35	25	76398	114175	none	0	none	none	none	0	none	none	none	none	none	none	none	none	13832	17946	f	f	t	25896	35228	Scaffold	MGS1076	na	PRJEB685	SAMEA3138724	210	25896	none	2013-07-17	GCA_000436795.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides sp. CAG:1076	2333	na	0	162	25	35228	19384	8952	2013/07/17	48	1262735	0	none	DTU	1262735	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides sp. CAG:1076	2456	2907319	11	39	none	2904863	0	CAZB000000000.1	2436	162	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2456	16	39	0
+GB_GCA_000434155.1	0	99.16	0	263	o__Clostridiales (UID1212)	149	0	2301894	90.8139904171442	64	1064941	42.038361636784224	2534735	GB_GCA_025146925.1	f	d__Bacteria;p__Bacillota_A;c__Clostridia;o__Lachnospirales;f__Lachnospiraceae;g__Bacteroides_F;s__Bacteroides_F pectinophilus	not type material	none	f	12	8	202958	240211	none	0	none	none	none	0	none	none	none	none	none	none	none	none	39582	68506	f	f	t	73908	126371	Scaffold	MGS437	na	PRJEB880	SAMEA3138595	64	73908	none	2013-07-17	GCA_000434155.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Bacteroides pectinophilus CAG:437	2278	na	0	37	8	126371	80924	53072	2013/07/17	27	1263051	0	none	DTU	1263051	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides pectinophilus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__Bacteroides pectinophilus CAG:437	1475	2534735	11	33	none	2533260	0	CBHH000000000.1	2317	37	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1475	15	33	0
+GB_GCA_000434455.1	30	97.21	0	492	o__Bacteroidales (UID2657)	269	0	2441113	85.03809816098385	285	1413258	49.27171019717289	2870611	RS_GCF_900106785.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Alloprevotella;s__Alloprevotella timonensis	not type material	none	f	40	28	99428	111748	none	0	none	none	515	1	105	FR879160.1	none	none	none	none	none	none	10064	13867	f	f	t	19665	28612	Scaffold	MGS5226	na	PRJEB917	SAMEA3138610	285	19665	none	2013-07-17	GCA_000434455.1	derived from environmental sample	full	none	derived from human gut metagenome	none	0	0	Prevotella sp. CAG:5226	2309	na	1	207	28	28612	13038	5706	2013/07/17	78	1262930	0	none	DTU	1262930	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__environmental samples;s__Prevotella sp. CAG:5226	2286	2870611	11	45	none	2868325	0	CBBW000000000.1	2362	207	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2286	17	44	0
+RS_GCF_001431165.1	31	99.43	0.11	813	o__Pseudomonadales (UID4488)	308	0	5691852	89.31778862110117	331	4217183	66.19684174555553	6372585	RS_GCF_001457615.1	f	d__Bacteria;p__Pseudomonadota;c__Gammaproteobacteria;o__Pseudomonadales;f__Pseudomonadaceae;g__Pseudomonas;s__Pseudomonas aeruginosa	not type material	none	f	38	32	249759	295284	2700	7	2697	NZ_AYSZ01000031.1	none	0	none	none	2697	4981	0	100	AYSZ01000031.1.2700	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Pseudomonas aeruginosa PAHM4	19246	22678	f	f	t	56296	65318	Scaffold	PAHM4v1	na	PRJNA224116	SAMN03247002	331	56296	Spain	2015-11-04	GCA_001431165.1	none	full	none	sputum sample from patient with non-CF bronchiectasis	none	0	1	Pseudomonas aeruginosa PAHM4	6129	na	13	281	32	65318	39440	18286	2015/11/04	50	287	6	PAHM4	University of Virginia	1146882	d__Bacteria;p__Proteobacteria;c__Gammaproteobacteria;o__Pseudomonadales;f__Pseudomonadaceae;g__Pseudomonas;s__Pseudomonas aeruginosa	d__Bacteria;p__Proteobacteria;c__Gammaproteobacteria;o__Pseudomonadales;f__Pseudomonadaceae;g__Pseudomonas;x__Pseudomonas aeruginosa group;s__Pseudomonas aeruginosa;x__Pseudomonas aeruginosa PAHM4	1883	6372585	11	50	none	6370702	0	AYSZ00000000.1	6056	281	844	5	841	1554	0	100	4182252	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	843	NZ_AYSZ01000221.1	843	1557	0	100	CP011073.3796953.3798492	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	1883	19	50	1
+RS_GCF_001485415.1	0	99.65	1.59	511	f__Flavobacteriaceae (UID2817)	283	88.89	3684839	86.89096440686839	65	1436899	33.883038001189405	4240762	RS_GCF_001485415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium odoratimimum	type strain of species	LPSN	f	8	8	478860	478860	7227	1	3778	NZ_BCMQ01000053.1	none	0	none	none	3373	6028	0	98.933	LKUO01004148.13512.16884	Eukaryota;Archaeplastida;Chloroplastida;Charophyta;Phragmoplastophyta;Cucumis sativus (cucumber)	65242	65242	f	f	t	155249	155249	Contig	ASM148541v1	na	PRJNA224116	SAMD00042711	65	155249	none	2015-12-08	GCA_001485415.1	none	full	none	none	none	0	1	Myroides odoratimimus	3731	na	2	none	none	none	none	none	2015/12/08	0	76832	1	CCUG39352	Shandong University	76832	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides odoratimimus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides odoratimimus	0	4240762	11	80	assembly from type material	4240762	0	BCMQ00000000.1	3790	65	7227	1	none	none	none	none	none	none	1805	NZ_BCMQ01000053.1	1803	3253	0	99.279	LKUO01005215.832.2633	Eukaryota;Archaeplastida;Chloroplastida;Charophyta;Phragmoplastophyta;Streptophyta;Embryophyta;Tracheophyta;Spermatophyta;Magnoliophyta;Cucurbitales;Cucumis;Cucumis sativus (cucumber)	0	18	82	0
+RS_GCF_001461685.1	0	99.6	2.38	808	f__Rhizobiaceae (UID3563)	337	21.05	6585992	86.51989270259125	345	4679181	61.47019887907602	7612113	RS_GCF_001429285.1	f	d__Bacteria;p__Pseudomonadota;c__Alphaproteobacteria;o__Rhizobiales;f__Rhizobiaceae;g__Ensifer;s__Ensifer sp001429285	not type material	none	f	14	14	707936	707936	2927	6	2511	NZ_AUSZ01000034.1	731	2	109	NZ_AUSZ01000110.1	2511	4638	0	100	AUSZ01000034.1.2516	Bacteria;Proteobacteria;Alphaproteobacteria;Rhizobiales;Rhizobiaceae;Ensifer;Sinorhizobium sp. GL28	22064	22064	t	f	f	151134	151134	Contig	ASM146168v1	na	PRJNA224116	SAMN04301587	345	151134	China: HN	2015-12-07	GCA_001461685.1	none	full	none	soil sample from arsenic pollution region	none	0	1	Sinorhizobium sp. GL28	7326	na	12	none	none	none	none	none	2015/12/07	0	1358418	4	GL28	Huazhong Agricultural University	1358418	d__Bacteria;p__Proteobacteria;c__Alphaproteobacteria;o__Hyphomicrobiales;f__Rhizobiaceae;g__Sinorhizobium;s__	d__Bacteria;p__Proteobacteria;c__Alphaproteobacteria;o__Hyphomicrobiales;f__Rhizobiaceae;x__Sinorhizobium/Ensifer group;g__Sinorhizobium;x__unclassified Sinorhizobium;s__Sinorhizobium sp. GL28	0	7612113	11	50	none	7612113	0	AUSZ00000000.1	7487	345	2602	4	1222	2218	0	99.427	70217	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1281	NZ_AUSZ01000037.1	1252	2279	0	99.521	EF031003.1.1512	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured bacterium	0	20	50	0
+RS_GCF_001521815.1	0	100	1.08	152	k__Bacteria (UID2565)	93	0	3549169	89.62783366027794	26	1407945	35.55702200328208	3959896	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	5	5	664060	664060	374459	1	2763	NZ_LNOG01000005.1	374459	2	101	NZ_LNOG01000005.1	2763	5103	0	100	CP016370.2369251.2372025	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	152295	158395	t	f	f	361029	361029	Scaffold	ASM152181v1	na	PRJNA224116	SAMN04254539	26	361029	USA: Florida	2016-01-21	GCA_001521815.1	none	full	none	blood	none	0	0	Elizabethkingia anophelis	3609	na	4	25	5	361029	273669	153530	2016/01/21	1	1117645	1	0422	CDC	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	214	3959896	11	46	none	3959682	0	LNOG00000000.1	3677	25	1712	1	1512	2765	0	99.669	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_LNOG01000012.1	1513	2795	0	100	CP016370.1476713.1478234	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	214	19	44	0
+RS_GCF_001510795.1	0	96.11	0.8	511	f__Flavobacteriaceae (UID2817)	283	33.33	2363406	87.10576944340019	245	884209	32.588436051097204	2713260	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	12	12	197778	197778	3024	1	2872	NZ_LNNF01000205.1	30861	1	104	NZ_LNNF01000171.1	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	11074	11074	t	f	f	70371	70371	Contig	ASM151079v1	na	PRJNA224116	SAMN04279589	245	70371	USA	2016-01-11	GCA_001510795.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2474	na	3	none	none	none	none	none	2016/01/11	0	96345	1	Pullman	South Dakota State University	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2713260	11	40	none	2713260	0	LNNF00000000.1	2490	245	2313	1	1507	2784	0	100	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1508	NZ_LNNF01000210.1	1508	2785	0	100	CP010278.992834.994351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	40	0
+RS_GCF_001444445.1	0	98.65	0	567	g__Prevotella (UID2724)	296	0	2513656	87.84608545651268	1	1329732	46.47085794804839	2861432	RS_GCF_000613405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella enoeca	not type material	none	f	1	1	2861432	2861432	2861432	3	2904	NZ_CP013195.1	2861432	3	103	NZ_CP013195.1	2904	5363	0	100	CP013195.2505427.2508341	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella enoeca	2861432	2861432	t	f	f	2861432	2861432	Complete Genome	ASM144444v1	na	PRJNA224116	SAMN04260158	none	none	USA: Blacksberg; VA	2015-11-17	GCA_001444445.1	none	full	none	subgingival plaque; periodontal pocket	37.23 N 80.42 W	1	0	Prevotella enoeca	2430	representative genome	9	1	1	2861432	2861432	2861432	2015/11/17	0	76123	3	F0113	The Forsyth Institute	76123	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella enoeca	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella enoeca	0	2861432	11	53	none	2861432	0	none	2513	1	2861432	3	none	none	none	none	none	none	1527	NZ_CP013195.1	1527	2820	0	100	CP013195.2475258.2476800	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella enoeca	0	19	53	0
+RS_GCF_001429765.1	108	99.65	0.49	511	f__Flavobacteriaceae (UID2817)	283	0	4425152	88.74563506802194	14	1704836	34.19187599088262	4986332	RS_GCF_001429765.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp001429765	not type material	none	f	3	3	908823	1307598	827579	1	2869	NZ_LMJB01000001.1	908823	3	105	NZ_LMJB01000006.1	2869	5299	0	100	LMJB01000001.822198.825186	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. Root901	356156	415527	t	f	f	771929	827579	Scaffold	Root901	na	PRJNA224116	SAMN04155874	14	771929	Germany: Cologne	2015-11-02	GCA_001429765.1	none	full	none	root	50.958 N 6.856 E	0	0	Flavobacterium sp. Root901	4253	na	7	12	3	827579	446301	314587	2015/11/02	2	1736605	1	Root901	Max Planck Institute for Plant Breeding Research	1736605	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. Root901	139	4986332	11	54	none	4986193	0	LMJB00000000.1	4277	12	827579	1	1476	2702	0	99.729	743189	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_LMJB01000001.1	1510	2789	0	100	LMJB01000001.825719.827238	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. Root901	139	19	52	0
+RS_GCF_000318315.2	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2405343	87.79883392033967	166	1077546	39.37101145748002	2739607	RS_GCF_000023285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga ochracea	not type material	none	f	33	11	71093	244566	5412	1	2827	NZ_KB291520.1	5412	1	104	NZ_KB291520.1	2827	5221	0	100	AMEV01000009.336.3174	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. oral taxon 324 str. F0483	16487	43485	t	f	f	28340	87907	Scaffold	ASM31831v2	na	PRJNA224116	SAMN02436688	166	28340	none	2013-01-29	GCA_000318315.2	none	full	none	oral cavity	none	0	0	Capnocytophaga sp. oral taxon 324 str. F0483	2367	na	3	63	11	87907	51705	22123	2013/01/29	103	712211	1	F0483	Washington University	1127691	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;x__unclassified Capnocytophaga;s__Capnocytophaga sp. oral taxon 324;x__Capnocytophaga sp. oral taxon 324 str. F0483	2705	2739607	11	40	none	2736902	0	AMEV00000000.1	2339	63	5412	1	1513	2643	0	98.215	4436135	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__ochracea	1514	NZ_KB291520.1	1506	2782	0	100	AMEV01000009.3677.5182	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. oral taxon 324 str. F0483	2705	19	40	0
+RS_GCF_001535595.1	0	99.07	0	491	o__Bacteroidales (UID2657)	269	0	6335193	90.82279070794316	150	2990947	42.88678333818226	6975334	RS_GCF_000158035.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	not type material	none	f	12	10	513320	550060	829	13	829	NZ_LRGD01000069.1	184146	4	105	NZ_LRGD01000017.1	829	1520	0	99.759	CECF01020719.1245.3241	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;gut metagenome	46493	57174	f	f	t	203080	268946	Scaffold	ASM153559v1	na	PRJNA224116	SAMN03653598	150	203080	USA:Boston	2016-01-25	GCA_001535595.1	none	full	none	fecal sample	none	0	0	Bacteroides cellulosilyticus	5276	na	34	122	10	268946	181817	66570	2016/01/25	28	246787	13	CL09T06C25	Brigham & Women's Hospital	246787	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	1281	6975334	11	67	none	6974053	0	LRGD00000000.1	5374	122	638	9	626	1157	0	100	4319619	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	627	NZ_LRGD01000072.1	627	1158	0	100	CP012801.1646789.1648308	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides cellulosilyticus	1281	19	64	0
+RS_GCF_000318195.2	0	99.66	0	567	g__Prevotella (UID2724)	296	0	2466466	86.43681947369713	166	1230759	43.16044732938466	2853490	RS_GCF_000614205.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella saccharolytica	not type material	none	f	24	7	114039	322574	3038	2	1354	NZ_KB290976.1	917	1	110	NZ_KB291022.1	1356	1572	0	87.832	FIZG01000003.102512.105452	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. SN19	17178	40190	f	f	t	37368	128241	Scaffold	ASM31819v2	na	PRJNA224116	SAMN02436685	166	37368	none	2013-01-29	GCA_000318195.2	none	full	none	oral cavity	none	0	0	Prevotella saccharolytica F0055	2219	representative genome	4	71	7	128241	78469	30022	2013/01/29	95	633701	1	F0055	Washington University	1127699	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella saccharolytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella saccharolytica;x__Prevotella saccharolytica F0055	1900	2853490	11	48	none	2851590	0	AMEP00000000.1	2303	71	3038	1	838	1502	0	99.045	1119576	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	864	NZ_KB290976.1	837	1500	0	99.044	HM587317.1.1498	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. 8404125	1900	19	46	0
+RS_GCF_001510875.1	0	99.29	2.55	511	f__Flavobacteriaceae (UID2817)	283	5.56	2566852	87.14980615095135	433	967985	32.8650444618656	2945333	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	11	11	268212	268212	2552	4	2532	NZ_LNTP01000384.1	483	3	104	NZ_LNTP01000056.1	2532	4676	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	6802	6802	t	f	f	88548	88548	Contig	ASM151087v1	na	PRJNA224116	SAMN04283694	433	88548	USA	2016-01-11	GCA_001510875.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2832	na	12	none	none	none	none	none	2016/01/11	0	96345	1	11754	South Dakota State University	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2945333	11	42	none	2945333	0	LNTP00000000.1	2840	433	2206	1	1507	2784	0	100	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1508	NZ_LNTP01000386.1	1508	2785	0	100	CP010278.992834.994351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	42	0
+RS_GCF_001546565.2	0	99.32	0	567	g__Prevotella (UID2724)	296	0	2144601	87.2038937988326	153	973220	39.61501122442957	2459295	RS_GCF_000262545.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella bivia	not type material	none	f	17	15	132548	132548	3211	1	2900	NZ_KQ971104.1	none	0	none	none	2900	5356	0	100	LRQF02000004.71.2978	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bivia	16056	19364	f	f	t	45352	48915	Scaffold	ASM154656v2	na	PRJNA224116	SAMN03854476	153	45352	none	2016-03-04	GCA_001546565.2	none	full	none	Vagina	none	0	0	Prevotella bivia	2118	na	2	127	15	48915	25708	10907	2016/03/04	26	28125	1	GED7760C	The Genome Institute at Washington University	28125	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bivia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bivia	2600	2459295	11	44	none	2456695	0	LRQF00000000.2	2138	127	1889	1	1525	2806	0	99.869	610043	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1526	NZ_KQ971128.1	1509	2776	0	99.867	AJVZ01000014.101467.102975	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bivia DSM 20514	2600	18	44	0
+RS_GCF_001510855.1	0	99.29	0.8	511	f__Flavobacteriaceae (UID2817)	283	0	2470902	87.53729162127549	211	919556	32.57735099736598	2822685	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	13	13	230920	230920	5627	2	2872	NZ_LNTQ01000160.1	5627	3	104	NZ_LNTQ01000160.1	2872	5304	0	100	CP010278.2441608.2444499	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	13377	13377	t	f	f	76644	76644	Contig	ASM151085v1	na	PRJNA224116	SAMN04283745	211	76644	USA	2016-01-11	GCA_001510855.1	none	full	none	none	none	0	3	Flavobacterium psychrophilum	2559	na	6	none	none	none	none	none	2016/01/11	0	96345	1	17830	South Dakota State University	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2822685	11	40	none	2822685	0	LNTQ00000000.1	2588	211	5627	1	1507	2778	0	99.934	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1508	NZ_LNTQ01000160.1	1508	2785	0	100	CP010274.2488027.2489544	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	40	0
+RS_GCF_001547875.1	1	97.95	0	427	o__Bacteroidales (UID2621)	260	0	3020410	90.13622748728044	1	1577143	47.06571712159401	3350939	RS_GCF_001006485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Tannerella;s__Tannerella forsythia	not type material	none	f	1	1	3350939	3350939	3350939	2	2876	NZ_AP013044.1	3350939	2	105	NZ_AP013044.1	2875	5310	0	100	AP013044.3303620.3306498	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Tannerella;Tannerella forsythia 3313	3350939	3350939	t	f	f	3350939	3350939	Complete Genome	ASM154787v1	na	PRJNA224116	SAMD00061004	none	none	none	2015-04-11	GCA_001547875.1	none	full	none	none	none	1	0	Tannerella forsythia 3313	2792	na	6	1	1	3350939	3350939	3350939	2015/04/11	0	28112	2	3313	Tokyo Medical and Dental University, Graduate School of Medical and Dental Sciences, Section of Bacterial Phathogenesis	1307832	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Tannerella;s__Tannerella forsythia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Tannerella;s__Tannerella forsythia;x__Tannerella forsythia 3313	0	3350939	11	46	none	3350939	0	none	2893	1	3350939	2	none	none	none	none	none	none	1522	NZ_AP013044.1	1513	2795	0	100	AP013045.677900.679412	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Tannerella;Tannerella forsythia KS16	0	19	46	0
+RS_GCF_001535605.1	0	99.26	2.4	492	o__Bacteroidales (UID2657)	269	0	3468046	89.87657942776227	158	1757423	45.558434784682575	3858676	GB_GCA_025147325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercoris	not type material	none	f	10	5	408337	433644	620	16	616	NZ_LRGC01000049.1	252652	4	106	NZ_LRGC01000006.1	616	1133	0	99.838	ATFP01000001.71085.73963	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides stercoris CC31F	24414	32980	f	f	t	118684	271166	Scaffold	ASM153560v1	na	PRJNA224116	SAMN03653591	158	118684	USA:Boston	2016-01-25	GCA_001535605.1	none	full	none	fecal sample	none	0	0	Bacteroides stercoris	3223	na	32	117	5	271166	99717	58071	2016/01/25	41	46506	10	CL09T03C01	Brigham & Women's Hospital	46506	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercoris	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercoris	1162	3858676	11	66	none	3857514	0	LRGC00000000.1	3318	117	668	9	666	1225	0	99.85	4415263	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	668	NZ_LRGC01000047.1	668	1229	0	99.85	HQ784037.1.1447	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;uncultured organism	1162	19	67	0
+RS_GCF_001544435.1	66	99.75	0.49	324	o__Flavobacteriales (UID2815)	204	0	4396447	88.41396130894863	381	1858069	37.36686036514795	4972571	GB_GCA_016025055.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium indologenes	not type material	none	f	70	70	135560	135560	5417	1	2744	NZ_FCNN01000105.1	5417	4	98	NZ_FCNN01000105.1	2744	5068	0	100	CP022058.69495.72251	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium indologenes	13051	13051	t	f	f	22188	22188	Contig	Chryseobacterium indologenes	na	PRJNA224116	SAMEA3855907	381	22188	none	2016-01-27	GCA_001544435.1	none	full	none	none	none	0	0	Chryseobacterium indologenes	4479	na	6	none	none	none	none	none	2016/01/27	0	253	1	mars15	URMITE	253	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium indologenes	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium indologenes	0	4972571	11	65	none	4972571	0	FCNN00000000.1	4636	381	5417	1	1512	2715	0	99.074	606865	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FCNN01000105.1	1513	2795	0	100	CP022058.4629363.4630883	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium indologenes	0	19	66	0
+RS_GCF_001430865.1	0	99.35	0.8	511	f__Flavobacteriaceae (UID2817)	283	83.33	2664712	92.38700783866271	1	1022523	35.4514260513755	2884293	RS_GCF_002954355.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens tegetincola	not type material	none	f	1	1	2884293	2884293	2884293	3	2805	NZ_CP011373.1	2884293	3	103	NZ_CP011373.1	2805	5180	0	100	CP011373.720019.722831	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens sp. MIC269	2884293	2884293	t	f	f	2884293	2884293	Complete Genome	ASM143086v1	na	PRJNA224116	SAMN03571531	none	none	Micronesia	2015-11-03	GCA_001430865.1	none	full	none	sediment	7.428889 N 151.858889 E	1	1	Nonlabens sp. MIC269	2587	na	9	1	1	2884293	2884293	2884293	2015/11/03	0	1476901	3	MIC269	Korea Institute of Ocean Science and Technology	1476901	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;x__unclassified Nonlabens;s__Nonlabens sp. MIC269	0	2884293	11	36	none	2884293	0	none	2622	1	2884293	3	none	none	none	none	none	none	1522	NZ_CP011373.1	1522	2811	0	100	CP011373.723364.724895	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens sp. MIC269	0	19	36	0
+RS_GCF_001318345.1	0	99.26	0.93	491	o__Bacteroidales (UID2657)	269	0	6430259	90.76097542523263	1	3024908	42.69557426094183	7084828	RS_GCF_000158035.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	not type material	none	f	1	1	7084828	7084828	7084828	4	2874	NZ_CP012801.1	7084828	4	105	NZ_CP012801.1	2874	5308	0	100	CP012801.6657407.6660280	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides cellulosilyticus	7084828	7084828	t	f	f	7084828	7084828	Complete Genome	ASM131834v1	na	PRJNA224116	SAMN03852682	none	none	USA:Woods Hole	2015-10-16	GCA_001318345.1	none	full	none	feces	none	1	0	Bacteroides cellulosilyticus	5370	na	12	1	1	7084828	7084828	7084828	2015/10/16	0	246787	4	WH2	Washington University in St. Louis	246787	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	0	7084828	11	65	none	7084828	0	none	5480	1	7084828	4	none	none	none	none	none	none	1520	NZ_CP012801.1	1520	2808	0	100	CP012801.1646789.1648308	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides cellulosilyticus	0	19	64	0
+RS_GCF_001483385.1	0	99.11	0.07	548	f__Flavobacteriaceae (UID2845)	298	0	2552396	87.46315004216564	1	918680	31.480478217618558	2918253	RS_GCF_900239495.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum finnmarkense	not type material	none	f	1	1	2918253	2918253	2918253	10	2870	NZ_CP013671.1-#6	2918253	10	103	NZ_CP013671.1	2870	5301	0	100	CP013671.1884580.1887465	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum dicentrarchi	2918253	2918253	t	f	f	2918253	2918253	Complete Genome	ASM148338v1	na	PRJNA224116	SAMN04346845	none	none	Chile:Aysen	2015-12-30	GCA_001483385.1	none	full	none	skin lesion	41.42058957 S 72.91488538 W	1	1	Tenacibaculum dicentrarchi	2452	na	30	1	1	2918253	2918253	2918253	2015/12/30	0	669041	10	AY7486TD	ADL Diagnostic Chile Ltda	669041	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum dicentrarchi	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum dicentrarchi	0	2918253	11	69	none	2918253	0	none	2493	1	2918253	10	none	none	none	none	none	none	1515	NZ_CP013671.1	1515	2798	0	100	CP013671.502352.503875	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum dicentrarchi	0	19	69	0
+RS_GCF_001314975.1	0	99.41	0.24	839	g__Bacteroides (UID2691)	309	0	5808885	89.53709990543622	1	2769638	42.690697837518314	6487685	RS_GCF_000011065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	not type material	none	f	1	1	6487685	6487685	6487685	5	2872	NZ_CP012937.1	6487685	5	432	NZ_CP012937.1-#2	2872	5304	0	100	CP012937.759519.762390	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides thetaiotaomicron	6487685	6487685	t	f	f	6487685	6487685	Complete Genome	ASM131497v1	na	PRJNA224116	SAMN03852684	none	none	USA:Woods Hole	2015-10-15	GCA_001314975.1	none	full	none	feces	none	1	0	Bacteroides thetaiotaomicron	5056	na	17	1	1	6487685	6487685	6487685	2015/10/15	0	818	5	7330	Washington University in St. Louis	818	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	0	6487685	11	70	none	6487685	0	none	5077	1	6487685	5	none	none	none	none	none	none	1526	NZ_CP012937.1	1526	2819	0	100	CP012937.2383895.2385420	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides thetaiotaomicron	0	19	70	0
+RS_GCF_001401755.1	15	99.62	0.19	496	s__algicola (UID2847)	263	0	4771262	86.64311154265845	75	1730233	31.4519138638999	5506799	RS_GCF_001401755.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina longa	type strain of species	LPSN	f	8	7	491246	837170	4386	1	2805	NZ_AVQK01000069.1	4386	1	104	NZ_AVQK01000069.1	2799	5169	0	100	AVQK01000069.331.3132	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina longa SW024	73349	82191	f	f	t	309215	309215	Scaffold	ASM140175v1	na	PRJNA224116	SAMN04202543	90	288357	none	2015-10-21	GCA_001401755.1	none	full	none	none	none	0	1	Aquimarina longa SW024	4706	representative genome	3	67	7	309215	219987	66130	2015/10/21	23	1080221	1	SW024	Ocean Uinversity of China	1379258	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina longa	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina longa;x__Aquimarina longa SW024	5598	5506799	11	40	assembly from type material	5501201	0	AVQK00000000.1	4850	67	4386	1	624	1068	0	97.596	172234	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__	625	NZ_AVQK01000069.1	625	1077	0	97.76	CP031965.5243048.5244574	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina sp. AD10	5583	19	40	0
+RS_GCF_001456155.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	3586357	87.94906328612284	2	1453451	35.64331548205561	4077766	RS_GCF_001456155.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium sp001456155	not type material	none	f	1	1	4072208	4072208	4072208	6	2745	NZ_CP013293.1	4072208	6	100	NZ_CP013293.1	2745	5070	0	100	CP013293.3414.6170	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. IHB B 17019	2038883	2038883	t	f	f	4072208	4072208	Complete Genome	ASM145615v1	na	PRJNA224116	SAMN04286739	none	none	India:Kashmir Valley; J & K	2015-12-03	GCA_001456155.1	none	full	none	soil	33.51 N 74.52999999 E	2	0	Chryseobacterium sp. IHB B 17019	3690	na	18	2	1	4072208	4072208	4072208	2015/12/03	0	1721091	6	IHB B 17019	CSIR-Institute of Himalayan Bioresource Technology	1721091	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. IHB B 17019	0	4077766	11	72	none	4077766	0	none	3737	2	4072208	6	none	none	none	none	none	none	1513	NZ_CP013293.1	1513	2795	0	100	CP013293.1281.2798	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. IHB B 17019	0	19	70	0
+GB_GCA_001602885.1	51	63.4	0.33	316	p__Bacteroidetes (UID2605)	210	50	1526586	94.04456962479162	371	1017469	62.7108040910262	1623258	GB_GCA_001602885.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Cryptobacteroides;s__Cryptobacteroides sp001602885	not type material	none	f	88	87	24681	24681	none	0	none	none	none	0	none	none	none	none	none	none	none	none	4373	4677	f	f	t	5584	5683	Scaffold	ASM160288v1	na	PRJNA284316	SAMN03837512	371	5584	Australia	2016-03-30	GCA_001602885.1	derived from metagenome	full	Bact_16	3 replicate cellulose-degrading anaerobic digesters sampled at day 96 and day 362	none	0	none	Bacteroidales bacterium Bact_16	0	na	none	347	87	5683	3608	2311	2016/03/30	24	1674830	none	Bact_16	University of Queensland	1674830	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium Bact_16	729	1623258	none	none	none	1622529	0	LUZH00000000.1	1656	347	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	729	15	26	0
+GB_GCA_001464625.1	0	95.45	0.59	302	p__Bacteroidetes (UID2591)	203	50	3710363	90.9763033593698	196	1552256	38.06056516502615	4078384	GB_GCA_001464625.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__JJ008;s__JJ008 sp001464625	not type material	none	f	32	32	165542	165542	34415	1	250	LNFJ01000025.1	34415	1	98	LNFJ01000025.1	250	451	1.54e-125	99.2	CXWL01000903.503115.505532	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Terrimonas;groundwater metagenome	20808	20808	f	f	t	38812	38812	Contig	Bacteroidia bacterium Ga0077558	na	PRJNA301005	SAMN04254529	196	38812	USA: Ann Arbor	2015-12-09	GCA_001464625.1	derived from metagenome	full	Ga0077558	dual media filters at the Ann Arbor; Michigan drinking water treatment plant	42.2814 N 83.74829999999997 W	0	none	Bacteroidia bacterium Ga0077558	0	na	none	none	none	none	none	none	2015/12/09	0	1752194	none	Ga0077558	University of Glasgow	1752194	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;x__unclassified Bacteroidia;s__Bacteroidia bacterium Ga0077558	0	4078384	none	none	none	4078384	0	LNFJ00000000.1	3886	196	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	40	0
+GB_GCA_001603615.1	16	62.07	0	104	k__Bacteria (UID203)	58	0	1369367	91.21779422677501	278	436960	29.114925197110097	1501206	GB_GCA_001603615.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__DTU049;g__DTU049;s__DTU049 sp001603615	not type material	none	f	63	62	25339	25339	none	0	none	none	none	0	none	none	none	none	none	none	none	none	5398	5580	f	f	t	8136	8288	Scaffold	ASM160361v1	na	PRJNA284316	SAMN03837516	278	8136	Australia	2016-03-30	GCA_001603615.1	derived from metagenome	full	Bact_20	3 replicate cellulose-degrading anaerobic digesters sampled at day 96 and day 362	none	0	none	Bacteroidales bacterium Bact_20	0	na	none	269	62	8288	4330	2526	2016/03/30	9	1674834	none	Bact_20	University of Queensland	1674834	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium Bact_20	379	1501206	none	none	none	1500827	0	LUZL00000000.1	1457	269	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	379	14	21	0
+GB_GCA_001603505.1	4	86.14	1.3	316	p__Bacteroidetes (UID2605)	210	14.29	1809930	96.08851527946116	106	1091738	57.96125963266465	1883607	GB_GCA_001603505.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Bact-11;s__Bact-11 sp001603505	not type material	none	f	18	18	126468	126468	none	0	none	none	none	0	none	none	none	none	none	none	none	none	17769	17939	f	f	t	35217	35217	Scaffold	ASM160350v1	na	PRJNA284316	SAMN03837507	106	35217	Australia	2016-03-30	GCA_001603505.1	derived from metagenome	full	Bact_11	3 replicate cellulose-degrading anaerobic digesters sampled at day 96 and day 362	none	0	none	Bacteroidales bacterium Bact_11	0	na	none	105	18	35217	18703	8919	2016/03/30	1	1674825	none	Bact_11	University of Queensland	1674825	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium Bact_11	38	1883607	none	none	none	1883569	0	LUZC00000000.1	1670	105	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	38	17	35	0
+GB_GCA_001464475.1	0	98.41	1.01	511	f__Flavobacteriaceae (UID2817)	283	0	3161392	91.63401951293037	52	1085660	31.46822337261813	3450020	GB_GCA_001464475.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp001464475	not type material	none	f	6	6	928275	928275	none	0	none	none	21948	3	85	LNDX01000040.1	none	none	none	none	none	none	66346	66346	f	f	t	131216	131216	Contig	Flavobacteriaceae bacterium Ga0077528	na	PRJNA301005	SAMN04254491	52	131216	USA: Ann Arbor	2015-12-09	GCA_001464475.1	derived from metagenome	full	Ga0077528	dual media filters at the Ann Arbor; Michigan drinking water treatment plant	42.2814 N 83.74829999999997 W	0	none	Flavobacteriaceae bacterium Ga0077528	0	na	none	none	none	none	none	none	2015/12/09	0	1752212	none	Ga0077528	University of Glasgow	1752212	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium Ga0077528	0	3450020	none	none	none	3450020	0	LNDX00000000.1	3228	52	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	38	0
+GB_GCA_001601815.1	3	96.73	2.71	302	p__Bacteroidetes (UID2591)	203	0	4276052	87.7769605523723	445	2136063	44.98467280933632	4871497	GB_GCA_001601815.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Flavihumibacter;s__Flavihumibacter sp001601815	not type material	none	f	86	31	70714	161089	52762	1	689	LUKG01000026.1	none	0	none	none	689	1184	0	97.678	BBWV01000016.2443.5319	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Flavihumibacter;Flavihumibacter petaseus NBRC 106054	10670	28825	f	f	t	16760	46868	Scaffold	ASM160181v1	na	PRJNA314789	SAMN04547021	445	16760	Brazil: Belem; Bolonha Lake	2016-03-29	GCA_001601815.1	derived from metagenome	full	CACIAM 22H1	CACIAM 22 non-axenic culture of unicellular cyanobacterium started from water sample from Bolonha Lake	1.42051327 S 48.43312226 W	0	0	Flavihumibacter sp. CACIAM 22H1	4271	na	2	169	31	46868	29224	14453	2016/03/29	276	1812911	1	CACIAM 22H1	Universidade Federal do Para	1812911	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Flavihumibacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Flavihumibacter;x__unclassified Flavihumibacter;s__Flavihumibacter sp. CACIAM 22H1	123070	4871497	11	35	none	4748427	0	LUKG00000000.1	4219	169	52762	1	none	none	none	none	none	none	1526	LUKG01000026.1	1490	2647	0	98.792	KT182480.1.1491	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Flavihumibacter;uncultured Flavihumibacter sp.	123070	19	34	0
+GB_GCA_001603455.1	12	95.14	1.59	316	p__Bacteroidetes (UID2605)	210	20	1835030	94.85143458511058	167	902261	46.639779874295115	1934636	GB_GCA_001603455.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__DMER64;s__DMER64 sp001603455	not type material	none	f	23	22	83008	83008	83008	2	1968	LUZA01000025.1	797	1	108	LUZA01000032.1	1968	3635	0	100	LUZA01000025.81039.83008	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;DMER64;Bacteroidales bacterium Bact_09	11584	11725	f	f	t	20469	21359	Scaffold	ASM160345v1	na	PRJNA284316	SAMN03837505	167	20469	Australia	2016-03-30	GCA_001603455.1	derived from metagenome	full	Bact_09	3 replicate cellulose-degrading anaerobic digesters sampled at day 96 and day 362	none	0	none	Bacteroidales bacterium Bact_09	0	na	none	165	22	21359	11206	4806	2016/03/30	2	1674823	none	Bact_09	University of Queensland	1674823	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium Bact_09	93	1934636	none	none	none	1934543	0	LUZA00000000.1	1744	165	2992	2	none	none	none	none	none	none	616	LUZA01000010.1	612	1103	0	99.183	FJ799155.1.1485	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;DMER64;bacterium enrichment culture clone PA4	93	17	36	0
+GB_GCA_000981645.1	28	91.47	0	278	k__Bacteria (UID2569)	186	0	2488969	86.07188146346844	255	1094787	38.193144200367776	2891733	GB_GCA_000981645.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UA16;g__ASP10-05a;s__ASP10-05a sp000981645	not type material	none	f	36	10	65833	332675	133355	1	2240	LAQC01000010.1	none	0	none	none	2240	4063	0	100	LAQC01000010.1.2242	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Cryomorphaceae bacterium ASP10-05a	11241	65721	f	f	t	26269	85204	Scaffold	ASM98164v1	na	PRJNA276743	SAMN03380217	255	26269	Southern Ocean	2015-04-28	GCA_000981645.1	derived from metagenome	full	none	Amundsen Sea polynya	73.3424 S 112.4008 W	0	none	Cryomorphaceae bacterium ASP10-05a	0	na	none	44	10	85204	50233	32685	2015/04/28	211	1622232	none	none	Marine Biological Laboratory	1622232	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;x__unclassified Cryomorphaceae;s__Cryomorphaceae bacterium ASP10-05a	25256	2891733	none	none	none	2866477	0	LAQC00000000.1	2398	44	133355	1	none	none	none	none	none	none	1507	LAQC01000010.1	812	1478	0	99.507	EU919815.1.1484	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;NS9 marine group;uncultured bacterium	25256	18	29	0
+GB_GCA_001305175.1	0	94.76	1.88	486	o__Bacteroidales (UID2654)	266	0	5055641	88.14057257782758	121	2414005	42.086014989145525	5735884	RS_GCF_013009555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola dorei	not type material	none	f	14	14	387019	387019	5253	1	2881	BCAD01000076.1	5253	1	106	BCAD01000076.1	2881	5321	0	100	CEAL01001878.1029.3915	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;gut metagenome	47404	47404	t	f	f	136325	136325	Contig	ASM130517v1	na	PRJDB4136	SAMD00036518	121	136325	none	2015-09-25	GCA_001305175.1	none	full	none	none	none	0	none	Bacteroidia bacterium UC5.1-2G11	0	na	none	none	none	none	none	none	2015/09/25	0	1697796	none	UC5.1-2G11	Laboratory of Metagenomics, Graduate School of Frontier Sciences, The University of Tokyo	1697796	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;x__unclassified Bacteroidia;s__Bacteroidia bacterium UC5.1-2G11	0	5735884	none	none	none	5735884	0	BCAD00000000.1	6268	121	5253	1	none	none	none	none	none	none	1529	BCAD01000076.1	1529	2824	0	100	CP009057.391923.393466	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides dorei	0	19	60	0
+GB_GCA_001603665.1	12	96.64	0	278	k__Bacteria (UID2569)	186	0	1957852	94.82620500863574	83	970174	46.98948302434006	2064674	GB_GCA_001603665.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__F082;g__Limimorpha;s__Limimorpha sp001603665	not type material	none	f	18	18	104313	104313	3857	2	1969	LUZN01000042.1	1188	1	104	LUZN01000067.1	1969	3637	0	100	LUZN01000042.1887.3857	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;F082;Bacteroidales bacterium Bact_22	24875	24875	t	f	f	40702	40702	Contig	ASM160366v1	na	PRJNA284316	SAMN03837518	83	40702	Australia	2016-03-30	GCA_001603665.1	derived from metagenome	full	Bact_22	3 replicate cellulose-degrading anaerobic digesters sampled at day 96 and day 362	none	0	none	Bacteroidales bacterium Bact_22	0	na	none	none	none	none	none	none	2016/03/30	0	1674836	none	Bact_22	University of Queensland	1674836	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium Bact_22	0	2064674	none	none	none	2064674	0	LUZN00000000.1	1725	83	3857	1	none	none	none	none	none	none	1426	LUZN01000042.1	1413	2610	0	100	LUZN01000042.1.1416	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;F082;Bacteroidales bacterium Bact_22	0	19	48	0
+GB_GCA_001603685.1	69	96.49	2.24	278	k__Bacteria (UID2569)	186	18.18	3292620	88.1553512430991	681	1798432	48.15347146507757	3735020	GB_GCA_001603685.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Lentimicrobiaceae;g__Lentimicrobium;s__Lentimicrobium sp001603685	not type material	none	f	135	134	43585	43585	4506	1	2528	LUZO01000001.1	4506	1	106	LUZO01000001.1	1971	2693	0	91.629	BBYI01000004.161.3072	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Lentimicrobiaceae;Lentimicrobium;Lentimicrobium saccharophilum	5484	5517	f	f	t	8225	8248	Scaffold	ASM160368v1	na	PRJNA284316	SAMN03837519	681	8225	Australia	2016-03-30	GCA_001603685.1	derived from metagenome	full	Bact_23	3 replicate cellulose-degrading anaerobic digesters sampled at day 96 and day 362	none	0	none	Bacteroidales bacterium Bact_23	0	na	none	677	134	8248	4419	2547	2016/03/30	4	1674837	none	Bact_23	University of Queensland	1674837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium Bact_23	159	3735020	none	none	none	3734861	0	LUZO00000000.1	3037	677	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	159	17	32	0
+GB_GCA_000980225.1	0	99.52	0	314	p__Bacteroidetes (UID2605)	208	0	1858294	85.57678979393441	53	1234435	56.84729354411918	2171493	RS_GCF_900104605.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Tidjanibacter;s__Tidjanibacter inops	not type material	none	f	5	5	336099	336099	128485	1	393	LARG01000001.1	128485	1	108	LARG01000001.1	393	726	0	100	CDZE01039181.115358.118212	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;gut metagenome	40971	40971	f	f	t	171798	171798	Contig	ASM98022v1	na	PRJNA277012	SAMN03449999	53	171798	none	2015-04-24	GCA_000980225.1	derived from metagenome	full	N15.MGS-157	stool sample from 52 year old healthy male	none	0	none	Alistipes sp. N15.MGS-157	0	na	none	none	none	none	none	none	2015/04/24	0	1637503	none	N15.MGS-157	The Mayo Clinic	1637503	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__unclassified Alistipes;s__Alistipes sp. N15.MGS-157	0	2171493	none	none	none	2171493	0	LARG00000000.1	1824	53	2171	14	none	none	none	none	none	none	1411	LARG01000024.1	1407	2599	0	100	LARG01000024.765.2171	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. N15.MGS-157	0	19	63	0
+GB_GCA_001602415.1	0	98.41	0.16	316	p__Bacteroidetes (UID2605)	210	0	2905818	89.781923783164	1	1208317	37.333730054635694	3236529	GB_GCA_001602415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__NS11-12g;f__UKL13-3;g__UKL13-3;s__UKL13-3 sp001602415	not type material	none	f	1	1	3236529	3236529	3236529	2	2859	CP012155.1	3236529	2	106	CP012155.1	2859	5280	0	100	CP012155.953953.956818	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;NS11-12 marine group;Bacteroidetes bacterium UKL13-3	3236529	3236529	t	f	f	3236529	3236529	Complete Genome	ASM160241v1	na	PRJNA312233	SAMN03894428	none	none	USA: Upper Klamath Lake; OR	2016-03-30	GCA_001602415.1	derived from environmental sample	full	UKL13-3	UKL13 co-culture; a single cyanobacterial colony from a depth-integrated water sample grown as a non-axenic culture	none	1	0	Bacteroidetes bacterium UKL13-3	2598	na	6	1	1	3236529	3236529	3236529	2016/03/30	0	1690483	2	UKL13-3	Oregon State University	1690483	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium UKL13-3	0	3236529	11	35	none	3236529	0	none	2904	1	3236529	2	none	none	none	none	none	none	1521	CP012155.1	1521	2809	0	100	CP012155.2519766.2521296	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;NS11-12 marine group;Bacteroidetes bacterium UKL13-3	0	19	35	0
+RS_GCF_001611675.1	0	100	0	454	o__Cytophagales (UID2936)	336	0	4134805	85.61454575873283	2	2463923	51.01755667546457	4829559	RS_GCF_001611675.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter akesuensis	type strain of species	LPSN	f	1	1	4713421	4713421	4713421	4	2876	NZ_CP014766.1	4713421	4	106	NZ_CP014766.1	2876	5312	0	100	CP014766.2300330.2303222	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Pontibacter;Pontibacter akesuensis	2414779	2414779	t	f	f	4713421	4713421	Complete Genome	ASM161167v1	na	PRJNA224116	SAMN04544428	none	none	China: Xinjiang; Akesu	2016-04-06	GCA_001611675.1	none	full	none	desert soil	none	2	0	Pontibacter akesuensis	4073	representative genome	12	2	1	4713421	4713421	4713421	2016/04/06	0	388950	4	AKS 1T	Hubei provincial center for disease control and prevention	388950	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter akesuensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter akesuensis	0	4829559	11	43	assembly from type material	4829559	0	none	4109	2	4713421	4	none	none	none	none	none	none	1520	NZ_CP014766.1	1503	2776	0	100	CP014766.2298284.2299786	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Pontibacter;Pontibacter akesuensis	0	19	43	0
+RS_GCF_001699855.1	6	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4658202	89.36077397116792	52	2250719	43.17679296224408	5212804	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	6	6	639633	639633	2592	3	2415	NZ_LIDT01000027.1	69515	1	106	NZ_LIDT01000034.1	2415	4460	0	100	LIDT01000027.150.2592	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	100246	100246	t	f	f	301080	301080	Contig	ASM169985v1	na	PRJNA224116	SAMN03839334	52	301080	USA	2016-08-04	GCA_001699855.1	none	full	none	Stool sample	47.00 N 110.00 W	0	0	Bacteroides fragilis	4563	na	6	none	none	none	none	none	2016/08/04	0	817	1	20793-3	NIH/ NIDDK	817	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	0	5212804	11	64	none	5212804	0	LIDT00000000.1	4389	52	2359	1	1525	2784	0	99.607	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_LIDT01000043.1	1526	2813	0	99.934	AP006841.5195504.5197040	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis YCH46	0	19	63	0
+RS_GCF_001677395.1	0	99.65	0.18	511	f__Flavobacteriaceae (UID2817)	283	0	2740435	86.41958373185673	1	1001296	31.575856939636672	3171081	RS_GCF_002530675.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium columnare	not type material	none	f	1	1	3171081	3171081	3171081	8	2864	NZ_CP016277.1-#5	3171081	6	103	NZ_CP016277.1	2865	5252	0	99.791	CP018912.2108443.2111319	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium columnare	3171081	3171081	t	f	f	3171081	3171081	Complete Genome	ASM167739v1	na	PRJNA224116	SAMN05000968	none	none	China: Wuhan	2016-06-30	GCA_001677395.1	none	full	Yellow catfish	none	none	1	0	Flavobacterium columnare	2702	na	19	1	1	3171081	3171081	3171081	2016/06/30	0	996	6	Yellow catfish;Pf1	Huazhong Agricultural University	996	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium columnare	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium columnare	0	3171081	11	81	none	3171081	0	none	2720	1	3171081	6	none	none	none	none	none	none	1512	NZ_CP016277.1	1512	2793	0	100	CP018912.2111940.2113459	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium columnare	0	19	81	0
+RS_GCF_001678685.1	30	99.67	0.33	571	s__algicola (UID2846)	303	0	3190142	90.42947268641248	98	1202852	34.09697658953131	3527768	RS_GCF_008086165.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algorimicrobium;s__Algorimicrobium algoritergicola	not type material	none	f	12	12	253648	253648	6047	1	2815	NZ_LZRO01000066.1	6047	1	104	NZ_LZRO01000066.1	2815	5199	0	100	LZRO01000066.307.3141	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Bizionia;Bizionia sp. APA-3	35997	35997	t	f	f	87727	87727	Contig	ASM167868v1	na	PRJNA224116	SAMN05231708	98	87727	Antarctica	2016-07-03	GCA_001678685.1	none	full	none	Antarctic saline pond	69 S 79 E	0	1	Bizionia sp. APA-3	3266	na	3	none	none	none	none	none	2016/07/03	0	1861784	1	APA-3	University of Tasmania	1861784	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Bizionia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Bizionia;x__unclassified Bizionia;s__Bizionia sp. APA-3	0	3527768	11	35	none	3527768	0	LZRO00000000.1	3333	98	6047	1	1479	2636	0	98.851	374546	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1522	NZ_LZRO01000066.1	1479	2636	0	98.851	FJ716799.1.1478	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Bizionia;Bizionia echini	0	18	36	0
+RS_GCF_001641085.1	0	99.11	0.38	496	s__algicola (UID2847)	263	0	2930709	91.84941218061061	51	1207665	37.84862992576101	3190776	RS_GCF_001641085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita soesokkakensis	type strain of species	LPSN	f	6	6	558791	558791	5228	1	2818	NZ_LXIE01000025.1	36011	2	106	NZ_LXIE01000020.1	2818	5204	0	100	LXIE01000025.2337.5171	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aequorivita;Aequorivita soesokkakensis	62564	62564	t	f	f	150658	150658	Contig	ASM164108v1	na	PRJNA224116	SAMN04884531	51	150658	South Korea	2016-05-09	GCA_001641085.1	none	full	none	water	none	0	1	Aequorivita soesokkakensis	2923	representative genome	4	none	none	none	none	none	2016/05/09	0	1385699	1	RSSK-12	FACULTY OF BIOSCIENCES AND MEDICAL ENGINEERING, UNIVERSITI TEKNOLOGI MALAYSIA	1385699	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita soesokkakensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita soesokkakensis	0	3190776	11	38	assembly from type material	3190776	0	LXIE00000000.1	2964	51	5228	1	1482	2551	0	97.773	4463496	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__	1521	NZ_LXIE01000025.1	1446	2671	0	100	KF437680.1.1446	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Vitellibacter;Aequorivita soesokkakensis	0	19	37	0
+RS_GCF_001683355.1	0	99.32	0.17	567	g__Prevotella (UID2724)	296	100	2733529	82.74031440077852	15	1344791	40.74004508457827	3303745	RS_GCF_018127785.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella scopos	type strain of species	LPSN	f	3	1	998897	1859892	1859892	4	2893	NZ_CP016204.1	1859892	4	109	NZ_CP016204.1	2893	5343	0	100	CP016204.562360.565260	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella scopos JCM 17725	220060	1101248	t	f	f	482902	1859892	Chromosome	ASM168335v1	na	PRJNA224116	SAMN03897722	15	482902	United Kingdom: Cardiff	2016-07-11	GCA_001683355.1	none	full	none	Dental implant	51.48 N 3.18 W	3	0	Prevotella scopos JCM 17725	2593	representative genome	12	3	1	1859892	1436518	1436518	2016/07/11	12	589437	4	W2052	The Forsyth Institute	1236518	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella scopos	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella scopos;x__Prevotella scopos JCM 17725	2838	3303745	11	49	assembly from type material	3300907	0	none	2647	3	1859892	4	none	none	none	none	none	none	1528	NZ_CP016204.1	1528	2822	0	100	CP016204.560439.561979	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella_7;Prevotella scopos JCM 17725	2838	19	49	0
+RS_GCF_001644645.1	0	100	0.52	302	p__Bacteroidetes (UID2591)	203	0	5055568	85.0982087955908	1	2466061	41.51014759976791	5940863	RS_GCF_001644645.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Flavisolibacter_B;s__Flavisolibacter_B tropicus	type strain of species	LPSN	f	1	1	5940863	5940863	5940863	3	2876	NZ_CP011390.1	5940863	3	98	NZ_CP011390.1	2876	5312	0	100	CP011390.4665382.4668263	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Flavisolibacter;Flavisolibacter tropicus	5940863	5940863	t	f	f	5940863	5940863	Complete Genome	ASM164464v1	na	PRJNA224116	SAMN03287577	none	none	South Korea	2016-05-16	GCA_001644645.1	none	full	none	soil	none	1	0	Flavisolibacter tropicus	4953	representative genome	9	1	1	5940863	5940863	5940863	2016/05/16	0	1492898	3	LCS9	Seoul Women's University	1492898	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Flavisolibacter;s__Flavisolibacter tropicus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Flavisolibacter;s__Flavisolibacter tropicus	0	5940863	11	44	assembly from type material	5940863	0	none	5027	1	5940863	3	none	none	none	none	none	none	1528	NZ_CP011390.1	1528	2822	0	100	CP011390.4663240.4664780	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Flavisolibacter;Flavisolibacter tropicus	0	19	48	0
+RS_GCF_900091675.1	3	100	0	278	k__Bacteria (UID2569)	186	0	4554698	91.73066252861109	12	2216353	44.64198240064712	4965295	RS_GCF_000379665.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinifilaceae;g__Butyricimonas;s__Butyricimonas synergistica	not type material	none	f	2	2	1295486	2198421	2957	1	2871	NZ_LT594605.1	504807	5	103	NZ_LT594607.1	2871	5302	0	100	FLSM01000005.45.2928	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Butyricimonas;Butyricimonas sp. Marseille-P2440	413727	496529	t	f	f	1227698	1295486	Scaffold	PRJEB14540	na	PRJNA224116	SAMEA4043116	12	1227698	none	2016-06-24	GCA_900091675.1	none	full	none	none	none	0	0	Butyricimonas sp. Marseille-P2440	4012	na	12	10	2	1295486	618601	504807	2016/06/24	2	1816677	4	Marseille-P2440	URMITE	1816677	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Butyricimonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Butyricimonas;x__unclassified Butyricimonas;s__Butyricimonas sp. Marseille-P2440	564	4965295	11	53	none	4964731	0	FLSM00000000.1	4123	10	1295486	2	1481	2580	0	98.109	1135042	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__[Odoribacteraceae];g__Butyricimonas;s__	1520	NZ_LT594609.1	1503	2776	0	100	FLSM01000009.1293944.1295446	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Butyricimonas;Butyricimonas sp. Marseille-P2440	564	19	53	0
+RS_GCF_001654455.1	0	100	0.5	301	p__Bacteroidetes (UID2591)	202	0	4897336	87.0214548164501	1	2503439	44.4839610400918	5627734	RS_GCF_001654455.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Niabella;s__Niabella ginsenosidivorans	type strain of species	LPSN	f	1	1	5627734	5627734	5627734	2	2802	NZ_CP015772.1	5627734	2	108	NZ_CP015772.1	2802	5175	0	100	CP015772.993640.996446	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Niabella;Niabella ginsenosidivorans	5627734	5627734	t	f	f	5627734	5627734	Complete Genome	ASM165445v1	na	PRJNA224116	SAMN05003825	none	none	South Korea: Yesan	2016-06-02	GCA_001654455.1	none	full	none	compost	none	1	0	Niabella ginsenosidivorans	4726	representative genome	6	1	1	5627734	5627734	5627734	2016/06/02	0	1176587	2	BS26	Hankyong University	1176587	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Niabella;s__Niabella ginsenosidivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Niabella;s__Niabella ginsenosidivorans	0	5627734	11	43	assembly from type material	5627734	0	none	4747	1	5627734	2	1445	2669	0	100	2062184	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Niabella;s__	1521	NZ_CP015772.1	1521	2809	0	100	CP015772.1423455.1424986	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Niabella;Niabella ginsenosidivorans	0	19	43	0
+RS_GCF_001618385.1	0	100	0.54	278	k__Bacteria (UID2569)	186	0	3259360	88.93487488280665	4	1572940	42.9192301857303	3664884	RS_GCF_001618385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__Microbacter;s__Microbacter jiangxiensis	type strain of species	LPSN	f	2	2	1332247	1332247	296502	3	2877	NZ_BDCR01000002.1	296502	3	107	NZ_BDCR01000002.1	2877	5313	0	100	BDCR01000002.2627.5513	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Paludibacteraceae;Paludibacter;Paludibacter jiangxiensis	916221	916221	t	f	f	1115753	1115753	Contig	ASM161838v1	na	PRJNA224116	SAMD00049477	4	1115753	none	2016-04-06	GCA_001618385.1	none	full	none	anoxic soil	none	0	0	Paludibacter jiangxiensis	2897	representative genome	9	none	none	none	none	none	2016/04/06	0	681398	3	NM7	Biomedical Research Institute, National Institute of Advanced Industrial Science and Technology (AIST),Japan	681398	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__Paludibacter;s__Paludibacter jiangxiensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__Paludibacter;s__Paludibacter jiangxiensis	0	3664884	11	50	assembly from type material	3664884	0	BDCR00000000.1	2961	4	296502	3	1469	2708	0	99.932	576176	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Paludibacter;s__	1523	NZ_BDCR01000002.1	1469	2708	0	99.932	GQ911566.1.1469	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Paludibacteraceae;Paludibacter;Paludibacter jiangxiensis	0	19	50	0
+RS_GCF_001670605.1	0	100	0	323	o__Flavobacteriales (UID2815)	204	0	1913189	90.96255308992517	17	735623	34.975188646636596	2103271	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	not type material	none	f	3	3	617312	617312	5065	1	2738	NZ_LUDG01000012.1	5065	1	101	NZ_LUDG01000012.1	2738	5057	0	100	CP007503.1142030.1144777	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	123721	123721	t	f	f	239413	239413	Contig	RCAD0142	na	PRJNA224116	SAMN04431678	17	239413	China:Liuzhou	2016-06-20	GCA_001670605.1	none	full	none	liver	none	0	0	Riemerella anatipestifer	1926	na	8	none	none	none	none	none	2016/06/20	0	34085	3	RCAD0142	Sichuan Agricultural University	34085	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	0	2103271	11	36	none	2103271	0	LUDG00000000.1	1940	17	5065	1	1506	2748	0	99.602	187418	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Riemerella;s__	1513	NZ_LUDG01000012.1	1513	2795	0	100	CP007204.912680.914202	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer Yb2	0	19	36	0
+RS_GCF_900083545.1	4	100	0	314	p__Bacteroidetes (UID2605)	208	0	3488163	91.66820184457868	6	2220087	58.345052257510254	3805205	RS_GCF_900083545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes provencensis	type strain of species	LPSN	f	1	1	2964221	3788833	3788833	1	2865	NZ_LT559262.1	3788833	2	109	NZ_LT559262.1	2865	5291	0	100	FKYL01000005.1807321.1810191	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. Marseille-P2431	634183	761041	t	f	f	2964221	3788833	Scaffold	PRJEB13794	na	PRJNA224116	SAMEA3949864	6	2964221	none	2016-05-05	GCA_900083545.1	none	full	none	none	none	0	0	Alistipes provencensis	2918	representative genome	5	5	1	3788833	3788833	3788833	2016/05/05	1	1816676	2	Marseille-P2431	URMITE	1816676	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes provencensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes provencensis	102	3805205	11	48	assembly from type material	3805103	0	FKYL00000000.1	2917	5	3788833	2	none	none	none	none	none	none	1525	NZ_LT559262.1	1508	2785	0	100	FKYL01000005.1805440.1806947	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. Marseille-P2431	102	19	48	0
+RS_GCF_001684955.1	0	99.75	0.98	324	o__Flavobacteriales (UID2815)	204	0	4121054	87.60250538606988	366	1689201	35.90786233343572	4704265	RS_GCF_001684955.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium contaminans	type strain of species	LPSN	f	44	44	148990	148990	3156	4	2743	NZ_MAYF01000170.1	3156	1	98	NZ_MAYF01000170.1	2743	5066	0	100	MAYF01000170.81.2836	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium contaminans	12853	12853	t	f	f	25005	25005	Contig	ASM168495v1	na	PRJNA224116	SAMN05366335	366	25005	USA: Alabama	2016-07-13	GCA_001684955.1	none	full	none	rhizosphere sample	none	0	0	Chryseobacterium contaminans	4288	na	11	none	none	none	none	none	2016/07/13	0	1423959	3	C-26	Korea University	1423959	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium contaminans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium contaminans	0	4704265	11	83	assembly from type material	4704265	0	MAYF00000000.1	4409	366	1910	1	1475	2634	0	98.915	256453	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_MAYF01000193.1	1514	2673	0	98.547	CP009928.2837586.2839108	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium gallinarum	0	19	82	0
+RS_GCF_001670735.1	0	100	0.98	323	o__Flavobacteriales (UID2815)	204	0	2121870	90.01727062962073	66	826282	35.07188343470006	2357181	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	not type material	none	f	6	6	266183	266183	5398	1	2739	NZ_LUDR01000025.1	5398	4	101	NZ_LUDR01000025.1	2739	5059	0	100	CP006649.788585.791333	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer CH3	35696	37415	t	f	f	155213	155213	Scaffold	RCAD0111	na	PRJNA224116	SAMN04395153	66	155213	China:Guizhou	2016-06-20	GCA_001670735.1	none	full	none	liver	none	0	0	Riemerella anatipestifer	2241	na	6	63	6	155213	86560	57030	2016/06/20	3	34085	1	RCAD0111	Sichuan Agricultural University	34085	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	1214	2357181	11	37	none	2355967	0	LUDR00000000.1	2262	63	5398	1	1512	2793	0	100	4318057	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Riemerella;s__	1513	NZ_LUDR01000025.1	1505	2780	0	100	CP006649.791940.793444	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer CH3	1214	19	37	0
+RS_GCF_001670725.1	0	100	0	323	o__Flavobacteriales (UID2815)	204	0	1992865	90.63033506844805	50	769348	34.98795303457102	2198894	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	not type material	none	f	3	3	678400	678400	5067	1	2738	NZ_LUDQ01000015.1	5067	1	101	NZ_LUDQ01000015.1	2738	5057	0	100	CP007503.1142030.1144777	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	43977	43977	t	f	f	212409	212409	Contig	RCAD0124	na	PRJNA224116	SAMN04395209	50	212409	China:Sichuan	2016-06-20	GCA_001670725.1	none	full	none	liver	none	0	0	Riemerella anatipestifer	2058	na	9	none	none	none	none	none	2016/06/20	0	34085	4	RCAD0124	Sichuan Agricultural University	34085	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	0	2198894	11	36	none	2198894	0	LUDQ00000000.1	2084	50	5067	1	1512	2748	0	99.471	4318057	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Riemerella;s__	1513	NZ_LUDQ01000015.1	1513	2789	0	99.934	CP007204.912680.914202	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer Yb2	0	19	36	0
+RS_GCF_001670875.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	1900365	90.98650163289402	21	730327	34.966913607673575	2088623	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	not type material	none	f	3	3	496899	496899	5233	1	2738	NZ_LUDV01000014.1	5233	1	101	NZ_LUDV01000014.1	2738	5057	0	100	CP007503.1142030.1144777	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	99458	99458	t	f	f	220387	220387	Contig	RCAD0127	na	PRJNA224116	SAMN04419303	21	220387	China:Sichuan	2016-06-20	GCA_001670875.1	none	full	none	liver	none	0	0	Riemerella anatipestifer	1917	na	5	none	none	none	none	none	2016/06/20	0	34085	1	RCAD0127	Sichuan Agricultural University	34085	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	0	2088623	11	36	none	2088623	0	LUDV00000000.1	1932	21	5233	1	1506	2748	0	99.602	187418	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Riemerella;s__	1513	NZ_LUDV01000014.1	1513	2795	0	100	CP007204.912680.914202	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer Yb2	0	19	36	0
+RS_GCF_001553545.1	0	100	1.43	316	p__Bacteroidetes (UID2605)	210	0	2369692	88.1423136607843	1	1189208	44.23340440188597	2688484	RS_GCF_001553545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga haemolytica	type strain of species	LPSN	f	1	1	2688484	2688484	2688484	4	2834	NZ_CP014227.1	none	0	none	none	2834	5234	0	100	LT906449.638886.641730	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga haemolytica	2688484	2688484	f	f	t	2688484	2688484	Complete Genome	ASM155354v1	na	PRJNA224116	SAMN04435862	none	none	Japan: Okayama	2016-02-09	GCA_001553545.1	none	full	none	supragingival dental plaque	34.65 N 133.90 E	1	0	Capnocytophaga haemolytica	2316	na	12	1	1	2688484	2688484	2688484	2016/02/09	0	45243	4	CCUG 32990	The Forsyth Institute	45243	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga haemolytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga haemolytica	0	2688484	11	49	assembly from type material	2688484	0	none	2431	1	2688484	4	none	none	none	none	none	none	1515	NZ_CP014227.1	1515	2798	0	100	CP014227.2529169.2530694	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga haemolytica	0	19	49	0
+RS_GCF_001659705.1	0	87.14	0	303	p__Bacteroidetes (UID2591)	203	0	3140107	89.91000715819614	1	1372807	39.307287043665	3492500	RS_GCF_001659705.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Arachidicoccus;s__Arachidicoccus sp001659705	not type material	none	f	1	1	3492500	3492500	3492500	1	2791	NZ_CP015971.1	3492500	1	103	NZ_CP015971.1	2791	5155	0	100	CP015971.3280530.3283333	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Arachidicoccus;Arachidicoccus sp. BS20	3492500	3492500	f	f	t	3492500	3492500	Complete Genome	ASM165970v1	na	PRJNA224116	SAMN05006811	none	none	South Korea	2016-06-08	GCA_001659705.1	none	full	none	Compost	none	1	0	Arachidicoccus sp. BS20	3001	na	3	1	1	3492500	3492500	3492500	2016/06/08	0	1850526	1	BS20	Hankyong National University	1850526	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Arachidicoccus;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Arachidicoccus;x__unclassified Arachidicoccus;s__Arachidicoccus sp. BS20	0	3492500	11	40	none	3492500	0	none	3038	1	3492500	1	1449	2676	0	100	4409704	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__;s__	1525	NZ_CP015971.1	1525	2817	0	100	CP015971.3278219.3279753	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Haoranjiania;Arachidicoccus sp. BS20	0	18	40	0
+RS_GCF_000318095.2	0	97.12	0.37	492	o__Bacteroidales (UID2657)	269	0	2171814	85.06852872503396	89	1177144	46.13144796229363	2553017	RS_GCF_000318095.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Alloprevotella;s__Alloprevotella sp000318095	not type material	none	f	11	3	245390	673420	1969	2	1968	NZ_KB290708.1	121258	1	104	NZ_KB290702.1	1968	3635	0	100	AMEK01000008.1.1969	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Alloprevotella;Prevotella sp. oral taxon 473 str. F0040	28670	106375	f	f	t	59983	360598	Scaffold	ASM31809v2	na	PRJNA224116	SAMN02436797	89	59983	none	2013-01-29	GCA_000318095.2	none	full	none	oral cavity	none	0	0	Alloprevotella sp. oral taxon 473 str. F0040	1928	na	4	24	3	360598	205415	97930	2013/01/29	65	712469	1	F0040	Washington University Genome Center	1035197	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Alloprevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Alloprevotella;s__Alloprevotella sp. oral taxon 473;x__Alloprevotella sp. oral taxon 473 str. F0040	1300	2553017	11	49	none	2551717	0	AMEK00000000.1	2018	24	800	1	727	1304	0	99.037	237177	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__[Paraprevotellaceae];g__[Prevotella];s__	730	NZ_KB290721.1	726	1303	0	99.036	AM420060.1.1490	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Alloprevotella;uncultured Prevotellaceae bacterium	1300	18	44	0
+RS_GCF_001693415.1	53	99.66	0.5	548	f__Flavobacteriaceae (UID2845)	298	0	2736387	91.00065613633801	45	909581	30.249349505677525	3006997	RS_GCF_001693415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum soleae	not type material	none	f	1	1	1514081	1514081	6184	2	2865	NZ_MAKX01000003.1	6184	2	103	NZ_MAKX01000003.1	2865	5286	0	99.965	MAKX01000003.1089.3969	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum soleae	66822	66822	t	f	f	1514081	1514081	Contig	ASM169341v1	na	PRJNA224116	SAMN05292508	45	1514081	USA: Bodega Bay; California	2016-07-25	GCA_001693415.1	none	full	none	leaf	none	0	1	Tenacibaculum soleae	2775	representative genome	7	none	none	none	none	none	2016/07/25	0	447689	3	UCD-KL19	UC Davis	447689	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum soleae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum soleae	0	3006997	11	49	none	3006997	0	MAKX00000000.1	2812	45	6184	1	1506	2700	0	99.004	1127505	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	1517	NZ_MAKX01000003.1	1506	2700	0	99.004	AM746476.1.1506	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum soleae	0	19	49	0
+RS_GCF_001662485.1	0	90.81	0	511	f__Flavobacteriaceae (UID2817)	283	0	2930252	88.40663312531905	74	1167176	35.214070470620754	3314516	RS_GCF_001662485.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans_A	not type material	none	f	4	4	679272	679272	3011	1	2867	NZ_JMTM01000038.1	235189	1	103	NZ_JMTM01000065.1	2867	5295	0	100	JMTM01000038.132.3010	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium succinicans	44790	44790	t	f	f	300501	300501	Contig	ASM166248v1	na	PRJNA224116	SAMN02746055	74	300501	Germany: Konstanz	2016-06-13	GCA_001662485.1	none	full	none	dissected gut	none	0	1	Flavobacterium succinicans	2780	na	7	none	none	none	none	none	2016/06/13	0	29536	5	DD5b	Goettingen Genomics Laboratory	29536	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans	0	3314516	11	37	none	3314516	0	JMTM00000000.1	2834	74	2508	5	1488	2636	0	98.589	261033	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1512	NZ_JMTM01000041.1	1504	2778	0	100	JMTM01000041.371.1874	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium succinicans	0	19	37	0
+RS_GCF_001660705.2	0	100	1.27	275	k__Bacteria (UID2569)	184	0	5163531	87.81869269220545	69	2061669	35.06381124545326	5879763	RS_GCF_001660705.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Saccharicrinis;s__Saccharicrinis aurantiacus	type strain of species	LPSN	f	10	10	440385	440385	2920	1	2788	NZ_LYBV02000005.1	367031	2	105	NZ_LYBV02000001.1	2788	5149	0	100	LYBV02000005.74.2869	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Labilibacter;Labilibacter aurantiacus	85213	85213	t	f	f	222682	222682	Contig	ASM166070v2	na	PRJNA224116	SAMN05001249	69	222682	China: Shandong	2017-01-06	GCA_001660705.2	none	full	none	Styela clava	none	0	0	Saccharicrinis aurantiacus	4511	representative genome	4	none	none	none	none	none	2017/01/06	0	1849719	1	HQYD1	Shandong University at Weihai	1849719	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Saccharicrinis;s__Saccharicrinis aurantiacus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Saccharicrinis;s__Saccharicrinis aurantiacus	0	5879763	11	69	assembly from type material	5879763	0	LYBV00000000.2	4572	69	1501	1	none	none	none	none	none	none	1429	NZ_LYBV02000004.1	1429	2534	0	98.67	FJ716943.1.1516	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Labilibacter;uncultured bacterium	0	19	69	0
+RS_GCF_001406715.1	3	98.51	0.68	492	o__Bacteroidales (UID2657)	269	0	4347006	90.85158983792826	30	2224351	46.52366800477796	4784733	GB_GCA_025147485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	not type material	none	f	6	3	510847	1028242	821140	2	2735	NZ_CZBF01000003.1	821140	2	106	NZ_CZBF01000003.1	2735	5048	0	100	CZBF01000003.1.2740	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	159370	299045	t	f	f	292996	821140	Scaffold	14207_7#65	na	PRJNA224116	SAMEA3545405	30	292996	United Kingdom	2015-10-02	GCA_001406715.1	none	full	none	feces	none	0	0	Bacteroides uniformis	3900	na	6	16	3	821140	462689	246785	2015/10/02	14	820	1	2789STDY5834942	SC	820	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	3613	4784733	11	60	none	4781120	0	CZBF00000000.1	3907	16	246785	1	1523	2623	0	98.03	4369395	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1496	NZ_CZBF01000007.1	1479	2728	0	100	CZBF01000007.244731.246209	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	3613	19	59	0
+RS_GCF_001675285.1	0	100	1.08	152	k__Bacteria (UID2565)	93	0	3861164	89.92398124835083	33	1538187	35.82336801660251	4293809	RS_GCF_001675285.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	type strain of species	LPSN	f	4	4	738866	738866	5340	1	2764	NZ_LSGQ01000011.1	55092	2	101	NZ_LSGQ01000008.1	2764	5105	0	100	LSGQ01000011.2379.5154	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	130115	130115	t	f	f	332069	332069	Contig	ASM167528v1	na	PRJNA224116	SAMD00016624	33	332069	none	2016-06-22	GCA_001675285.1	none	full	none	none	none	0	0	Elizabethkingia miricola	3958	na	4	none	none	none	none	none	2016/06/22	0	172045	1	GTC_862	CDC	172045	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	0	4293809	11	46	assembly from type material	4293809	0	LSGQ00000000.1	4014	33	5340	1	1479	2713	0	99.797	806981	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_LSGQ01000011.1	1513	2784	0	99.868	CP023746.3518743.3520264	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	0	19	44	0
+RS_GCF_001688845.2	0	99.06	0	406	o__Bacteroidales (UID2617)	265	0	2947141	89.13289965664154	1	1657246	50.12150468008506	3306457	RS_GCF_002201515.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Muribaculum;s__Muribaculum intestinale	type strain of species	LPSN	t	1	1	3306457	3306457	3306457	4	2894	NZ_CP015402.2	3306457	4	96	NZ_CP015402.2	2894	5345	0	100	CP015402.2291623.2294529	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Muribaculaceae;Muribaculum;Muribaculum intestinale	3306457	3306457	t	f	f	3306457	3306457	Complete Genome	ASM168884v2	na	PRJNA224116	SAMN04621612	none	none	Switzerland: Bern	2017-04-05	GCA_001688845.2	none	full	none	none	none	1	0	Muribaculum intestinale	2683	representative genome	12	1	1	3306457	3306457	3306457	2017/04/05	0	1796646	4	YL27	University of Bern	1796646	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Muribaculum;s__Muribaculum intestinale	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Muribaculum;s__Muribaculum intestinale	0	3306457	11	53	assembly from type material	3306457	0	none	2794	1	3306457	4	none	none	none	none	none	none	1538	NZ_CP015402.2	1538	2841	0	100	CP021421.1996463.1998012	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Muribaculaceae;Muribaculum;Muribaculum intestinale	0	19	53	0
+RS_GCF_001642835.1	0	98.68	1.35	571	s__algicola (UID2846)	303	16.67	3416112	89.09784349078913	51	1333556	34.78134316855033	3834113	RS_GCF_001642835.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tamlana_A;s__Tamlana_A agarivorans	type strain of species	LPSN	f	4	4	817947	817947	5620	1	2806	NZ_LXEI01000016.1	5620	1	102	NZ_LXEI01000016.1	2800	5171	0	100	LXEI01000016.511.3313	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tamlana;Tamlana agarivorans	75178	75178	t	f	f	258479	258479	Contig	ASM164283v1	na	PRJNA224116	SAMN04876002	51	258479	none	2016-05-12	GCA_001642835.1	none	full	none	seawater	none	0	1	Tamlana agarivorans	3254	representative genome	3	none	none	none	none	none	2016/05/12	0	481183	1	JW-26	Shandong Univesity	481183	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tamlana;s__Tamlana agarivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tamlana;s__Tamlana agarivorans	0	3834113	11	38	assembly from type material	3834113	0	LXEI00000000.1	3306	51	5620	1	1474	2723	0	100	4361600	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tamlana;s__agarivorans	1515	NZ_LXEI01000016.1	1474	2723	0	100	EU221275.1.1474	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tamlana;Tamlana agarivorans	0	19	39	0
+RS_GCF_001625015.1	0	98	0.5	300	p__Bacteroidetes (UID2591)	200	0	4604741	88.32075067462245	21	2882805	55.29333824607181	5213657	RS_GCF_001625015.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__Lewinella_A;s__Lewinella_A sp001625015	not type material	none	f	1	1	4172384	4172384	2044	3	2040	NZ_LVWJ02000017.1	100276	2	109	NZ_LVWJ02000012.1	2040	3768	0	100	LVWJ02000017.1.2044	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Lewinella;Lewinella sp. 4G2	248269	248269	t	f	f	4172384	4172384	Contig	ASM162501v2	na	PRJNA224116	SAMN04497911	21	4172384	Japan: Aburatsubo Inlet; Kanagawa Prefecture	2016-06-03	GCA_001625015.2	none	full	none	sea surface microlayer	35.16 N 139.61 E	0	0	Lewinella sp. 4G2	3838	na	9	none	none	none	none	none	2016/06/03	0	1803372	2	4G2	The University of Tokyo	1803372	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Lewinellaceae;g__Lewinella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Lewinellaceae;g__Lewinella;x__unclassified Lewinella;s__Lewinella sp. 4G2	0	5213657	11	44	none	5213657	0	LVWJ00000000.2	3852	21	398648	1	1456	2364	0	96.085	1144347	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Saprospiraceae;g__Lewinella;s__	1518	NZ_LVWJ02000011.1	1518	2804	0	100	LVWJ02000011.434.1962	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;Lewinella;Lewinella sp. 4G2	0	19	45	0
+RS_GCF_001586775.1	0	99.05	1.43	316	p__Bacteroidetes (UID2605)	210	0	3223132	90.48406571518646	49	1483569	41.64873014478261	3562099	RS_GCF_001586775.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium sp001586775	not type material	none	f	2	2	1120878	1120878	3231	1	2875	NZ_LQXS01000013.1	3231	1	107	NZ_LQXS01000013.1	2866	5293	0	100	LQXS01000013.342.3211	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. CFCC 11742	72695	72695	t	f	f	784564	784564	Contig	ASM158677v1	na	PRJNA224116	SAMN04364164	49	784564	China	2016-03-10	GCA_001586775.1	none	full	none	Poplar	none	0	0	Sphingobacterium sp. CFCC 11742	3021	na	3	none	none	none	none	none	2016/03/10	0	1775560	1	CFCC 11742	Research Institute of Forest Ecology Environment and Protection	1775560	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;x__unclassified Sphingobacterium;s__Sphingobacterium sp. CFCC 11742	0	3562099	11	46	none	3562099	0	LQXS00000000.1	3198	49	1981	1	1360	2326	0	97.574	860895	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__;s__	1525	NZ_LQXS01000014.1	1397	2562	0	99.785	KT988032.1.1400	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium populi	0	19	47	0
+RS_GCF_001735715.1	0	96.7	0	571	s__algicola (UID2846)	303	0	1891946	93.82539844697672	1	733297	36.365669635905405	2016454	RS_GCF_001735715.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__GCA001735715;s__GCA001735715 sp001735715	not type material	none	f	1	1	2016454	2016454	2016454	2	2809	NZ_CP017259.1	2016454	2	102	NZ_CP017259.1	2809	5188	0	100	CP017259.614986.617840	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Formosa;Formosa sp. Hel3_A1_48	2016454	2016454	t	f	f	2016454	2016454	Complete Genome	ASM173571v1	na	PRJNA224116	SAMN05375122	none	none	Germany: Helgoland; Kabeltonne	2016-09-20	GCA_001735715.1	none	full	none	none	none	1	1	Formosa sp. Hel3_A1_48	1794	na	6	1	1	2016454	2016454	2016454	2016/09/20	0	1336795	2	Hel3_A1_48	Ernst Moritz Arndt University of Greifswald, Institute of Pharmacy	1336795	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Formosa;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Formosa;x__unclassified Formosa;s__Formosa sp. Hel3_A1_48	0	2016454	11	40	none	2016454	0	none	1817	1	2016454	2	none	none	none	none	none	none	1521	NZ_CP017259.1	1518	2804	0	100	CP017259.618357.619876	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Formosa;Formosa sp. Hel3_A1_48	0	19	39	0
+GB_GCA_001701105.1	299	94.29	0.69	406	o__Bacteroidales (UID2617)	265	33.33	1961388	90.59189933309655	114	1026368	47.47409056806944	2165081	GB_GCA_001701105.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp001701105	not type material	none	f	16	13	157502	168776	none	0	none	none	none	0	none	none	none	none	none	none	none	none	18967	33829	f	f	t	40649	52548	Scaffold	ASM170110v1	na	PRJNA313232	SAMN04517352	114	40649	Denmark	2016-08-09	GCA_001701105.1	derived from metagenome	full	GP1	Feces	none	0	none	Bacteroidales bacterium GP1	0	na	none	64	13	52548	31197	15532	2016/08/09	50	1807745	none	GP1	University of Queensland	1807745	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium GP1	2828	2165081	none	none	none	2162253	0	DAAI00000000.1	1908	64	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2828	15	25	0
+GB_GCA_001689655.1	28	98.37	1.51	406	o__Bacteroidales (UID2617)	265	50	2461470	89.45175923937278	65	1409255	51.23186896321316	2751729	GB_GCA_944321825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Amulumruptor;s__Amulumruptor caecigallinarius	not type material	none	f	11	8	290662	379468	none	0	none	none	none	0	none	none	none	none	none	none	none	none	42319	59820	f	f	t	71809	104722	Scaffold	ASM168965v1	na	PRJNA313232	SAMN04517351	65	71809	Australia	2016-07-20	GCA_001689655.1	derived from metagenome	full	K10	Feces	none	0	none	Bacteroidales bacterium K10	0	na	none	46	8	104722	56434	29271	2016/07/20	19	1807744	none	K10	University of Queensland	1807744	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium K10	962	2751729	none	none	none	2750767	0	LUKA00000000.1	2508	46	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	962	19	45	0
+GB_GCA_001701285.1	147	88.37	1.32	406	o__Bacteroidales (UID2617)	265	0	2278176	89.91157930630564	73	1322295	52.20179665185577	2533796	GB_GCA_001689535.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Paramuribaculum;s__Paramuribaculum sp001689535	not type material	none	f	16	15	129950	130395	none	0	none	none	none	0	none	none	none	none	none	none	none	none	34701	42229	f	f	t	53252	61930	Scaffold	ASM170128v1	na	PRJNA313232	SAMN04517361	73	53252	China	2016-08-09	GCA_001701285.1	derived from metagenome	full	H6	Feces	none	0	none	Bacteroidales bacterium H6	0	na	none	60	15	61930	33626	21281	2016/08/09	13	1807754	none	H6	University of Queensland	1807754	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium H6	604	2533796	none	none	none	2533192	0	DAAR00000000.1	2217	60	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	604	16	34	0
+GB_GCA_001701295.1	1676	85.77	2.13	406	o__Bacteroidales (UID2617)	265	0	2582038	88.797753883211	356	1398121	48.251134045096755	2907774	GB_GCA_001701295.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp001701295	not type material	none	f	66	39	61389	70390	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8144	16711	f	f	t	13962	23601	Scaffold	ASM170129v1	na	PRJNA313232	SAMN04517365	356	13962	China	2016-08-09	GCA_001701295.1	derived from metagenome	full	H10	Feces	none	0	none	Bacteroidales bacterium H10	0	na	none	174	39	23601	13385	7995	2016/08/09	182	1807758	none	H10	University of Queensland	1807758	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium H10	8506	2907774	none	none	none	2899268	0	DAAV00000000.1	2869	174	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	8506	15	24	0
+GB_GCA_001689615.1	14	93.77	0.38	406	o__Bacteroidales (UID2617)	265	0	1952997	93.17742669601785	44	1102015	52.595394672474036	2095998	GB_GCA_011959405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__UBA3263;s__UBA3263 sp001689615	not type material	none	f	7	7	234721	234721	none	0	none	none	none	0	none	none	none	none	none	none	none	none	47620	67612	f	f	t	99492	100544	Scaffold	ASM168961v1	na	PRJNA313232	SAMN04517349	44	99492	Australia	2016-07-20	GCA_001689615.1	derived from metagenome	full	M14	Feces	none	0	none	Bacteroidales bacterium M14	0	na	none	31	7	100544	58364	35153	2016/07/20	13	1807742	none	M14	University of Queensland	1807742	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium M14	715	2095998	none	none	none	2095283	0	LUJY00000000.1	1771	31	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	715	17	37	0
+GB_GCA_900066665.1	3	99.26	0.37	491	o__Bacteroidales (UID2657)	269	0	6588908	90.24399363667554	111	3155646	43.27050362040326	7301215	RS_GCF_000158035.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides cellulosilyticus	not type material	none	f	16	11	498885	637829	194256	1	2874	FMFT01000009.1	377237	1	105	FMFT01000004.1	2865	5291	0	100	FMFT01000009.139.3006	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;uncultured Bacteroides sp.	65701	92420	t	f	f	139129	189289	Scaffold	14207_7#23	na	PRJEB10915	SAMEA3545363	111	139129	United Kingdom	2016-08-17	GCA_900066665.1	derived from environmental sample	full	2789STDY5834900	faeces	none	0	0	uncultured Bacteroides sp.	5948	na	0	79	11	189289	126227	57823	2016/08/17	32	162156	0	2789STDY5834900	SC	162156	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__environmental samples;s__uncultured Bacteroides sp.	8378	7301215	11	70	none	7292837	0	FMFT00000000.1	6000	79	194256	1	none	none	none	none	none	none	1520	FMFT01000009.1	1520	2789	0	99.803	CP012801.4518451.4519968	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides cellulosilyticus	8378	19	68	0
+GB_GCA_001701075.1	84	81.45	2.08	406	o__Bacteroidales (UID2617)	265	42.86	2581921	90.98203701693826	348	1262169	44.62113351492858	2837836	GB_GCA_001701075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp001701075	not type material	none	f	64	51	47077	74461	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8128	11923	f	f	t	13178	17153	Scaffold	ASM170107v1	na	PRJNA313232	SAMN04517354	348	13178	Denmark	2016-08-09	GCA_001701075.1	derived from metagenome	full	GP3	Feces	none	0	none	Bacteroidales bacterium GP3	0	na	none	238	51	17153	9534	5462	2016/08/09	110	1807747	none	GP3	University of Queensland	1807747	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium GP3	9117	2837836	none	none	none	2828719	0	DAAK00000000.1	2298	238	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	9117	10	17	0
+GB_GCA_001689415.1	32	95.28	0.63	406	o__Bacteroidales (UID2617)	265	0	2808459	90.52860645800568	150	1525100	49.19425100454525	3102289	GB_GCA_001689415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-873;s__CAG-873 sp001689415	not type material	none	f	26	23	107977	107977	none	0	none	none	none	0	none	none	none	none	none	none	none	none	20667	25221	f	f	t	36887	41072	Scaffold	ASM168941v1	na	PRJNA313232	SAMN04517337	150	36887	Australia	2016-07-20	GCA_001689415.1	derived from metagenome	full	M2	Feces	none	0	none	Bacteroidales bacterium M2	0	na	none	123	23	41072	23683	12132	2016/07/20	27	1807730	none	M2	University of Queensland	1807730	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium M2	2098	3102289	none	none	none	3100191	0	LUJM00000000.1	2697	123	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2098	17	33	0
+RS_GCF_900142735.1	0	99.65	0.52	511	f__Flavobacteriaceae (UID2817)	283	0	4593448	88.1776834509145	14	1770121	33.979957802464774	5209309	RS_GCF_900142735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium saccharophilum	type strain of species	LPSN	f	3	3	1286734	1286734	5402	1	2868	NZ_FRBY01000009.1	5402	1	104	NZ_FRBY01000009.1	2868	5297	0	100	FRBY01000009.2220.5102	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium saccharophilum	372093	372093	t	f	f	766213	766213	Contig	IMG-taxon 2698536752 annotated assembly	na	PRJNA224116	SAMN05444366	14	766213	none	2016-12-03	GCA_900142735.1	none	full	none	none	none	0	0	Flavobacterium saccharophilum	4375	representative genome	3	none	none	none	none	none	2016/12/03	0	29534	1	DSM 1811	DOE - JOINT GENOME INSTITUTE	29534	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium saccharophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium saccharophilum	0	5209309	11	52	assembly from type material	5209309	0	FRBY00000000.1	4409	14	5402	1	1496	2695	0	98.997	1132070	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_FRBY01000009.1	1495	2717	0	99.264	AM230491.1.1495	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium saccharophilum	0	19	52	0
+RS_GCF_900129215.1	0	100	2.84	314	p__Bacteroidetes (UID2605)	209	10	7161921	91.48189661614158	26	3240396	41.40380063439737	7828785	RS_GCF_900129215.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter caeni	type strain of species	LPSN	f	3	3	1707455	1707455	1336	2	1329	NZ_FQUQ01000022.1	1697396	3	106	NZ_FQUQ01000002.1	1329	2416	0	99.473	FNGY01000028.61.2940	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter steynii	301012	355853	f	f	t	1079012	1118997	Scaffold	IMG-taxon 2622736434 annotated assembly	na	PRJNA224116	SAMN04488522	26	1079012	none	2016-12-03	GCA_900129215.1	none	full	none	none	none	0	0	Pedobacter caeni	6621	representative genome	6	22	3	1118997	701308	368698	2016/12/03	4	288992	0	DSM 16990	DOE - JOINT GENOME INSTITUTE	288992	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter caeni	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter caeni	2460	7828785	11	56	assembly from type material	7826325	0	FQUQ00000000.1	6736	22	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2460	19	56	0
+RS_GCF_001406095.1	1	97.77	0.09	492	o__Bacteroidales (UID2657)	269	0	4305016	90.91336442608116	56	2196697	46.452089173245994	4735295	GB_GCA_025147485.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	not type material	none	f	8	5	523289	668222	485332	1	2871	NZ_CYYO01000004.1	485332	1	106	NZ_CYYO01000004.1	2871	5302	0	100	CYYO01000004.84739.87616	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	84445	147977	t	f	f	225708	358755	Scaffold	13414_6#48	na	PRJNA224116	SAMEA3545272	56	225708	United Kingdom	2015-10-02	GCA_001406095.1	none	full	none	feces	none	0	0	Bacteroides uniformis	3980	na	3	32	5	358755	174571	117249	2015/10/02	24	820	1	2789STDY5608864	SC	820	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides uniformis	6342	4735295	11	61	none	4728953	0	CYYO00000000.1	3984	32	485332	1	1523	2808	0	99.934	4369395	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1524	NZ_CYYO01000004.1	1517	2802	0	100	EU136680.1.2019	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides uniformis	6342	19	59	0
+RS_GCF_900112795.1	0	99.46	0.54	275	k__Bacteria (UID2569)	184	0	3253304	83.42744221721368	59	1524444	39.09626729134085	3899561	RS_GCF_900112795.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Thermophagus;s__Thermophagus xiamenensis	type strain of species	LPSN	t	10	10	273953	273953	5211	1	2803	NZ_FONA01000040.1	5211	1	104	NZ_FONA01000040.1	2803	5177	0	100	FONA01000040.265.3080	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Thermophagus;Thermophagus xiamenensis	66088	67233	t	f	f	164575	164575	Scaffold	IMG-taxon 2693429893 annotated assembly	na	PRJNA224116	SAMN05444380	59	164575	none	2016-11-02	GCA_900112795.1	none	full	none	none	none	0	0	Thermophagus xiamenensis	2974	na	3	58	10	164575	97635	59233	2016/11/02	1	385682	1	DSM 19012	DOE - JOINT GENOME INSTITUTE	385682	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Thermophagus;s__Thermophagus xiamenensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Thermophagus;s__Thermophagus xiamenensis	355	3899561	11	45	assembly from type material	3899206	0	FONA00000000.1	3065	58	5211	1	1485	2732	0	99.865	161206	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Marinilabiaceae;g__;s__	1523	NZ_FONA01000040.1	1485	2732	0	99.865	DQ517535.1.1488	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Thermophagus;Thermophagus xiamenensis	355	19	45	0
+RS_GCF_001404375.1	1	99.25	0	485	o__Bacteroidales (UID2654)	265	0	4516760	89.4723465840131	102	2128965	42.19985577679735	5048219	RS_GCF_000012825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus	not type material	none	f	15	11	466584	581980	581980	1	2836	NZ_CYZI01000001.1	581980	2	106	NZ_CYZI01000001.1	2835	5236	0	100	CYZI01000001.463748.466632	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides vulgatus	49460	57366	t	f	f	115370	127869	Scaffold	13470_2#61	na	PRJNA224116	SAMEA3545308	102	115370	United Kingdom	2015-10-02	GCA_001404375.1	none	full	none	feces	none	0	0	Phocaeicola vulgatus	4258	na	4	88	11	127869	65232	30274	2015/10/02	14	821	1	2789STDY5834842	SC	821	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola vulgatus	3260	5048219	11	64	none	5044959	0	CYZI00000000.1	4283	88	581980	1	none	none	none	none	none	none	1525	NZ_CYZI01000001.1	1518	2793	0	99.868	CP013020.3929946.3931471	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides vulgatus	3260	19	62	0
+RS_GCF_001405255.1	1	99.41	0.08	839	g__Bacteroides (UID2691)	309	0	5626719	90.10252696805468	56	2661298	42.66195540761892	6244796	RS_GCF_000011065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	not type material	none	f	8	6	763213	784881	330227	1	2871	NZ_CYYB01000007.1	330227	1	107	NZ_CYYB01000007.1	2871	5297	0	99.965	JVQR01000301.2221.5097	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides thetaiotaomicron	111394	201445	t	f	f	208405	363637	Scaffold	13414_6#57	na	PRJNA224116	SAMEA3545281	56	208405	United Kingdom	2015-10-02	GCA_001405255.1	none	full	none	feces	none	0	0	Bacteroides thetaiotaomicron	4812	na	3	31	6	363637	272129	155966	2015/10/02	25	818	1	2789STDY5608873	SC	818	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides thetaiotaomicron	6689	6244796	11	68	none	6238107	0	CYYB00000000.1	4834	31	330227	1	1518	2741	0	99.275	239872	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1526	NZ_CYYB01000007.1	1526	2780	0	99.541	CP012937.2383895.2385420	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides thetaiotaomicron	6689	19	66	0
+RS_GCF_900109075.1	0	99.65	0.82	511	f__Flavobacteriaceae (UID2817)	283	0	3619455	87.04157414100838	61	1394962	33.565216345141636	4158306	RS_GCF_900109075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium marinum_A	type strain of species	LPSN	f	7	7	506684	506684	236711	1	329	NZ_FNYS01000005.1	506684	4	105	NZ_FNYS01000001.1	329	608	1.17e-172	100	LQNU01000086.1.2882	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides marinus	68130	77005	f	f	t	152185	171630	Scaffold	IMG-taxon 2615840711 annotated assembly	na	PRJNA224116	SAMN04488018	61	152185	none	2016-10-31	GCA_900109075.1	none	full	none	none	none	0	1	Myroides marinus	3695	representative genome	7	54	7	171630	81641	48371	2016/10/31	7	703342	1	DSM 23048	DOE - JOINT GENOME INSTITUTE	703342	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides marinus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Myroides;s__Myroides marinus	2331	4158306	11	59	assembly from type material	4155975	0	FNYS00000000.1	3749	54	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2331	18	59	0
+RS_GCF_001879205.1	0	99.65	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	4852715	88.35685739916977	13	1905775	34.69981029380517	5492177	RS_GCF_001879205.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium johnsoniae_A	not type material	none	f	4	4	927018	927018	489285	5	2871	NZ_MLFK01000001.1	489285	5	104	NZ_MLFK01000001.1	2871	5302	0	100	MLFK01000001.317974.320865	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium johnsoniae	422475	422475	t	f	f	647735	647735	Contig	ASM187920v1	na	PRJNA224116	SAMN05912871	13	647735	USA: Arlington; WI	2016-11-15	GCA_001879205.1	none	full	none	rhizosphere	43.30075 N 89.34501 W	0	0	Flavobacterium johnsoniae	4612	na	15	none	none	none	none	none	2016/11/15	0	986	5	CI04	Yale University	986	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium johnsoniae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium johnsoniae	0	5492177	11	55	none	5492177	0	MLFK00000000.1	4667	13	711105	5	1423	2628	0	100	161601	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_MLFK01000009.1	1510	2778	0	99.868	MLFK01000006.435079.436596	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium johnsoniae	0	19	54	0
+RS_GCF_001747085.1	0	99.67	1.39	571	s__algicola (UID2846)	303	16.67	4038442	87.02844816253877	54	1421754	30.638806819283808	4640370	RS_GCF_001747085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algibacter_C;s__Algibacter_C aquaticus	type strain of species	LPSN	f	3	3	1241003	1241003	242625	4	2812	NZ_MDJD01000014.1	242625	4	102	NZ_MDJD01000014.1	2812	5193	0	100	MDJD01000014.89346.92177	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Algibacter;Algibacter aquaticus	85932	85932	t	f	f	766242	766242	Contig	ASM174708v1	na	PRJNA224116	SAMN05001254	54	766242	Japan: Aburatsubo Inlet; Kanagawa Prefecture	2016-09-28	GCA_001747085.1	none	full	none	surface water	35.16 N 139.61 E	0	1	Algibacter aquaticus	3907	representative genome	14	none	none	none	none	none	2016/09/28	0	1849968	6	SK-16	The University of Tokyo	1849968	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algibacter;s__Algibacter aquaticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Algibacter;s__Algibacter aquaticus	0	4640370	11	51	assembly from type material	4640370	0	MDJD00000000.1	4020	54	242625	4	1479	2412	0	96.146	541518	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1514	NZ_MDJD01000014.1	1514	2796	0	100	MDJD01000014.92671.94191	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Algibacter aquaticus	0	19	51	0
+RS_GCF_900129555.1	0	99.65	0.67	511	f__Flavobacteriaceae (UID2817)	283	0	4324065	88.76025505257694	25	1642902	33.729488558184684	4871623	RS_GCF_900129555.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium defluvii	type strain of species	LPSN	f	4	4	942101	942101	5693	1	2868	NZ_FQWC01000017.1	5693	1	105	NZ_FQWC01000017.1	2868	5297	0	100	FQWC01000017.2515.5397	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium defluvii	194832	211809	t	f	f	373644	373644	Scaffold	IMG-taxon 2695420958 annotated assembly	na	PRJNA224116	SAMN05443663	25	373644	none	2016-12-03	GCA_900129555.1	none	full	none	none	none	0	0	Flavobacterium defluvii	4175	representative genome	5	23	4	373644	268278	147950	2016/12/03	2	370979	1	DSM 17963	DOE - JOINT GENOME INSTITUTE	370979	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium defluvii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium defluvii	805	4871623	11	54	assembly from type material	4870818	0	FQWC00000000.1	4197	23	5693	1	1435	2651	0	100	1128520	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_FQWC01000017.1	1436	2652	0	100	DQ372986.1.1436	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium defluvii	805	19	55	0
+RS_GCF_900113975.1	0	100	0.49	324	o__Flavobacteriales (UID2815)	204	0	4315781	88.26336293523705	14	1817283	37.16581285867758	4889663	GB_GCA_016025055.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium indologenes	type strain of species	LPSN	f	3	3	1197316	1197316	5458	1	2744	NZ_FORL01000012.1	5458	1	98	NZ_FORL01000012.1	2744	5068	0	100	CP022058.69495.72251	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium indologenes	349261	349261	t	f	f	676140	676140	Contig	IMG-taxon 2687453795 annotated assembly	na	PRJNA224116	SAMN05421692	14	676140	none	2016-11-02	GCA_900113975.1	none	full	none	none	none	0	0	Chryseobacterium indologenes	4346	na	3	none	none	none	none	none	2016/11/02	0	253	1	DSM 16777	DOE - JOINT GENOME INSTITUTE	253	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium indologenes	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium indologenes	0	4889663	11	80	assembly from type material	4889663	0	FORL00000000.1	4445	14	5458	1	1512	2715	0	99.074	606865	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FORL01000012.1	1513	2795	0	100	CP022058.4629363.4630883	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium indologenes	0	19	80	0
+RS_GCF_000829155.1	0	54.2	0	152	k__Bacteria (UID2565)	93	0	266168	93.27707533152036	1	59772	20.946760492304243	285352	RS_GCF_000829155.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Blattabacteriaceae;g__Sulcia;s__Sulcia muelleri_A	not type material	none	f	1	1	285352	285352	285352	1	2880	NZ_AP013293.1	285352	1	104	NZ_AP013293.1	2880	5319	0	100	AP013293.97791.100677	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Blattabacteriaceae;Candidatus Sulcia;Candidatus Sulcia muelleri PSPU	285352	285352	f	f	t	285352	285352	Complete Genome	ASM82915v1	na	PRJNA224116	SAMD00061065	none	none	none	2014-04-14	GCA_000829155.1	none	full	none	none	none	1	0	Candidatus Sulcia muelleri PSPU	261	na	3	1	1	285352	285352	285352	2014/04/14	0	336810	1	PSPU	National Institute of Advanced Industrial Science and Technology	1189303	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__Candidatus Sulcia;s__Candidatus Sulcia muelleri	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__Flavobacteriales incertae sedis;g__Candidatus Sulcia;s__Candidatus Sulcia muelleri;x__Candidatus Sulcia muelleri PSPU	0	285352	11	30	none	285352	0	none	265	1	285352	1	none	none	none	none	none	none	1535	NZ_AP013293.1	1535	2835	0	100	AP013293.95913.97453	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Blattabacteriaceae;Candidatus Sulcia;Candidatus Sulcia muelleri PSPU	0	19	30	0
+RS_GCF_001913155.1	0	99.01	0.66	571	s__algicola (UID2846)	303	0	3861652	90.41229568187363	1	1468859	34.390181772718314	4271158	RS_GCF_001913155.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter hydrothermalis	type strain of species	LPSN	f	1	1	4271158	4271158	4271158	3	2814	NZ_CP018760.1	4271158	3	108	NZ_CP018760.1	2814	5197	0	100	CP018760.3267126.3269957	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter sp. T28	4271158	4271158	t	f	f	4271158	4271158	Complete Genome	ASM191315v1	na	PRJNA224116	SAMN04633439	none	none	Taiwan: Kueishan Island	2016-12-21	GCA_001913155.1	none	full	none	seawater from shallow-sea hydrothermal system	24 N 121 E	1	1	Maribacter hydrothermalis	3649	representative genome	9	1	1	4271158	4271158	4271158	2016/12/21	0	1836467	3	T28	Xiamen University	1836467	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter hydrothermalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter hydrothermalis	0	4271158	11	42	assembly from type material	4271158	0	none	3711	1	4271158	3	none	none	none	none	none	none	1522	NZ_CP018760.1	1522	2811	0	100	CP018760.1098892.1100423	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter sp. T28	0	19	41	0
+RS_GCF_900141765.1	0	100	0.49	324	o__Flavobacteriales (UID2815)	204	0	3664518	89.82617268601611	4	1433853	35.1471945790312	4079566	RS_GCF_900141765.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Epilithonimonas;s__Epilithonimonas zeae	type strain of species	LPSN	f	1	1	2584580	2584580	5364	1	2742	NZ_FSRK01000004.1	5364	1	101	NZ_FSRK01000004.1	2742	5064	0	100	FSRK01000004.342.3098	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium zeae	1019891	1019891	t	f	f	2584580	2584580	Contig	IMG-taxon 2695421044 annotated assembly	na	PRJNA224116	SAMN05444409	4	2584580	none	2016-12-16	GCA_900141765.1	none	full	none	none	none	0	0	Epilithonimonas zeae	3681	representative genome	3	none	none	none	none	none	2016/12/16	0	1416779	1	DSM 27623	DOE - JOINT GENOME INSTITUTE	1416779	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Epilithonimonas;s__Epilithonimonas zeae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Epilithonimonas;s__Epilithonimonas zeae	0	4079566	11	47	assembly from type material	4079566	0	FSRK00000000.1	3709	4	5364	1	none	none	none	none	none	none	1513	NZ_FSRK01000004.1	1438	2656	0	100	HG738135.1.1440	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium zeae	0	19	47	0
+RS_GCF_900108375.1	0	99.63	0.37	486	o__Bacteroidales (UID2716)	270	100	3289661	92.51691630996642	13	1697408	47.767269190678704	3555740	RS_GCF_000025925.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella ruminicola	type strain of species	LPSN	f	2	2	1413456	1717900	none	0	none	none	1717900	4	109	NZ_FNXC01000002.1	none	none	none	none	none	none	273345	323249	f	f	t	968974	968974	Scaffold	IMG-taxon 2596583684 annotated assembly	na	PRJNA224116	SAMN02745192	13	968974	none	2016-10-27	GCA_900108375.1	none	full	none	none	none	0	0	Prevotella ruminicola	2929	na	11	11	2	968974	968974	143933	2016/10/27	2	839	5	ATCC 19189	DOE - JOINT GENOME INSTITUTE	839	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella ruminicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella ruminicola	2244	3555740	11	46	assembly from type material	3553496	0	FNXC00000000.1	2991	11	1237	5	1231	2274	0	100	4392899	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1233	NZ_FNXC01000001.1	1233	2278	0	100	CP002006.223917.225405	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella ruminicola 23	2244	18	46	0
+RS_GCF_900112275.1	0	99.63	0.09	486	o__Bacteroidales (UID2716)	270	0	3294339	92.55331522539217	39	1702139	47.821141061969676	3559396	RS_GCF_000025925.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella ruminicola	not type material	none	f	3	3	872895	872895	none	0	none	none	244306	4	109	NZ_FOLF01000004.1	none	none	none	none	none	none	91266	93668	f	f	t	430341	430341	Scaffold	IMG-taxon 2623620485 annotated assembly	na	PRJNA224116	SAMN04488493	39	430341	none	2016-11-02	GCA_900112275.1	none	full	none	none	none	0	0	Prevotella ruminicola	2932	na	8	38	3	430341	109961	50514	2016/11/02	1	839	1	BPI-162	DOE - JOINT GENOME INSTITUTE	839	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella ruminicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella ruminicola	10	3559396	11	45	none	3559386	0	FOLF00000000.1	3018	38	39739	1	380	691	0	99.474	4392899	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	381	NZ_FOLF01000018.1	377	686	0	99.469	GU302599.1.1494	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured rumen bacterium	10	18	45	0
+RS_GCF_001404575.1	1	99.62	0	427	o__Bacteroidales (UID2621)	260	0	3849163	89.39467342714771	39	1948102	45.30028353051179	4305808	GB_GCA_025151215.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides merdae	not type material	none	f	6	3	533644	1084885	478658	1	2866	NZ_CZAG01000004.1	98619	2	104	NZ_CZAG01000010.1	2866	5293	0	100	AJPU01000034.129198.132073	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides merdae CL09T00C40	110267	215290	t	f	f	240621	533644	Scaffold	13470_2#67	na	PRJNA224116	SAMEA3545314	39	240621	United Kingdom	2015-10-02	GCA_001404575.1	none	full	none	feces	none	0	0	Parabacteroides merdae	3546	na	5	20	3	533644	329658	231598	2015/10/02	19	46503	1	2789STDY5834848	SC	46503	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides merdae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides merdae	5388	4305808	11	67	none	4300420	0	CZAG00000000.1	3564	20	478658	1	1527	2750	0	99.214	4374912	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__	1524	NZ_CZAG01000004.1	1515	2793	0	99.934	AGZQ01000017.129.1643	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides merdae CL03T12C32	5388	19	67	0
+RS_GCF_001816125.1	0	97.12	0.74	454	o__Cytophagales (UID2936)	336	33.33	4816665	84.4892430538855	459	3599323	63.1358161251489	5700921	RS_GCF_001816125.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter coccineus	type strain of species	LPSN	f	58	58	151637	151637	3490	1	2909	NZ_MDZA01000205.1	none	0	none	none	2909	5373	0	100	MDZA01000205.576.3490	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. CCM 8649	12420	12420	f	f	t	27453	27453	Contig	ASM181612v1	na	PRJNA224116	SAMN05447638	459	27453	Antarctica: James Ross Island; Panorama Pass	2016-10-21	GCA_001816125.1	none	full	none	stone surface covered by lichens (Usnea antarctica)	63.815 S 57.8458 W	0	0	Hymenobacter coccineus	5042	representative genome	9	none	none	none	none	none	2016/10/21	0	1908235	3	CCM 8649	Masaryk University	1908235	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter coccineus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter coccineus	0	5700921	11	42	assembly from type material	5700921	0	MDZA00000000.1	5349	459	1564	1	1474	2543	0	97.829	828231	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Hymenobacter;s__	1511	NZ_MDZA01000272.1	1511	2791	0	100	MDZA01000272.44.1564	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. CCM 8649	0	19	42	0
+RS_GCF_001936475.1	0	100	0.45	439	o__Cytophagales (UID2938)	266	33.33	4402084	90.33102961455118	30	1927059	39.543367095672735	4873280	RS_GCF_001936475.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus marinus	type strain of species	LPSN	f	5	5	999637	999637	2993	1	2869	NZ_MSPQ01000024.1	540737	1	101	NZ_MSPQ01000002.1	2869	5299	0	100	MSPQ01000024.66.2940	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus sp. am2	162442	162442	t	f	f	318562	318562	Contig	ASM193647v1	na	PRJNA224116	SAMN06187575	30	318562	China:Shandong Province	2017-01-05	GCA_001936475.1	none	full	none	marine sediment	none	0	0	Algoriphagus marinus	4149	representative genome	5	none	none	none	none	none	2017/01/05	0	1925762	3	am2	Shandong Uniwersity at Weihai	1925762	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus marinus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus marinus	0	4873280	11	39	assembly from type material	4873280	0	MSPQ00000000.1	4180	30	1363	3	1289	2302	0	98.914	346430	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__;s__	1319	NZ_MSPQ01000026.1	1290	2372	0	99.845	KX839492.1.1488	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus marinus	0	19	39	0
+RS_GCF_001752425.1	0	99.43	0.76	496	s__algicola (UID2847)	263	0	2983938	89.93984996853246	58	1227693	37.01161394107049	3317704	RS_GCF_900168265.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salarius	type strain of species	LPSN	f	11	10	305450	305450	5935	1	2818	NZ_MJBR01000035.1	5935	1	101	NZ_MJBR01000035.1	2818	5204	0	100	MJBR01000035.2835.5665	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter salarius	57190	63802	t	f	f	89596	112772	Scaffold	ASM175242v1	na	PRJNA224116	SAMN05762002	58	89596	South Korea: Yellow Sea	2016-10-04	GCA_001752425.1	none	full	none	marine solar saltern	none	0	1	Salegentibacter salarius	2989	representative genome	3	52	10	112772	66970	52369	2016/10/04	6	435906	1	KCTC 12974	State Key Laboratory of Marine Enviromment Laboratory	435906	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salarius	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salarius	656	3317704	11	40	assembly from type material	3317048	0	MJBR00000000.1	3025	52	5935	1	1485	2743	0	100	1130765	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__	1526	NZ_MJBR01000035.1	1485	2743	0	100	EF486353.1.1485	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter salarius	656	19	40	0
+RS_GCF_900128985.1	0	100	0	273	k__Bacteria (UID2570)	183	0	4181845	89.7093241518379	51	1796510	38.53889800602804	4661550	RS_GCF_900128985.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__Dysgonomonas macrotermitis	type strain of species	LPSN	f	5	5	790997	790997	5426	1	2874	NZ_FQUC01000035.1	5426	1	107	NZ_FQUC01000035.1	2874	5308	0	100	BBXL01000045.2265.5147	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Dysgonomonas;Dysgonomonas macrotermitis	91402	91402	t	f	f	265550	265550	Contig	IMG-taxon 2695420931 annotated assembly	na	PRJNA224116	SAMN05444362	51	265550	none	2016-12-03	GCA_900128985.1	none	full	none	none	none	0	0	Dysgonomonas macrotermitis	3885	representative genome	5	none	none	none	none	none	2016/12/03	0	1346286	1	DSM 27370	DOE - JOINT GENOME INSTITUTE	1346286	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__Dysgonomonas macrotermitis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__Dysgonomonas macrotermitis	0	4661550	11	47	assembly from type material	4661550	0	FQUC00000000.1	4017	51	5426	1	1359	2499	0	99.853	202454	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Dysgonomonas;s__	1525	NZ_FQUC01000035.1	1419	2621	0	100	HG315620.1.1419	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Dysgonomonas;Dysgonomonas macrotermitis	0	19	45	0
+RS_GCF_900114945.1	0	99.65	0.53	511	f__Flavobacteriaceae (UID2817)	283	0	3226371	88.03425683182971	53	1299264	35.454359399772414	3664904	RS_GCF_000611675.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans	type strain of species	LPSN	f	4	4	1012080	1012080	5459	1	2865	NZ_FOUT01000026.1	none	0	none	none	2865	5291	0	100	MUFX01000003.202814.205699	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. LM5	69143	70478	f	f	t	255203	255203	Scaffold	IMG-taxon 2693429891 annotated assembly	na	PRJNA224116	SAMN05444143	53	255203	none	2016-11-02	GCA_900114945.1	none	full	none	none	none	0	1	Flavobacterium succinicans	3138	representative genome	2	52	4	255203	155165	79943	2016/11/02	1	29536	1	DSM 4002	DOE - JOINT GENOME INSTITUTE	29536	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans	294	3664904	11	45	assembly from type material	3664610	0	FOUT00000000.1	3181	52	5459	1	1500	2765	0	99.933	1144295	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_FOUT01000026.1	1500	2765	0	99.933	AM230492.1.1501	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium succinicans	294	19	45	0
+RS_GCF_001936395.1	0	97.17	0.18	511	f__Flavobacteriaceae (UID2817)	283	0	2613647	86.19986029383149	1	958956	31.62702278767235	3032078	RS_GCF_002530675.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium columnare	not type material	none	f	1	1	3032078	3032078	3032078	8	2861	NZ_CP018912.1	3032078	8	103	NZ_CP018912.1	2861	5284	0	100	CP018912.3025327.3028203	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium columnare	3032078	3032078	t	f	f	3032078	3032078	Complete Genome	ASM193639v1	na	PRJNA224116	SAMN06184581	none	none	China: Shanghai Huangpu River	2017-01-05	GCA_001936395.1	none	full	none	water sample from Huangpu River	none	1	0	Flavobacterium columnare	2564	na	22	1	1	3032078	3032078	3032078	2017/01/05	0	996	7	TC 1691	Shanghai Institute of Clinical Bioinformatics	996	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium columnare	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium columnare	0	3032078	11	75	none	3032078	0	none	2592	1	3032078	7	1511	2785	0	99.934	3925303	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__columnare	1512	NZ_CP018912.1	1512	2793	0	100	CP018912.2111940.2113459	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium columnare	0	18	75	0
+RS_GCF_001404475.1	1	93.87	0	839	g__Bacteroides (UID2691)	309	0	4008216	90.71512391746907	50	1862462	42.17658729305027	4418465	RS_GCF_000156195.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides finegoldii	not type material	none	f	10	7	448053	448053	41734	1	2870	NZ_CYZH01000023.1	41734	3	106	NZ_CYZH01000023.1	2862	5286	0	100	CYZH01000023.203.3066	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides finegoldii	88317	110461	t	f	f	139653	238385	Scaffold	13414_6#24	na	PRJNA224116	SAMEA3545248	50	139653	United Kingdom	2015-10-02	GCA_001404475.1	none	full	none	feces	none	0	0	Bacteroides finegoldii	3487	na	5	40	7	238385	117349	68913	2015/10/02	10	338188	1	2789STDY5608840	SC	338188	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides finegoldii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides finegoldii	2597	4418465	11	59	none	4415868	0	CYZH00000000.1	3523	40	41734	1	1525	2784	0	99.607	359717	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1526	NZ_CYZH01000023.1	1487	2706	0	99.529	AB222700.1.1488	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides finegoldii	2597	19	59	0
+RS_GCF_900100165.1	0	99.65	0.9	511	f__Flavobacteriaceae (UID2817)	283	0	3563810	90.32747482975886	16	1345721	34.11100236925439	3945433	RS_GCF_900100165.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium glycines	type strain of species	LPSN	f	1	1	2097855	2097855	2262	1	2197	NZ_FNEO01000013.1	183044	2	104	NZ_FNEO01000006.1	2197	4058	0	100	FNEO01000013.1.2211	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium glycines	246570	281816	t	f	f	2097855	2097855	Scaffold	IMG-taxon 2660237900 annotated assembly	na	PRJNA224116	SAMN05192550	16	2097855	none	2016-10-21	GCA_900100165.1	none	full	none	none	none	0	1	Flavobacterium glycines	3206	representative genome	5	14	1	2097855	214001	136709	2016/10/21	2	551990	2	Gm-149	DOE - JOINT GENOME INSTITUTE	551990	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium glycines	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium glycines	310	3945433	11	50	assembly from type material	3945123	0	FNEO00000000.1	3234	14	2097	1	1439	2658	0	100	3509169	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_FNEO01000014.1	1439	2658	0	100	AB682234.1.1439	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium glycines	310	19	50	0
+RS_GCF_001747105.1	0	98.75	0.3	454	o__Cytophagales (UID2936)	336	0	4151752	93.24782111160647	5	1783871	40.065515448461895	4452385	RS_GCF_001747105.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Fabibacter;s__Fabibacter misakiensis	type strain of species	LPSN	f	1	1	2620466	2620466	2620466	1	2873	NZ_MDGQ01000005.1	2620466	2	107	NZ_MDGQ01000005.1	2873	5306	0	100	MDGQ01000005.2615241.2618121	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Fabibacter;Fabibacter misakiensis	890477	890477	t	f	f	2620466	2620466	Contig	ASM174710v1	na	PRJNA224116	SAMN05567582	5	2620466	Japan: Aburatsubo Inlet; Kanagawa Prefecture	2016-09-28	GCA_001747105.1	none	full	none	Surface water (20cm)	35.16 N 139.61 E	0	0	Roseivirga misakiensis	3786	representative genome	4	none	none	none	none	none	2016/09/28	0	1563681	1	SK-8	The University of Tokyo	1563681	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Roseivirgaceae;g__Roseivirga;s__Roseivirga misakiensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Roseivirgaceae;g__Roseivirga;s__Roseivirga misakiensis	0	4452385	11	41	assembly from type material	4452385	0	MDGQ00000000.1	3847	5	2620466	1	none	none	none	none	none	none	1535	NZ_MDGQ01000005.1	1515	2621	0	97.888	MDGP01000001.4256692.4258219	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Fabibacter;Fabibacter sp. 4D4	0	19	41	0
+RS_GCF_001405515.1	1	98.84	0.62	839	g__Bacteroides (UID2691)	309	57.14	4744263	89.65203747716069	78	2248821	42.56898228940164	5291863	RS_GCF_002222615.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides caccae	not type material	none	f	14	8	328820	643875	233448	1	2872	NZ_CZBL01000006.1	233448	1	106	NZ_CZBL01000006.1	2872	5304	0	100	CZBL01000006.138260.141137	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides caccae	67727	120269	t	f	f	138033	221420	Scaffold	14207_7#69	na	PRJNA224116	SAMEA3545409	78	138033	United Kingdom	2015-10-02	GCA_001405515.1	none	full	none	feces	none	0	0	Bacteroides caccae	4487	na	4	44	8	221420	157491	99227	2015/10/02	34	47678	2	2789STDY5834946	SC	47678	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides caccae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides caccae	9093	5291863	11	67	none	5282770	0	CZBL00000000.1	4530	44	233448	1	1525	2789	0	99.672	251843	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__caccae	1526	NZ_CZBL01000006.1	1526	2791	0	99.672	CP022412.250843.252383	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides caccae	9093	19	62	0
+RS_GCF_001809725.1	0	100	0	152	k__Bacteria (UID2565)	93	0	2059301	90.5079041099262	56	814058	35.80524390694467	2275272	RS_GCF_000189415.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Weeksella;s__Weeksella virosa	not type material	none	f	6	4	302180	377536	2960	1	2770	NZ_KV798528.1	none	0	none	none	2770	5116	0	100	LTJE01000036.124.2904	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Weeksella;Weeksella sp. HMSC059D05	40599	58340	f	f	t	122296	237047	Scaffold	ASM180972v1	na	PRJNA224116	SAMN04477527	56	122296	none	2016-10-21	GCA_001809725.1	none	full	none	urine	none	0	0	Weeksella sp. HMSC059D05	2108	na	2	39	4	237047	170426	90664	2016/10/21	17	1715139	1	HMSC059D05	The Genome Institute at Washington University	1715139	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Weeksella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Weeksella;x__unclassified Weeksella;s__Weeksella sp. HMSC059D05	1700	2275272	11	43	none	2273572	0	LTJE00000000.1	2132	39	2085	1	1513	2778	0	99.802	2096960	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Weeksella;s__virosa	1514	NZ_KV798540.1	1508	2785	0	100	CP002455.812901.814408	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Weeksella;Weeksella virosa DSM 16922	1700	19	43	0
+RS_GCF_900130035.1	0	96.85	0.9	548	f__Flavobacteriaceae (UID2845)	298	33.33	2981471	91.96195640439596	12	1011969	31.216133929954033	3242070	RS_GCF_900130035.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Wenyingzhuangia;s__Wenyingzhuangia marina	type strain of species	LPSN	t	2	2	963074	963074	5586	1	2785	NZ_FQXQ01000010.1	5586	1	103	NZ_FQXQ01000010.1	2785	5144	0	100	FQXQ01000010.304.3104	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Wenyingzhuangia;Wenyingzhuangia marina	270151	294733	t	f	f	707963	707963	Scaffold	IMG-taxon 2695421042 annotated assembly	na	PRJNA224116	SAMN05444281	12	707963	none	2016-12-03	GCA_900130035.1	none	full	none	none	none	0	1	Wenyingzhuangia marina	2739	representative genome	3	11	2	707963	428113	170024	2016/12/03	1	1195760	1	DSM 100572	DOE - JOINT GENOME INSTITUTE	1195760	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Wenyingzhuangia;s__Wenyingzhuangia marina	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Wenyingzhuangia;s__Wenyingzhuangia marina	256	3242070	11	45	assembly from type material	3241814	0	FQXQ00000000.1	2763	11	5586	1	1514	2586	0	97.556	4053381	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1516	NZ_FQXQ01000010.1	1518	2608	0	97.694	CP014224.2402399.2403925	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Wenyingzhuangia;Wenyingzhuangia fucanilytica	256	19	45	0
+RS_GCF_001932675.1	0	99.43	0.76	496	s__algicola (UID2847)	263	0	3671488	89.8432173838568	1	1507271	36.88370385777734	4086550	RS_GCF_900113135.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter agarivorans	not type material	none	f	1	1	4086550	4086550	4086550	3	2821	NZ_CP012872.1-#2	4086550	3	102	NZ_CP012872.1	2821	5210	0	100	CP012872.3219973.3222808	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter sp. T436	4086550	4086550	t	f	f	4086550	4086550	Complete Genome	ASM193267v1	na	PRJNA224116	SAMN04116623	none	none	Arctic Ocean: Fram Strait	2017-01-04	GCA_001932675.1	none	full	none	Arctic sea ice floe	none	1	1	Salegentibacter sp. T436	3581	na	9	1	1	4086550	4086550	4086550	2017/01/04	0	1729720	3	T436	Oak Ridge National Laboratory	1729720	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;x__unclassified Salegentibacter;s__Salegentibacter sp. T436	0	4086550	11	44	none	4086550	0	none	3624	1	4086550	3	none	none	none	none	none	none	1526	NZ_CP012872.1	1526	2819	0	100	CP012872.1701571.1703105	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter sp. T436	0	19	44	0
+RS_GCF_900106755.1	0	99.06	0.05	839	g__Bacteroides (UID2691)	309	0	5334981	89.5225068941805	77	2526692	42.399617534672664	5959374	RS_GCF_900106755.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides faecis	type strain of species	LPSN	f	11	11	531973	531973	5252	1	2967	NZ_FNNN01000059.1	531973	5	106	NZ_FNNN01000001.1	1499	2758	0	99.867	AGDG01000052.10195.13059	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides faecis MAJ27	77392	78412	t	f	f	177924	177924	Scaffold	IMG-taxon 2693429916 annotated assembly	na	PRJNA224116	SAMN05444400	77	177924	none	2016-10-22	GCA_900106755.1	none	full	none	none	none	0	0	Bacteroides faecis MAJ27	4665	na	7	76	11	177924	103690	54298	2016/10/22	1	674529	1	MAJ27	DOE - JOINT GENOME INSTITUTE	1077285	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides faecis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides faecis;x__Bacteroides faecis MAJ27	141	5959374	11	62	assembly from type material	5959233	0	FNNN00000000.1	4753	76	5252	1	1472	2697	0	99.728	745245	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1526	NZ_FNNN01000059.1	1527	2708	0	98.69	CP012937.2383895.2385420	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides thetaiotaomicron	141	19	62	0
+RS_GCF_900089995.1	987	99.62	1.01	496	s__algicola (UID2847)	263	0	5554425	88.57727616533437	20	2064562	32.92907311390422	6270711	RS_GCF_900312745.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina sp900312745	not type material	none	f	3	3	1612376	1612376	246727	1	2814	NZ_FLRG01000009.1	649612	3	103	NZ_FLRG01000004.1	2811	5180	0	99.929	FLRG01000009.126066.128879	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina megaterium	313535	313535	t	f	f	1094259	1094259	Contig	EL331	na	PRJNA224116	SAMEA4034450	20	1094259	none	2016-06-21	GCA_900089995.1	none	full	none	Sea water	none	0	1	Aquimarina megaterium	5297	na	5	none	none	none	none	none	2016/06/21	0	1443666	1	EL33	CENTRE OF MARINE SCIENCES	1443666	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina megaterium	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina megaterium	0	6270711	11	40	none	6270711	0	FLRG00000000.1	5437	20	246727	1	1370	2527	0	99.927	2823939	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__	1519	NZ_FLRG01000009.1	1483	2669	0	99.191	KC476292.1.1485	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina megaterium XH134	0	19	40	0
+RS_GCF_900142175.1	0	99.67	1.03	571	s__algicola (UID2846)	303	0	4155551	90.76434192236758	16	1577435	34.49270025668875	4578396	RS_GCF_900142175.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter aquivivus	type strain of species	LPSN	f	1	1	2373344	2431341	5331	1	2817	NZ_FQZX01000010.1	555803	4	108	NZ_FQZX01000003.1	2817	5203	0	100	FQZX01000010.318.3149	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter aquivivus	285827	416217	t	f	f	2373344	2431341	Scaffold	IMG-taxon 2622736581 annotated assembly	na	PRJNA224116	SAMN04488007	16	2373344	none	2016-12-03	GCA_900142175.1	none	full	none	none	none	0	1	Maribacter aquivivus	3945	representative genome	7	11	1	2431341	1173062	555803	2016/12/03	5	228958	2	DSM 16478	DOE - JOINT GENOME INSTITUTE	228958	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter aquivivus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter aquivivus	5153	4578396	11	37	assembly from type material	4573243	0	FQZX00000000.1	3990	11	5331	2	1504	2680	0	98.87	755395	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__	1522	NZ_FQZX01000010.1	1505	2682	0	98.87	EU090721.1.1506	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter aquivivus	5153	19	36	0
+RS_GCF_900143075.1	0	100	0	454	o__Cytophagales (UID2936)	336	0	5028139	88.59903911113022	37	2578634	45.45531305951331	5675162	RS_GCF_900143075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium lianum	type strain of species	LPSN	f	7	6	577904	659747	139232	1	304	NZ_FRCY01000014.1	139232	2	92	NZ_FRCY01000014.1	304	545	8.53e-154	99.013	FNZH01000026.1.2214	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cyclobacterium;Cyclobacterium halophilum	153321	183069	f	f	t	266214	334938	Scaffold	IMG-taxon 2617270779 annotated assembly	na	PRJNA224116	SAMN04488057	37	266214	none	2016-12-03	GCA_900143075.1	none	full	none	none	none	0	0	Cyclobacterium lianum	4710	representative genome	6	31	6	334938	148623	117293	2016/12/03	6	388280	2	CGMCC 1.6102	DOE - JOINT GENOME INSTITUTE	388280	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium lianum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Cyclobacterium;s__Cyclobacterium lianum	2263	5675162	11	37	assembly from type material	5672899	0	FRCY00000000.1	4724	31	1059	2	1024	1875	0	99.707	4376911	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__;s__	1053	NZ_FRCY01000031.1	1023	1873	0	99.707	DQ534063.1.1485	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Cyclobacterium;Cyclobacterium lianum	2263	19	37	0
+RS_GCF_900142015.1	0	99.26	0.5	491	o__Bacteroidales (UID2657)	269	0	5670314	90.46187402693062	91	2792659	44.552941275945926	6268181	RS_GCF_900142015.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercorirosoris	type strain of species	LPSN	f	13	13	445299	445299	5169	1	2873	NZ_FQZN01000072.1	5169	1	105	NZ_FQZN01000072.1	2873	5306	0	100	FQZN01000072.250.3134	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides stercorirosoris	68881	68881	t	f	f	154056	154056	Contig	IMG-taxon 2700988705 annotated assembly	na	PRJNA224116	SAMN05444350	91	154056	none	2016-12-03	GCA_900142015.1	none	full	none	none	none	0	0	Bacteroides stercorirosoris	4914	representative genome	4	none	none	none	none	none	2016/12/03	0	871324	2	DSM 26884	DOE - JOINT GENOME INSTITUTE	871324	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercorirosoris	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides stercorirosoris	0	6268181	11	59	assembly from type material	6268181	0	FQZN00000000.1	4996	91	5169	1	1481	2730	0	99.932	1135084	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1520	NZ_FQZN01000072.1	1481	2730	0	99.932	AB574481.1.1484	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides stercorirosoris	0	19	59	0
+RS_GCF_900116415.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	3916116	88.34793798501379	14	1542052	34.78883528109649	4432606	RS_GCF_900116415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium formosense	type strain of species	LPSN	f	2	2	1319397	1319397	5965	1	2743	NZ_FPAP01000010.1	5965	1	101	NZ_FPAP01000010.1	2743	5066	0	100	FPAP01000010.346.3103	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium formosense	316614	316614	t	f	f	1176890	1176890	Contig	IMG-taxon 2684622901 annotated assembly	na	PRJNA224116	SAMN05421857	14	1176890	none	2016-11-02	GCA_900116415.1	none	full	none	none	none	0	0	Chryseobacterium formosense	3979	representative genome	3	none	none	none	none	none	2016/11/02	0	236814	1	DSM 17452	DOE - JOINT GENOME INSTITUTE	236814	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium formosense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium formosense	0	4432606	11	67	assembly from type material	4432606	0	FPAP00000000.1	4016	14	5965	1	1455	2687	0	100	822609	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FPAP01000010.1	1455	2687	0	100	AY315443.1.1455	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium formosense	0	19	65	0
+RS_GCF_900129005.1	0	99.54	0.4	496	s__algicola (UID2847)	263	0	4219641	89.14563749201423	49	1774468	37.50551390666972	4733424	RS_GCF_900129005.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella marinoflava	type strain of species	LPSN	t	8	8	481164	481164	1045	1	995	NZ_FQUN01000044.1	19476	3	103	NZ_FQUN01000031.1	996	1794	0	99.197	FQXT01000012.341.3160	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Leeuwenhoekiella;Leeuwenhoekiella palythoae	96555	107577	f	f	t	194792	224950	Scaffold	IMG-taxon 2582581269 annotated assembly	na	PRJNA224116	SAMN02745246	49	194792	none	2016-12-03	GCA_900129005.1	none	full	none	none	none	0	1	Leeuwenhoekiella marinoflava DSM 3653	4069	na	9	44	8	224950	128189	77525	2016/12/03	5	988	5	DSM 3653	DOE - JOINT GENOME INSTITUTE	1122159	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella marinoflava	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella marinoflava;x__Leeuwenhoekiella marinoflava DSM 3653	2205	4733424	11	37	assembly from type material	4731219	0	FQUN00000000.1	4084	44	1111	2	1077	1967	0	99.629	4453775	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__marinoflava	1096	NZ_FQUN01000001.1	1096	1984	0	98.996	M58770.1.1478	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Leeuwenhoekiella;Leeuwenhoekiella marinoflava	2205	19	36	0
+RS_GCF_001857965.1	0	99.65	0.43	511	f__Flavobacteriaceae (UID2817)	283	0	3433237	89.1468768030029	1	1323913	34.37651088721634	3851214	RS_GCF_001857965.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium commune	type strain of species	LPSN	f	1	1	3851214	3851214	3851214	5	2866	NZ_CP017774.1	3851214	5	104	NZ_CP017774.1	2866	5293	0	100	CP017774.573608.576494	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium commune	3851214	3851214	t	f	f	3851214	3851214	Complete Genome	ASM185796v1	na	PRJNA224116	SAMN05804760	none	none	South Korea: Daejeon	2016-10-31	GCA_001857965.1	none	full	none	Freshwater	none	1	1	Flavobacterium commune	3168	representative genome	15	1	1	3851214	3851214	3851214	2016/10/31	0	1306519	5	PK15	Chungnam National University	1306519	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium commune	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium commune	0	3851214	11	57	assembly from type material	3851214	0	none	3190	1	3851214	5	none	none	none	none	none	none	1510	NZ_CP017774.1	1510	2789	0	100	CP017774.583532.585049	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium commune	0	19	57	0
+RS_GCF_900129245.1	0	100	0.16	324	o__Flavobacteriales (UID2815)	204	100	4338226	87.67869312600902	34	1762183	35.61499619634154	4947868	RS_GCF_900129245.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium arachidis	type strain of species	LPSN	f	5	5	802538	802538	5299	1	2744	NZ_FQUT01000027.1	5299	1	101	NZ_FQUT01000027.1	2744	5068	0	100	FQUT01000027.2222.4980	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium arachidis	145525	145525	t	f	f	302134	302134	Contig	IMG-taxon 2695420930 annotated assembly	na	PRJNA224116	SAMN05443633	34	302134	none	2016-12-03	GCA_900129245.1	none	full	none	none	none	0	0	Chryseobacterium arachidis	4452	representative genome	3	none	none	none	none	none	2016/12/03	0	1416778	1	DSM 27619	DOE - JOINT GENOME INSTITUTE	1416778	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium arachidis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium arachidis	0	4947868	11	75	assembly from type material	4947868	0	FQUT00000000.1	4507	34	5299	1	1477	2553	0	97.901	147462	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FQUT01000027.1	1515	2662	0	98.416	JWTA01000017.3590.5120	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium taiwanense	0	19	74	0
+RS_GCF_900106865.1	0	99.61	0.67	548	f__Flavobacteriaceae (UID2845)	298	0	2857898	92.93566203250847	5	922919	30.017325712665073	3075136	RS_GCF_024362345.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter dokdonensis	type strain of species	LPSN	f	1	1	1651329	1651329	5763	1	2856	NZ_FNUE01000003.1	5763	1	104	NZ_FNUE01000003.1	2856	5275	0	100	FNUE01000003.2613.5485	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter dokdonensis DSW-5	614924	768784	t	f	f	1651329	1651329	Scaffold	IMG-taxon 2693430036 annotated assembly	na	PRJNA224116	SAMN05444353	5	1651329	none	2016-10-22	GCA_900106865.1	none	full	none	none	none	0	1	Polaribacter dokdonensis DSW-5	2759	na	3	4	1	1651329	1417021	1417021	2016/10/22	1	326329	1	DSW-5	DOE - JOINT GENOME INSTITUTE	1300348	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter dokdonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter dokdonensis;x__Polaribacter dokdonensis DSW-5	515	3075136	11	33	assembly from type material	3074621	0	FNUE00000000.1	2758	4	5763	1	1475	2724	0	100	4356827	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__	1517	NZ_FNUE01000003.1	1508	2758	0	99.668	CP004349.2956208.2957715	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. MED152	515	19	33	0
+RS_GCF_001816225.2	158	99.26	0.19	492	o__Bacteroidales (UID2657)	269	0	4778093	89.2326255619417	141	2326474	43.45374566508322	5354648	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	11	11	472857	472857	5202	1	2880	NZ_MKXL02000027.1	5202	1	106	NZ_MKXL02000027.1	2882	5264	0	99.653	BABG01000032.3123.6009	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;human gut metagenome	37972	40565	t	f	f	131863	131863	Scaffold	ASM181622v2	na	PRJNA224116	SAMN05860967	141	131863	Sweden: Solna	2018-01-04	GCA_001816225.2	none	full	none	Appendix	59.34266529 N 18.02266657 E	0	0	Bacteroides fragilis	4786	na	3	132	11	131863	60808	28665	2018/01/04	9	817	1	14-106904-1	Odense University Hospital	817	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	581	5354648	11	60	none	5354067	0	MKXL00000000.2	4529	132	5202	1	1525	2784	0	99.607	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1526	NZ_MKXL02000027.1	1526	2791	0	99.672	CP012706.2340858.2342397	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	581	19	60	0
+RS_GCF_900142395.1	0	99.9	0.3	454	o__Cytophagales (UID2936)	336	0	4162000	87.29490050541692	64	2897560	60.774197959749124	4767747	RS_GCF_900142395.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter psychrotolerans	type strain of species	LPSN	f	9	9	673774	673774	1652	2	1580	NZ_FRAS01000061.1	1557	1	114	NZ_FRAS01000063.1	1587	2531	0	95.526	CP006587.1299020.1301934	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. APR13	74496	74496	f	f	t	163033	163033	Contig	IMG-taxon 2585428192 annotated assembly	na	PRJNA224116	SAMN02746009	64	163033	none	2016-12-03	GCA_900142395.1	none	full	none	none	none	0	0	Hymenobacter psychrotolerans DSM 18569	4169	representative genome	9	none	none	none	none	none	2016/12/03	0	344998	2	DSM 18569	DOE - JOINT GENOME INSTITUTE	1121959	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter psychrotolerans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter psychrotolerans;x__Hymenobacter psychrotolerans DSM 18569	0	4767747	11	44	assembly from type material	4767747	0	FRAS00000000.1	4252	64	3084	2	1232	2237	0	99.432	1127832	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Hymenobacter;s__	1262	NZ_FRAS01000056.1	1234	2241	0	99.433	DQ177475.1.1484	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter psychrotolerans	0	19	44	0
+RS_GCF_900129015.1	0	100	0.49	302	p__Bacteroidetes (UID2591)	203	0	4860202	85.87901916100392	34	2830804	50.01986974143185	5659359	RS_GCF_001953305.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Cnuella;s__Cnuella takakiae	type strain of species	LPSN	t	7	7	575358	575358	5556	1	2881	NZ_FQUO01000031.1	5556	1	109	NZ_FQUO01000031.1	2881	5321	0	100	FQUO01000031.273.3163	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Cnuella;Cnuella takakiae	166451	166451	t	f	f	321573	321573	Contig	IMG-taxon 2695420933 annotated assembly	na	PRJNA224116	SAMN05444008	34	321573	none	2016-12-03	GCA_900129015.1	none	full	none	none	none	0	0	Cnuella takakiae	4692	representative genome	3	none	none	none	none	none	2016/12/03	0	1302690	1	DSM 26897	DOE - JOINT GENOME INSTITUTE	1302690	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Cnuella;s__Cnuella takakiae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Cnuella;s__Cnuella takakiae	0	5659359	11	54	assembly from type material	5659359	0	FQUO00000000.1	4760	34	5556	1	1472	2344	0	95.448	138295	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Flavisolibacter;s__	1529	NZ_FQUO01000031.1	1490	2747	0	99.933	KC560021.1.1493	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Cnuella;Cnuella takakiae	0	19	53	0
+RS_GCF_900142405.1	0	99.67	1.64	571	s__algicola (UID2846)	303	0	4102374	91.48104160246258	24	2023208	45.14783223424652	4484398	RS_GCF_003584105.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Muricauda;s__Muricauda taeanensis	type strain of species	LPSN	f	5	5	755669	755669	276994	2	2801	NZ_FRAT01000008.1	276994	2	108	NZ_FRAT01000008.1	2801	5173	0	100	FRAT01000019.2201.5016	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Muricauda;Muricauda antarctica	186720	224219	t	f	f	281474	321450	Scaffold	IMG-taxon 2671180021 annotated assembly	na	PRJNA224116	SAMN05216293	24	281474	none	2016-12-03	GCA_900142405.1	none	full	none	none	none	0	1	Muricauda antarctica	4006	na	8	20	5	321450	276994	191911	2016/12/03	4	1055723	4	CGMCC 1.12174	DOE - JOINT GENOME INSTITUTE	1055723	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Muricauda;s__Muricauda antarctica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Muricauda;s__Muricauda antarctica	3102	4484398	11	39	assembly from type material	4481296	0	FRAT00000000.1	4089	20	276994	4	1475	2724	0	100	1121830	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Muricauda;s__	1514	NZ_FRAT01000008.1	1475	2724	0	100	JN166984.1.1478	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Muricauda;Muricauda antarctica	3102	19	39	0
+RS_GCF_001811695.1	0	99.03	0.54	839	g__Bacteroides (UID2691)	309	0	5382243	89.14233443660348	254	2547406	42.25178915355306	6037808	RS_GCF_900106755.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides faecis	not type material	none	f	24	16	259861	314756	2925	1	2872	NZ_KV806159.1	none	0	none	none	2872	5304	0	100	LTFO01000139.12.2891	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides sp. HMSC068A09	23736	36154	f	f	t	74263	140089	Scaffold	ASM181169v1	na	PRJNA224116	SAMN04477629	254	74263	none	2016-10-21	GCA_001811695.1	none	full	none	wound abdominal	none	0	0	Bacteroides sp. HMSC068A09	4837	na	2	167	16	140089	71737	28731	2016/10/21	87	1739319	1	HMSC068A09	The Genome Institute at Washington University	1739319	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. HMSC068A09	8700	6037808	11	62	none	6029108	0	LTFO00000000.1	4946	167	1904	1	1521	2691	0	98.619	239872	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1526	NZ_KV806060.1	1527	2708	0	98.69	CP012937.5517779.5519304	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides thetaiotaomicron	8700	19	62	0
+RS_GCF_001761325.1	0	98.99	0	548	f__Flavobacteriaceae (UID2845)	298	0	3137498	91.57578159796995	1	1039919	30.352655276140194	3426122	RS_GCF_001761325.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Urechidicola;s__Urechidicola croceus	type strain of species	LPSN	t	1	1	3426122	3426122	3426122	2	2865	NZ_CP017478.1	3426122	2	101	NZ_CP017478.1	2865	5291	0	100	CP017478.125899.128780	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Lutibacter;Lutibacter sp. LPB0138	3426122	3426122	t	f	f	3426122	3426122	Complete Genome	ASM176132v1	na	PRJNA224116	SAMN05726020	none	none	South Korea	2016-10-12	GCA_001761325.1	none	full	none	spoon worm	none	1	1	Urechidicola croceus	3062	representative genome	6	1	1	3426122	3426122	3426122	2016/10/12	0	1850246	2	LPB0138	Korea University	1850246	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Urechidicola;s__Urechidicola croceus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Urechidicola;s__Urechidicola croceus	0	3426122	11	39	assembly from type material	3426122	0	none	3031	1	3426122	2	none	none	none	none	none	none	1519	NZ_CP017478.1	1519	2806	0	100	CP017478.1446549.1448076	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;uncultured;Lutibacter sp. LPB0138	0	19	39	0
+RS_GCF_900115315.1	0	100	1.43	316	p__Bacteroidetes (UID2605)	210	0	2353225	88.61124844813348	39	1175179	44.25164543978118	2655673	RS_GCF_001553545.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga haemolytica	type strain of species	LPSN	f	6	6	347427	347427	5339	1	2833	NZ_FOVX01000028.1	none	0	none	none	2833	5232	0	100	LT906449.1020641.1023484	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga haemolytica	68094	68094	f	f	t	153291	153291	Contig	IMG-taxon 2693429878 annotated assembly	na	PRJNA224116	SAMN05444369	39	153291	none	2016-11-02	GCA_900115315.1	none	full	none	none	none	0	0	Capnocytophaga haemolytica	2317	na	3	none	none	none	none	none	2016/11/02	0	45243	1	DSM 11385	DOE - JOINT GENOME INSTITUTE	45243	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga haemolytica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga haemolytica	0	2655673	11	43	assembly from type material	2655673	0	FOVX00000000.1	2424	39	5339	1	1476	2726	0	100	1148289	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1514	NZ_FOVX01000028.1	1514	2796	0	100	CP014227.838676.840200	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga haemolytica	0	19	43	0
+RS_GCF_900141785.1	0	99.62	0.46	496	s__algicola (UID2847)	263	0	4856302	90.85149080906116	30	1920342	35.932492625327335	5345319	RS_GCF_900141785.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina spongiae	type strain of species	LPSN	f	5	5	1036089	1036089	4338	1	2808	NZ_FQYP01000021.1	1036089	4	103	NZ_FQYP01000001.1	2808	5186	0	100	FQYP01000021.259.3081	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Aquimarina spongiae	178143	190904	f	f	t	410840	410840	Scaffold	IMG-taxon 2622736502 annotated assembly	na	PRJNA224116	SAMN04488508	30	410840	none	2016-12-03	GCA_900141785.1	none	full	none	none	none	0	1	Aquimarina spongiae	4645	representative genome	7	28	5	410840	363308	109293	2016/12/03	2	570521	1	DSM 22623	DOE - JOINT GENOME INSTITUTE	570521	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina spongiae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aquimarina;s__Aquimarina spongiae	1014	5345319	11	39	assembly from type material	5344305	0	FQYP00000000.1	4742	28	4338	1	685	1253	0	99.708	312481	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	720	NZ_FQYP01000021.1	685	1253	0	99.708	FM180520.1.1482	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aquimarina;Flavobacteria bacterium B6 ZZ-2008	1014	19	39	0
+RS_GCF_001936575.1	0	99.55	0.53	548	f__Flavobacteriaceae (UID2845)	298	0	5118821	90.78463797140405	102	1740538	30.8692396560598	5638422	RS_GCF_001936575.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum agarivorans	type strain of species	LPSN	f	13	13	411435	411435	5389	1	2773	NZ_MSMP01000073.1	5389	1	104	NZ_MSMP01000073.1	2773	5121	0	100	MSMP01000073.2317.5100	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. HZ1	55278	55278	t	f	f	138449	138449	Contig	ASM193657v1	na	PRJNA224116	SAMN06187576	102	138449	China: Shandong Province	2017-01-05	GCA_001936575.1	none	full	none	leaf	none	0	1	Tenacibaculum agarivorans	4544	representative genome	3	none	none	none	none	none	2017/01/05	0	1908389	1	HZ1	Shandong University at Weihai	1908389	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum agarivorans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum agarivorans	0	5638422	11	49	assembly from type material	5638422	0	MSMP00000000.1	4650	102	5389	1	1475	2455	0	96.746	1131931	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	1515	NZ_MSMP01000073.1	1498	2767	0	100	MSMP01000073.291.1788	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. HZ1	0	19	48	0
+GB_GCA_001896655.1	0	100	0.55	273	k__Bacteria (UID2570)	183	0	2615431	91.38358147836016	47	1065457	37.22723962941067	2862036	RS_GCF_001282625.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Fermentimonas;s__Fermentimonas massiliensis	not type material	none	f	7	7	396836	396836	none	0	none	none	none	0	none	none	none	none	none	none	none	none	60894	60894	f	f	t	151628	151628	Contig	ASM189665v1	na	PRJNA315143	SAMN06018902	47	151628	USA	2016-12-09	GCA_001896655.1	derived from metagenome	full	EBM-41	sludge from a mesophilic anaerobic wastewater digester enriched on phosphite and carbon dioxide	37.825917 N 122.295833 W	0	none	Proteiniphilum sp. EBM-41	0	na	none	none	none	none	none	none	2016/12/09	0	1918498	none	EBM-41	UC Berkeley	1918498	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;x__unclassified Proteiniphilum;s__Proteiniphilum sp. EBM-41	0	2862036	none	none	none	2862036	0	MPOX00000000.1	2445	47	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	40	0
+GB_GCA_001769775.1	127	78.52	1.94	316	p__Bacteroidetes (UID2605)	210	16.67	1910776	91.1291080271216	308	822991	39.40621887688654	2096779	GB_GCA_003542575.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Bact-08;s__Bact-08 sp003542575	not type material	none	f	65	38	52861	59692	none	0	none	none	none	0	none	none	none	none	none	none	none	none	6781	14460	f	f	t	10274	18762	Scaffold	ASM176977v1	na	PRJNA288027	SAMN04314443	308	10274	USA: Rifle; CO	2016-10-18	GCA_001769775.1	derived from metagenome	full	none	Rifle well CD01 at 16ft depth; 0.2 micron filter at time point B	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium RIFOXYB2_FULL_39_7	1936	na	1	145	38	18762	10528	7181	2016/10/18	163	1797373	1	none	Banfield Lab, University of California, Berkeley	1797373	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium RIFOXYB2_FULL_39_7	8172	2096779	11	23	none	2088607	0	MEPK00000000.1	1963	145	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	8172	14	24	0
+GB_GCA_001915655.1	266	90.86	0.54	278	k__Bacteria (UID2569)	186	0	3497397	88.08976227027667	262	1719840	43.39609025409765	3970265	RS_GCF_000190535.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinifilaceae;g__Odoribacter;s__Odoribacter splanchnicus	not type material	none	f	47	23	89274	165093	none	0	none	none	165093	3	84	MNQX01000056.1	none	none	none	none	none	none	15127	33363	f	f	t	26033	54323	Scaffold	ASM191565v1	na	PRJNA321218	SAMN05717229	262	26033	none	2016-12-23	GCA_001915655.1	derived from metagenome	full	43_10	healthy adult 3C	none	0	0	Odoribacter sp. 43_10	3418	na	4	119	23	54323	32133	16440	2016/12/23	143	1897010	0	43_10	None	1897010	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Odoribacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Odoribacter;x__unclassified Odoribacter;s__Odoribacter sp. 43_10	6877	3970265	11	47	none	3963388	0	MNQX00000000.1	3622	119	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	6877	18	48	0
+GB_GCA_001768275.1	456	77.44	0	273	k__Bacteria (UID2570)	183	0	2731677	88.87146891782288	764	1408708	46.17922893877542	3073739	GB_GCA_001768325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__Proteiniphilum sp001768325	not type material	none	f	145	69	29466	66431	none	0	none	none	none	0	none	none	none	none	none	none	none	none	3993	12006	f	f	t	6779	13730	Scaffold	ASM176827v1	na	PRJNA288027	SAMN04314192	764	6779	USA: Rifle; CO	2016-10-18	GCA_001768275.1	derived from metagenome	full	none	Rifle well CD01 at time point 3 / C; 5m depth; 0.1 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWC1_47_7	2637	na	1	256	69	13730	8728	6301	2016/10/18	508	1797323	1	none	Banfield Lab, University of California, Berkeley	1797323	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWC1_47_7	22760	3073739	11	34	none	3050979	0	MENM00000000.1	2764	256	11004	1	none	none	none	none	none	none	1528	MENM01000217.1	1528	2822	0	100	MENM01000217.439.1980	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Proteiniphilum;Bacteroidetes bacterium GWC1_47_7	22760	18	33	0
+GB_GCA_001708385.1	0	99.65	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	3735383	90.16561737683818	1	1617742	39.04946458942523	4142802	GB_GCA_001708385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum_A	not type material	none	f	1	1	4142802	4142802	4142802	3	2868	CP012388.1	4142802	3	103	CP012388.1	2868	5297	0	100	CP012586.3716534.3719422	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	4142802	4142802	t	f	f	4142802	4142802	Complete Genome	ASM170838v1	na	PRJNA292683	SAMN03983344	none	none	none	2016-08-23	GCA_001708385.1	none	full	none	none	none	1	0	Flavobacterium psychrophilum	3440	na	9	1	1	4142802	4142802	4142802	2016/08/23	0	96345	3	Z1	BioInformatics Center	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	4142802	11	48	none	4142802	0	none	3627	1	4142802	3	none	none	none	none	none	none	1512	CP012388.1	1512	2793	0	100	CP012586.2970877.2972402	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	48	0
+GB_GCA_001431805.1	0	99.65	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	3734981	90.16849402639741	1	1617499	39.04904708195404	4142224	GB_GCA_001708385.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum_A	not type material	none	f	1	1	4142224	4142224	4142224	3	2868	CP012586.1	4142224	3	103	CP012586.1	2868	5297	0	100	CP012586.3716534.3719422	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	4142224	4142224	t	f	f	4142224	4142224	Complete Genome	ASM143180v1	na	PRJNA293776	SAMN04009762	none	none	China:Nanjing	2015-11-04	GCA_001431805.1	none	full	none	soil	none	1	0	Flavobacterium psychrophilum	3442	na	9	1	1	4142224	4142224	4142224	2015/11/04	0	96345	3	Z2	BioInformatics Center	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	4142224	11	48	none	4142224	0	none	3628	1	4142224	3	none	none	none	none	none	none	1512	CP012586.1	1512	2793	0	100	CP012586.2970877.2972402	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	48	0
+GB_GCA_001899685.1	9	100	0.74	302	p__Bacteroidetes (UID2591)	203	0	5349744	89.07120593032833	71	2643774	44.02531705434128	6006143	GB_GCA_001899685.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Agriterribacter;s__Agriterribacter sp001899685	not type material	none	f	11	7	484888	597497	40201	1	293	MKWG01000039.1	40201	1	93	MKWG01000039.1	293	514	2.31e-144	98.294	FUWH01000002.1.2740	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Sediminibacterium;Sediminibacterium ginsengisoli	84579	130568	f	f	t	148622	298305	Scaffold	ASM189968v1	na	PRJNA279279	SAMN05660627	71	148622	South Africa: University of Cape Town	2016-12-09	GCA_001899685.1	derived from metagenome	full	44-15	Thiocyanate ramp bioreactor	33.9575 S 18.4606 E	0	0	Sphingobacteriales bacterium 44-15	4846	na	2	46	7	298305	164340	100614	2016/12/09	25	1895837	0	44-15	Banfield Lab, University of California, Berkeley	1895837	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;x__unclassified Sphingobacteriales;s__Sphingobacteriales bacterium 44-15	1012	6006143	11	40	none	6005131	0	MKWG00000000.1	4922	46	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1012	18	40	0
+GB_GCA_001769655.1	33	96.99	0.55	274	k__Bacteria (UID2570)	183	0	3575117	90.80806115513218	55	1448489	36.79495591557392	3937004	GB_GCA_001769655.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__2-12-FULL-37-12;f__2-12-FULL-37-12;g__2-12-FULL-37-12;s__2-12-FULL-37-12 sp001769655	not type material	none	f	8	8	468038	468038	26213	1	2484	MEPC01000031.1	none	0	none	none	2484	4588	0	100	MEPC01000031.23719.26213	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_37_12	71576	91558	f	f	t	143403	161655	Scaffold	ASM176965v1	na	PRJNA288027	SAMN04315811	55	143403	USA: Rifle; CO	2016-10-18	GCA_001769655.1	derived from metagenome	full	none	Rifle well FP-101 under low O2 conditions; 1.2 micron filter; full assembly	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_37_12	3014	na	4	43	8	161655	84585	44952	2016/10/18	12	1797365	1	none	Banfield Lab, University of California, Berkeley	1797365	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_37_12	320	3937004	11	42	none	3936684	0	MEPC00000000.1	3048	43	64700	1	none	none	none	none	none	none	1524	MEPC01000039.1	1524	2815	0	100	MEPC01000039.52556.54084	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_37_12	320	19	43	0
+GB_GCA_001769075.1	72	97.12	1.08	278	k__Bacteria (UID2569)	186	0	4299979	89.0655548469401	257	1934328	40.10752966862989	4827881	GB_GCA_003512955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__SZUA-534;g__GWE2-40-63;s__GWE2-40-63 sp003512955	not type material	none	f	48	38	95366	170246	43325	1	403	MENO01000173.1	43325	1	105	MENO01000173.1	393	599	8.76e-170	94.148	AP018042.2393730.2396603	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Marinifilum;Marinifilaceae bacterium SPP2	18766	27587	f	f	t	33287	40770	Scaffold	ASM176907v1	na	PRJNA288027	SAMN04313805	257	33287	USA: Rifle; CO	2016-10-18	GCA_001769075.1	derived from metagenome	full	none	Rifle well CD01 at time point 3 / C; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWC2_40_13	3839	na	2	175	38	40770	22799	12894	2016/10/18	82	1797325	0	none	Banfield Lab, University of California, Berkeley	1797325	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWC2_40_13	4954	4827881	11	40	none	4822927	0	MENO00000000.1	3927	175	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4954	19	40	0
+GB_GCA_001898575.1	55	100	0.89	454	o__Cytophagales (UID2936)	336	0	7713336	88.91083610238236	168	4184645	48.25894405777633	8675361	GB_GCA_001898575.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma sp001898575	not type material	none	f	18	10	409122	746668	none	0	none	none	none	0	none	none	none	none	none	none	none	none	51614	97475	f	f	t	169774	296914	Scaffold	ASM189857v1	na	PRJNA279279	SAMN05660572	168	169774	South Africa: University of Cape Town	2016-12-09	GCA_001898575.1	derived from metagenome	full	48-14	Ammonium sulfate bioreactor	33.9575 S 18.4606 E	0	0	Spirosoma sp. 48-14	7154	na	1	89	10	296914	139820	73943	2016/12/09	79	1895854	1	48-14	Banfield Lab, University of California, Berkeley	1895854	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;x__unclassified Spirosoma;s__Spirosoma sp. 48-14	4074	8675361	11	49	none	8671287	0	MKUD00000000.1	7432	89	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4074	19	49	0
+GB_GCA_001899125.1	0	100	0.55	273	k__Bacteria (UID2570)	183	0	3958939	89.75574001222456	51	1646581	37.33086876322896	4410792	RS_GCF_004569505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__Dysgonomonas sp900079735	not type material	none	f	8	8	392356	392356	87305	2	2876	MKVC01000032.1	87305	1	105	MKVC01000032.1	2876	5312	0	100	MKVC01000032.741.3629	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Dysgonomonas;Dysgonomonas sp. 37-18	86485	88215	f	f	t	201974	201974	Scaffold	ASM189912v1	na	PRJNA279279	SAMN05660597	51	201974	South Africa: University of Cape Town	2016-12-09	GCA_001899125.1	derived from metagenome	full	37-18	Thiocyanate ramp bioreactor	33.9575 S 18.4606 E	0	0	Dysgonomonas sp. 37-18	3654	na	5	50	8	201974	107047	64941	2016/12/09	1	1895907	2	37-18	Banfield Lab, University of California, Berkeley	1895907	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Dysgonomonas;x__unclassified Dysgonomonas;s__Dysgonomonas sp. 37-18	16	4410792	11	41	none	4410776	0	MKVC00000000.1	3772	50	1008	2	none	none	none	none	none	none	954	MKVC01000042.1	951	1605	0	97.161	AJ318147.1.1483	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Dysgonomonas;uncultured bacterium	16	19	41	0
+GB_GCA_001898505.1	0	99.51	3.37	302	p__Bacteroidetes (UID2591)	203	26.67	7306146	92.50093942411023	29	3973800	50.3112516509606	7898456	GB_GCA_001898505.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Puia;s__Puia sp001898505	not type material	none	f	6	6	1138547	1138547	1138547	1	320	MKTZ01000001.1	1138547	1	98	MKTZ01000001.1	320	520	5.47e-146	95.938	BBWV01000016.2443.5319	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Flavihumibacter;Flavihumibacter petaseus NBRC 106054	272359	292535	f	f	t	496989	498715	Scaffold	ASM189850v1	na	PRJNA279279	SAMN05660568	29	496989	South Africa: University of Cape Town	2016-12-09	GCA_001898505.1	derived from metagenome	full	50-39	Ammonium sulfate bioreactor	33.9575 S 18.4606 E	0	0	Sphingobacteriales bacterium 50-39	6525	na	3	27	6	498715	354740	236557	2016/12/09	2	1895841	1	50-39	Banfield Lab, University of California, Berkeley	1895841	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;x__unclassified Sphingobacteriales;s__Sphingobacteriales bacterium 50-39	24	7898456	11	45	none	7898432	0	MKTZ00000000.1	6622	27	170776	1	none	none	none	none	none	none	937	MKTZ01000003.1	933	1712	0	99.786	GU940802.1.1399	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Puia;uncultured bacterium	24	19	46	0
+GB_GCA_001915385.1	1	81.32	1.13	406	o__Bacteroidales (UID2617)	265	0	2323480	87.51228327482183	40	1352164	50.934182334310705	2655033	GB_GCA_001915385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__JAGBWK01;s__JAGBWK01 sp001915385	not type material	none	f	7	6	265867	265867	none	0	none	none	214933	1	95	MNQK01000027.1	none	none	none	none	none	none	66368	75858	f	f	t	128914	197165	Scaffold	ASM191538v1	na	PRJNA321218	SAMN05717216	40	128914	none	2016-12-23	GCA_001915385.1	derived from metagenome	full	52_46	healthy adult 3C	none	0	0	Bacteroidales bacterium 52_46	2174	na	2	35	6	197165	83890	50605	2016/12/23	5	1897040	0	52_46	None	1897040	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium 52_46	304	2655033	11	46	none	2654729	0	MNQK00000000.1	2230	35	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	304	17	46	0
+GB_GCA_001769245.1	0	99.46	2.15	278	k__Bacteria (UID2569)	186	25	5469757	90.4904685480366	55	2542520	42.06414976407037	6044567	GB_GCA_003506435.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Prolixibacteraceae;g__GWE2-42-39;s__GWE2-42-39 sp003506435	not type material	none	f	11	10	533498	533498	none	0	none	none	none	0	none	none	none	none	none	none	none	none	109897	116241	f	f	t	168276	207574	Scaffold	ASM176924v1	na	PRJNA288027	SAMN04313811	55	168276	USA: Rifle; CO	2016-10-18	GCA_001769245.1	derived from metagenome	full	none	Rifle well CD01 at time point 6 / F; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWF2_42_66	4852	na	0	52	10	207574	114952	65819	2016/10/18	3	1797351	0	none	Banfield Lab, University of California, Berkeley	1797351	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWF2_42_66	180	6044567	11	48	none	6044387	0	MEOO00000000.1	4887	52	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	180	19	47	0
+GB_GCA_001871275.1	27	91.59	2.04	548	f__Flavobacteriaceae (UID2845)	298	55.56	2257353	91.8285381409195	164	861121	35.033386886335684	2458226	GB_GCA_002793215.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__CG1-02-35-72;s__CG1-02-35-72 sp002793215	not type material	none	f	36	35	94976	94976	24819	1	2874	MNUW01000155.1	24819	1	104	MNUW01000155.1	2874	5308	0	100	MNUW01000155.757.3647	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Lutibacter;Flavobacteriaceae bacterium CG1_02_35_72	14987	15757	f	f	t	21104	21826	Scaffold	ASM187127v1	na	PRJNA297582	SAMN04328209	164	21104	USA: Crystal Geyser near Green River; Utah	2016-11-09	GCA_001871275.1	derived from metagenome	full	CG1_02_35_72	groundwater filtered through a a 3.0 um filter and then through a 0.2 um filter	38.56 N 110.8 W	0	1	Flavobacteriaceae bacterium CG1_02_35_72	2233	na	4	156	35	21826	12625	7246	2016/11/09	8	1805158	2	CG1_02_35_72	Banfield Lab, University of California, Berkeley	1805158	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium CG1_02_35_72	198	2458226	11	31	none	2458028	0	MNUW00000000.1	2290	156	47135	1	none	none	none	none	none	none	1444	MNUW01000083.1	1444	2667	0	100	MNUW01000083.45682.47135	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maritimimonas;Flavobacteriaceae bacterium CG1_02_35_72	198	16	31	0
+GB_GCA_001768435.1	0	96.9	1.43	316	p__Bacteroidetes (UID2605)	210	0	2338484	92.92811602404028	17	983534	39.084574346543214	2516444	GB_GCA_003542575.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Bact-08;s__Bact-08 sp003542575	not type material	none	f	4	4	572793	572793	none	0	none	none	none	0	none	none	none	none	none	none	none	none	148025	157277	f	f	t	192122	192122	Scaffold	ASM176843v1	na	PRJNA288027	SAMN04313840	17	192122	USA: Rifle; CO	2016-10-18	GCA_001768435.1	derived from metagenome	full	none	Rifle well CD01 at time point 5 / E; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWE2_39_28	2183	na	2	16	4	192122	119668	81890	2016/10/18	1	1797333	2	none	Banfield Lab, University of California, Berkeley	1797333	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWE2_39_28	19	2516444	11	35	none	2516425	0	MENW00000000.1	2226	16	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	19	19	36	0
+GB_GCA_001802265.1	7	100	0	277	k__Bacteria (UID2569)	185	0	4095817	90.37283327739941	13	1940365	42.81393980300908	4532133	GB_GCA_002243285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Crocinitomicaceae;g__Fluviicola;s__Fluviicola riflensis	not type material	none	f	2	2	1282224	1492966	none	0	none	none	none	0	none	none	none	none	none	none	none	none	348622	377677	f	f	t	989415	1282224	Scaffold	ASM180226v1	na	PRJNA288027	SAMN04314877	13	989415	USA: Rifle; CO	2016-10-20	GCA_001802265.1	derived from metagenome	full	none	Rifle well FP-101 under high O2 conditions; 0.1 micron filter; full assembly	39.5369 N 107.7828 W	0	0	Fluviicola sp. RIFCSPHIGHO2_01_FULL_43_53	3845	na	0	12	2	1282224	327778	165220	2016/10/20	1	1798017	0	none	Banfield Lab, University of California, Berkeley	1798017	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__Fluviicola;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__Fluviicola;x__unclassified Fluviicola;s__Fluviicola sp. RIFCSPHIGHO2_01_FULL_43_53	39	4532133	11	32	none	4532094	0	MGWL00000000.1	3927	12	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	39	19	32	0
+GB_GCA_001769865.1	169	97.85	1.61	278	k__Bacteria (UID2569)	186	0	4559403	89.56890499070208	197	2035555	40.02907658729043	5090386	GB_GCA_003512955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__SZUA-534;g__GWE2-40-63;s__GWE2-40-63 sp003512955	not type material	none	f	31	17	138247	223418	none	0	none	none	none	0	none	none	none	none	none	none	none	none	25814	61329	f	f	t	49490	100166	Scaffold	ASM176986v1	na	PRJNA288027	SAMN04314558	197	49490	USA: Rifle; CO	2016-10-18	GCA_001769865.1	derived from metagenome	full	none	Rifle well CD01 at 16ft depth; 0.2 micron filter at time point C	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium RIFOXYC2_FULL_40_12	3980	na	0	83	17	100166	58135	33476	2016/10/18	114	1797376	0	none	Banfield Lab, University of California, Berkeley	1797376	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium RIFOXYC2_FULL_40_12	5026	5090386	11	46	none	5085360	0	MEPN00000000.1	4075	83	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5026	19	45	0
+GB_GCA_001915285.1	13	95.9	1.22	314	p__Bacteroidetes (UID2605)	208	50	2827612	89.48496047627215	81	1855940	58.75643183701148	3159874	GB_GCA_025145845.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes shahii	not type material	none	f	9	9	250626	250626	none	0	none	none	37428	1	109	MNQF01000014.1	none	none	none	none	none	none	38996	47162	f	f	t	90673	95251	Scaffold	ASM191528v1	na	PRJNA321218	SAMN05717211	81	90673	none	2016-12-23	GCA_001915285.1	derived from metagenome	full	56_sp_Nov_56_25	healthy adult 3C	none	0	0	Alistipes sp. 56_sp_Nov_56_25	2542	na	4	67	9	95251	52879	23610	2016/12/23	14	1896969	2	56_sp_Nov_56_25	None	1896969	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__unclassified Alistipes;s__Alistipes sp. 56_sp_Nov_56_25	1160	3159874	11	42	none	3158714	0	MNQF00000000.1	2617	67	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1160	19	42	0
+GB_GCA_001769505.1	0	98.1	0.71	316	p__Bacteroidetes (UID2605)	210	0	3591909	91.32163190195591	71	1285331	32.67970416339001	3933251	GB_GCA_001769505.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__GWF2-33-38;g__GWF2-33-38;s__GWF2-33-38 sp001769505	not type material	none	f	17	17	172710	172710	17759	1	340	MEOF01000042.1	17759	1	104	MEOF01000042.1	330	499	7.61e-140	93.939	MWEU01000022.554.3421	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bact-19;Bacteroidetes bacterium ADurb.Bin028	55396	56189	f	f	t	84176	84176	Scaffold	ASM176950v1	na	PRJNA288027	SAMN04313819	71	84176	USA: Rifle; CO	2016-10-18	GCA_001769505.1	derived from metagenome	full	none	Rifle well CD01 at time point 6 / F; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWF2_33_38	3083	na	3	70	17	84176	46264	31683	2016/10/18	1	1797342	1	none	Banfield Lab, University of California, Berkeley	1797342	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWF2_33_38	134	3933251	11	34	none	3933117	0	MEOF00000000.1	3125	70	27183	1	none	none	none	none	none	none	1219	MEOF01000024.1	1219	2252	0	100	MEOF01000024.1.1224	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Ika33;Bacteroidetes bacterium GWF2_33_38	134	19	34	0
+GB_GCA_001768325.1	8	100	0	273	k__Bacteria (UID2570)	183	0	3479067	92.78469538056328	33	1746357	46.57468668524295	3749613	GB_GCA_001768325.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__Proteiniphilum sp001768325	not type material	none	f	6	6	462058	462058	none	0	none	none	none	0	none	none	none	none	none	none	none	none	113624	117175	f	f	t	238275	238275	Scaffold	ASM176832v1	na	PRJNA288027	SAMN04313808	33	238275	USA: Rifle; CO	2016-10-18	GCA_001768325.1	derived from metagenome	full	none	Rifle well CD01 at time point 3 / C; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWC2_46_850	2919	na	2	32	6	238275	115121	63195	2016/10/18	1	1797327	2	none	Banfield Lab, University of California, Berkeley	1797327	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWC2_46_850	21	3749613	11	45	none	3749592	0	MENQ00000000.1	2993	32	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	21	19	44	0
+GB_GCA_001768235.1	9	99.52	2.38	316	p__Bacteroidetes (UID2605)	210	0	3338844	91.18822248671714	49	1226366	33.49944207022676	3661486	GB_GCA_001768235.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA12077;g__UBA12077;s__UBA12077 sp001768235	not type material	none	f	8	7	324530	379564	none	0	none	none	none	0	none	none	none	none	none	none	none	none	74711	101707	f	f	t	123092	128957	Scaffold	ASM176823v1	na	PRJNA288027	SAMN04313836	49	123092	USA: Rifle; CO	2016-10-18	GCA_001768235.1	derived from metagenome	full	none	Rifle well CD01 at time point 2 / B; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWB2_32_14	3052	na	0	36	7	128957	103407	59841	2016/10/18	13	1797321	0	none	Banfield Lab, University of California, Berkeley	1797321	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWB2_32_14	622	3661486	11	44	none	3660864	0	MENK00000000.1	3101	36	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	622	19	44	0
+GB_GCA_001768565.1	9	100	1.08	278	k__Bacteria (UID2569)	186	0	3942216	91.06692151071329	42	1406075	32.48212827446165	4328922	GB_GCA_001768565.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA12077;g__UBA12077;s__UBA12077 sp001768565	not type material	none	f	7	7	487313	487313	174678	1	316	MEOE01000015.1	174678	2	103	MEOE01000015.1	310	433	7.23e-120	91.935	CEGE01000999.165.3034	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;Sunxiuqinia;microbial mat metagenome	103066	120247	f	f	t	199487	227761	Scaffold	ASM176856v1	na	PRJNA288027	SAMN04313820	42	199487	USA: Rifle; CO	2016-10-18	GCA_001768565.1	derived from metagenome	full	none	Rifle well CD01 at time point 6 / F; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWF2_33_16	3507	na	3	36	7	227761	115658	66166	2016/10/18	6	1797341	0	none	Banfield Lab, University of California, Berkeley	1797341	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWF2_33_16	148	4328922	11	42	none	4328774	0	MEOE00000000.1	3551	36	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	148	19	42	0
+GB_GCA_001898145.1	0	99.7	0.6	454	o__Cytophagales (UID2936)	336	0	6981705	90.44759459732214	49	3878325	50.24372903151085	7719061	GB_GCA_001898145.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__Dyadobacter sp001898145	not type material	none	f	6	6	1038679	1038679	27638	1	2807	MKSR01000009.1	none	0	none	none	2807	5184	0	100	MKSR01000009.24781.27599	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Dyadobacter;Dyadobacter sp. 50-39	157531	160813	f	f	t	531197	531197	Scaffold	ASM189814v1	na	PRJNA279279	SAMN05660534	49	531197	South Africa: University of Cape Town	2016-12-09	GCA_001898145.1	derived from metagenome	full	50-39	Thiocyanate stock bioreactor	33.9575 S 18.4606 E	0	0	Dyadobacter sp. 50-39	6416	na	3	48	6	531197	181723	109398	2016/12/09	1	1895756	1	50-39	Banfield Lab, University of California, Berkeley	1895756	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;x__unclassified Dyadobacter;s__Dyadobacter sp. 50-39	38	7719061	11	38	none	7719023	0	MKSR00000000.1	6585	48	27638	1	none	none	none	none	none	none	1504	MKSR01000009.1	1498	2695	0	99.132	KP318954.1.1499	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Dyadobacter;Dyadobacter jiangsuensis	38	19	43	0
+GB_GCA_001769705.1	0	96.24	1.08	278	k__Bacteria (UID2569)	186	0	4550574	90.35641406928053	58	1907784	37.88191497684533	5036249	GB_GCA_001769535.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__GWF2-38-335;g__GWF2-38-335;s__GWF2-38-335 sp001769535	not type material	none	f	12	11	362321	362321	50658	1	352	MEPF01000018.1	50658	1	105	MEPF01000018.1	344	520	6.06e-146	93.895	MWEU01000022.554.3421	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bact-19;Bacteroidetes bacterium ADurb.Bin028	86829	91568	f	f	t	138989	143701	Scaffold	ASM176970v1	na	PRJNA288027	SAMN04314402	58	138989	USA: Rifle; CO	2016-10-18	GCA_001769705.1	derived from metagenome	full	none	Rifle well CD01 at 16ft depth; 1.2 micron filter at time point A	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium RIFOXYA12_FULL_38_20	3860	na	3	55	11	143701	91374	45288	2016/10/18	3	1797368	1	none	Banfield Lab, University of California, Berkeley	1797368	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium RIFOXYA12_FULL_38_20	115	5036249	11	31	none	5036134	0	MEPF00000000.1	3902	55	5629	1	none	none	none	none	none	none	1144	MEPF01000053.1	1143	1541	0	91.076	GQ357022.1.1483	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidetes BD2-2;uncultured bacterium	115	19	32	1
+GB_GCA_001800975.1	25	95.49	1.68	548	f__Flavobacteriaceae (UID2845)	298	0	3184908	89.55593034849933	121	1248647	35.119427152432436	3556334	GB_GCA_001800975.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Lutibacter;s__Lutibacter sp001800975	not type material	none	f	18	16	233466	233466	none	0	none	none	none	0	none	none	none	none	none	none	none	none	29383	36289	f	f	t	64205	66642	Scaffold	ASM180097v1	na	PRJNA288027	SAMN04315779	121	64205	USA: Rifle; CO	2016-10-20	GCA_001800975.1	derived from metagenome	full	none	Rifle well FP-101 under low O2 conditions; 1.2 micron filter; full assembly	39.5369 N 107.7828 W	0	1	Flavobacteria bacterium RIFCSPLOWO2_12_FULL_35_11	3137	na	0	98	16	66642	32529	14896	2016/10/20	23	1798016	0	none	Banfield Lab, University of California, Berkeley	1798016	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;x__unclassified Flavobacteriia;s__Flavobacteria bacterium RIFCSPLOWO2_12_FULL_35_11	878	3556334	11	38	none	3555456	0	MGWK00000000.1	3218	98	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	878	19	38	0
+GB_GCA_001768515.1	9	97.85	2.69	278	k__Bacteria (UID2569)	186	0	3694063	85.51831922096778	70	1878108	43.485019716474525	4319616	GB_GCA_001768515.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__TTA-H9;g__GWE2-42-24;s__GWE2-42-24 sp001768515	not type material	none	f	11	11	502154	502154	52423	1	2882	MEOA01000037.1	52423	1	105	MEOA01000037.1	2882	5323	0	100	MEOA01000037.47530.50417	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;uncultured;Bacteroidetes bacterium GWE2_42_24	61699	64471	t	f	f	120734	120734	Scaffold	ASM176851v1	na	PRJNA288027	SAMN04313832	70	120734	USA: Rifle; CO	2016-10-18	GCA_001768515.1	derived from metagenome	full	none	Rifle well CD01 at time point 5 / E; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWE2_42_24	3358	na	3	67	11	120734	60612	30187	2016/10/18	3	1797337	1	none	Banfield Lab, University of California, Berkeley	1797337	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWE2_42_24	630	4319616	11	43	none	4318986	0	MEOA00000000.1	3521	67	52423	1	none	none	none	none	none	none	1521	MEOA01000037.1	1521	2809	0	100	MEOA01000037.50828.52358	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Lentimicrobiaceae;Lentimicrobium;Bacteroidetes bacterium GWE2_42_24	630	19	43	0
+GB_GCA_001899145.1	0	100	0	277	k__Bacteria (UID2569)	185	0	3246267	92.19337432372946	33	1393238	39.5678104250328	3521150	GB_GCA_001899145.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Crocinitomicaceae;g__40-80;s__40-80 sp001899145	not type material	none	f	3	3	751660	751660	4374	1	2586	MKVF01000013.1	none	0	none	none	2586	4776	0	100	MKVF01000013.1788.4374	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Flavobacteriia bacterium 40-80	106701	110035	f	f	t	529843	529843	Scaffold	ASM189914v1	na	PRJNA279279	SAMN05660600	33	529843	South Africa: University of Cape Town	2016-12-09	GCA_001899145.1	derived from metagenome	full	40-80	Thiocyanate stock bioreactor	33.9575 S 18.4606 E	0	0	Flavobacteriia bacterium 40-80	3060	na	2	32	3	529843	173537	73224	2016/12/09	1	1895763	1	40-80	Banfield Lab, University of California, Berkeley	1895763	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;x__unclassified Flavobacteriia;s__Flavobacteriia bacterium 40-80	10	3521150	11	39	none	3521140	0	MKVF00000000.1	3103	32	4374	1	none	none	none	none	none	none	1386	MKVF01000013.1	1386	2560	0	100	MKVF01000013.81.1474	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Fluviicola;Flavobacteriia bacterium 40-80	10	19	39	0
+GB_GCA_001890965.1	0	98.79	4.22	474	o__Cytophagales (UID2937)	330	0	9825982	86.59887452984596	40	4386398	38.65843943536302	11346547	GB_GCA_001890965.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Microscillaceae;g__Microscilla;s__Microscilla sp001890965	not type material	none	f	5	5	1609407	1609407	3318	1	2840	MLAY01000032.1	3318	3	107	MLAY01000032.1	2840	5245	0	100	MLAY01000032.76.2931	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Microscilla;marine bacterium AO1-C	283663	283663	t	f	f	827170	827170	Contig	ASM189096v1	na	PRJNA344428	SAMN05827322	40	827170	Australia: Central Great Barrier Reef	2016-12-07	GCA_001890965.1	derived from environmental sample	full	AO1-C	non-axenic enrichment culture inoculated from diseased coral	none	0	0	marine bacterium AO1-C	8952	na	6	none	none	none	none	none	2016/12/07	0	1905359	1	AO1-C	Australian Institute of Marine Science	1905359	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;x__unclassified Cytophagaceae;s__marine bacterium AO1-C	0	11346547	11	115	none	11346547	0	MLAY00000000.1	9242	40	1765	1	none	none	none	none	none	none	1497	MLAY01000031.1	1497	2765	0	100	MLAY01000031.210.1714	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Microscilla;marine bacterium AO1-C	0	19	120	0
+GB_GCA_001768455.1	6	97.14	1.11	316	p__Bacteroidetes (UID2605)	210	0	2723566	94.35870892282279	47	1177345	40.80156255035888	2886396	GB_GCA_002842515.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Bact-08;s__Bact-08 sp002842515	not type material	none	f	8	6	249587	313359	none	0	none	none	none	0	none	none	none	none	none	none	none	none	61394	93109	f	f	t	143875	210970	Scaffold	ASM176845v1	na	PRJNA288027	SAMN04313841	47	143875	USA: Rifle; CO	2016-10-18	GCA_001768455.1	derived from metagenome	full	none	Rifle well CD01 at time point 5 / E; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWE2_40_15	2410	na	2	31	6	210970	93442	48278	2016/10/18	16	1797334	2	none	Banfield Lab, University of California, Berkeley	1797334	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWE2_40_15	851	2886396	11	36	none	2885545	0	MENX00000000.1	2450	31	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	851	19	36	0
+GB_GCA_001800985.1	9	100	0	277	k__Bacteria (UID2569)	185	0	4104270	90.39756453617912	7	1943712	42.8109556781487	4540244	GB_GCA_002243285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Crocinitomicaceae;g__Fluviicola;s__Fluviicola riflensis	not type material	none	f	2	2	1741453	1741453	none	0	none	none	none	0	none	none	none	none	none	none	none	none	648604	756707	f	f	t	1282213	1624343	Scaffold	ASM180098v1	na	PRJNA288027	SAMN04315484	7	1282213	USA: Rifle; CO	2016-10-20	GCA_001800985.1	derived from metagenome	full	none	Rifle well FP-101 under high O2 conditions; 0.2 micron filter; full assembly	39.5369 N 107.7828 W	0	0	Candidatus Fluviicola riflensis	3842	na	0	6	2	1624343	493189	426635	2016/10/20	1	1798018	0	none	Banfield Lab, University of California, Berkeley	1798018	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__Fluviicola;s__Candidatus Fluviicola riflensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__Fluviicola;s__Candidatus Fluviicola riflensis	14	4540244	11	32	none	4540230	0	MGWM00000000.1	3927	6	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	14	19	32	0
+GB_GCA_001941205.1	28	98.37	1.51	406	o__Bacteroidales (UID2617)	265	50	2461470	89.45175923937278	65	1409255	51.23186896321316	2751729	GB_GCA_944321825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Amulumruptor;s__Amulumruptor caecigallinarius	not type material	none	f	11	8	290662	379468	none	0	none	none	none	0	none	none	none	none	none	none	none	none	42319	59820	f	f	t	71809	104722	Scaffold	ASM194120v1	na	PRJNA357304	SAMN06140838	65	71809	Australia: Brisbane	2017-01-10	GCA_001941205.1	derived from metagenome	full	Zagget9	feces from Zagget the koala	none	0	none	Synergistes sp. Zagget9	0	na	none	46	8	104722	56434	29271	2017/01/10	19	1930003	none	Zagget9	University of Queensland	1930003	d__Bacteria;p__Synergistetes;c__Synergistia;o__Synergistales;f__Synergistaceae;g__Synergistes;s__	d__Bacteria;p__Synergistetes;c__Synergistia;o__Synergistales;f__Synergistaceae;g__Synergistes;x__unclassified Synergistes;s__Synergistes sp. Zagget9	962	2751729	none	none	none	2750767	0	MSHK00000000.1	2508	46	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	962	19	45	0
+GB_GCA_001769555.1	135	96.51	3.76	278	k__Bacteria (UID2569)	186	0	3737249	85.53762088507801	207	1894112	43.399168315806286	4369129	GB_GCA_001768515.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__TTA-H9;g__GWE2-42-24;s__GWE2-42-24 sp001768515	not type material	none	f	36	19	132784	286164	none	0	none	none	none	0	none	none	none	none	none	none	none	none	21084	43691	f	f	t	37587	76253	Scaffold	ASM176955v1	na	PRJNA288027	SAMN04313830	207	37587	USA: Rifle; CO	2016-10-18	GCA_001769555.1	derived from metagenome	full	none	Rifle well CD01 at time point 6 / F; 5m depth; 0.2 filter	39.5369 N 107.7828 W	0	0	Bacteroidetes bacterium GWF2_43_11	3459	na	0	100	19	76253	41312	23082	2016/10/18	107	1797352	0	none	Banfield Lab, University of California, Berkeley	1797352	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium GWF2_43_11	4597	4369129	11	45	none	4364532	0	MEOP00000000.1	3625	100	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4597	18	45	0
+RS_GCF_002160215.1	0	99.25	1.51	490	o__Bacteroidales (UID2657)	267	0	4174734	88.20327046874098	156	2170660	45.86143957331828	4733083	RS_GCF_014837065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola intestinalis	not type material	none	f	24	24	208435	208435	3156	2	2311	NZ_NFKD01000123.1	5485	5	105	NZ_NFKD01000112.1	2323	3046	0	90.529	CP002530.3409442.3412319	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides salanitronis DSM 18170	30340	30340	f	f	t	58247	58247	Contig	ASM216021v1	na	PRJNA224116	SAMN06473653	156	58247	none	2017-05-30	GCA_002160215.1	none	full	none	caecum	none	0	0	Bacteroides sp. An19	4115	na	10	none	none	none	none	none	2017/05/30	0	1965580	2	An19	Veterinary Research Institute	1965580	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. An19	0	4733083	11	73	none	4733083	0	NFKD00000000.1	4258	156	937	2	933	1701	0	99.571	157533	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	934	NZ_NFKD01000140.1	932	1705	0	99.678	FJ508843.1.1381	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;uncultured bacterium	0	19	74	0
+RS_GCF_002022125.1	10	100	0	152	k__Bacteria (UID2565)	93	0	3753577	89.01651046310877	1	1504293	35.67456619022887	4216720	RS_GCF_001521765.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia ursingii	not type material	none	f	1	1	4216720	4216720	4216720	5	2764	NZ_CP016377.1	4216720	5	101	NZ_CP016377.1	2764	5101	0	100	CP016377.1570736.1573511	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia ursingii	4216720	4216720	t	f	f	4216720	4216720	Complete Genome	ASM202212v1	na	PRJNA224116	SAMN05281858	none	none	Denmark	2017-03-06	GCA_002022125.1	none	full	none	none	none	1	0	Elizabethkingia ursingii	3787	na	15	1	1	4216720	4216720	4216720	2017/03/06	0	1756150	5	G4123	CDC	1756150	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia ursingii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia ursingii	0	4216720	11	52	none	4216720	0	none	3845	1	4216720	5	none	none	none	none	none	none	1513	NZ_CP016377.1	1513	2795	0	100	CP016377.312029.313550	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia ursingii	0	19	51	0
+RS_GCF_900176595.1	0	100	0.19	439	o__Cytophagales (UID2938)	266	0	5297330	88.4776594047797	1	2358229	39.388534840352456	5987195	RS_GCF_900176595.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Aquiflexum;s__Aquiflexum balticum	type strain of species	LPSN	t	1	1	5987095	5987195	5987195	4	2892	NZ_LT838813.1-#3	5987195	4	95	NZ_LT838813.1	2892	5341	0	100	LT838813.2059200.2062093	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Aquiflexum;Aquiflexum balticum DSM 16537	5987095	5987195	t	f	f	5987095	5987195	Chromosome	IMG-taxon 2506520046 annotated assembly	na	PRJNA224116	SAMN00777080	1	5987095	none	2017-04-09	GCA_900176595.1	none	full	none	none	none	1	0	Aquiflexum balticum DSM 16537	5006	representative genome	12	1	1	5987195	5987195	5987195	2017/04/09	1	280473	4	DSM 16537	DOE - JOINT GENOME INSTITUTE	758820	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Aquiflexum;s__Aquiflexum balticum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Aquiflexum;s__Aquiflexum balticum;x__Aquiflexum balticum DSM 16537	100	5987195	11	45	assembly from type material	5987095	0	none	5083	1	5987195	4	none	none	none	none	none	none	1521	NZ_LT838813.1	1460	2673	0	99.726	AJ744861.1.1459	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Aquiflexum;Aquiflexum balticum	100	19	44	0
+RS_GCF_002159585.1	0	97.86	0.48	316	p__Bacteroidetes (UID2605)	210	0	2110578	90.45502273613653	40	1143482	49.00728156380047	2333290	RS_GCF_002159555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Merdivivens;s__Merdivivens faecigallinarum	not type material	none	f	5	5	283958	283958	1565	3	1563	NZ_NFIX01000028.1	none	0	none	none	1600	1014	0	78.938	CDYI01049204.2910.5679	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Rikenellaceae RC9 gut group;gut metagenome	58332	58332	f	f	t	225892	225892	Contig	ASM215958v1	na	PRJNA224116	SAMN06473709	40	225892	none	2017-05-30	GCA_002159585.1	none	full	none	caecum	none	0	0	Muribaculum sp. An287	2052	na	11	none	none	none	none	none	2017/05/30	0	1965623	5	An287	Veterinary Research Institute	1965623	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Muribaculum;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Muribaculum;x__unclassified Muribaculum;s__Muribaculum sp. An287	0	2333290	11	44	none	2333290	0	NFIX00000000.1	2068	40	927	2	778	1040	0	90.874	587385	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	778	NZ_NFIX01000031.1	779	1042	0	90.886	AB494838.1.1515	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Rikenellaceae RC9 gut group;uncultured bacterium	0	19	43	0
+RS_GCF_002072105.2	0	99.01	0	571	s__algicola (UID2846)	303	0	3350726	93.00743926056509	20	1337557	37.127103629196675	3602643	RS_GCF_002072105.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceivirga;s__Croceivirga radicis	type strain of species	LPSN	t	4	4	652543	652543	5704	1	2796	NZ_MTBC01000017.1	5704	1	107	NZ_MTBC01000017.1	2796	5164	0	100	MTBC01000017.291.3099	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacteriaceae bacterium HSG9	180132	180132	t	f	f	452181	452181	Contig	ASM207210v2	na	PRJNA224116	SAMN06174226	20	452181	China: Hainan Province	2017-03-23	GCA_002072105.2	none	full	none	rot root of tropical mangrove	none	0	1	Croceivirga radicis	3083	representative genome	3	none	none	none	none	none	2017/03/23	0	1929488	1	HSG9	The Third Institute of State Oceanic Administration	1929488	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceivirga;s__Croceivirga radicis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Croceivirga;s__Croceivirga radicis	0	3602643	11	38	assembly from type material	3602643	0	MTBC00000000.1	3132	20	5704	1	1385	2529	0	99.639	66036	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1522	NZ_MTBC01000017.1	1505	2774	0	99.934	AFOE01000057.3426.4930	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mesoflavibacter;Mesoflavibacter zeaxanthinifaciens S86	0	19	37	0
+RS_GCF_900169075.1	1	100	0.25	324	o__Flavobacteriales (UID2815)	204	0	4241974	87.19946372617802	5	1890499	38.86362734644028	4864679	RS_GCF_900169075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium phocaeense	type strain of species	LPSN	f	1	1	3356215	3356215	343662	4	2743	NZ_LT827013.1	343662	4	100	NZ_LT827013.1	2743	5066	0	100	FWDI01000002.2259.5010	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. 6021061333	972888	1216169	t	f	f	3356215	3356215	Scaffold	PRJEB19812	na	PRJNA224116	SAMEA103587418	5	3356215	none	2017-03-24	GCA_900169075.1	none	full	none	none	none	0	0	Chryseobacterium phocaeense	4289	representative genome	12	4	1	3356215	1163569	1163569	2017/03/24	1	1816690	4	6021061333	URMITE	1816690	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium phocaeense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium phocaeense	235	4864679	11	74	assembly from type material	4864444	0	FWDI00000000.1	4344	4	1163569	4	none	none	none	none	none	none	1513	NZ_LT827014.1	1497	2748	0	99.8	FWDI01000005.35.1531	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. 6021061333	235	19	73	0
+RS_GCF_002201315.1	0	99.66	0.34	548	f__Flavobacteriaceae (UID2845)	298	0	3482902	92.01412243849833	29	1132279	29.913462549489033	3785182	RS_GCF_014784055.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter haliotis	type strain of species	LPSN	f	5	5	550315	550315	2906	2	2562	NZ_NIDK01000022.1	2906	1	105	NZ_NIDK01000022.1	2562	4481	0	98.283	CP019704.1257418.1260290	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. BM10	130523	130523	t	f	f	286292	286292	Contig	ASM220131v1	na	PRJNA224116	SAMN07171767	29	286292	South Korea: Jeju Island	2017-06-20	GCA_002201315.1	none	full	none	seawater from the gut of an abalone	none	0	1	Polaribacter haliotis	3196	na	6	none	none	none	none	none	2017/06/20	0	1888915	3	RA4-7	Shandong Uniwersity at Weihai	1888915	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter haliotis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter haliotis	0	3785182	11	36	assembly from type material	3785182	0	NIDK00000000.1	3239	29	2434	3	1511	2630	0	98.081	4331834	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__	1517	NZ_NIDK01000023.1	1442	2663	0	100	KX450477.1.1442	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter haliotis	0	19	36	0
+RS_GCF_002217355.1	46	99.65	0.4	511	f__Flavobacteriaceae (UID2817)	283	0	4186876	88.50256912367391	58	1574336	33.28086479648677	4730796	RS_GCF_002217355.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium oncorhynchi	type strain of species	LPSN	f	9	9	619142	619142	5242	1	2868	NZ_MUHA01000002.1	5242	1	104	NZ_MUHA01000002.1	2868	5025	0	98.291	FQWW01000014.293.3175	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. CF108	81560	90976	t	f	f	163250	180250	Scaffold	ASM221735v1	na	PRJNA224116	SAMN06049060	58	163250	Spain	2017-07-12	GCA_002217355.1	none	full	none	Oncorhynchus mykiss	none	0	0	Flavobacterium oncorhynchi	4015	representative genome	3	52	9	180250	127361	65860	2017/07/12	6	728056	1	CCUG 59446	FDA	728056	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium oncorhynchi	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium oncorhynchi	296	4730796	11	52	assembly from type material	4730500	0	MUHA00000000.1	4036	52	5242	1	1490	2636	0	98.591	141828	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_MUHA01000002.1	1510	2678	0	98.675	FQWW01000014.3766.5283	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. CF108	296	19	52	0
+RS_GCF_900156415.1	0	100	0.15	454	o__Cytophagales (UID2936)	336	0	3970196	88.73812348026702	20	2243593	50.14881970195826	4474059	RS_GCF_900156415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter lucknowensis	type strain of species	LPSN	f	2	2	1389220	1389220	5449	1	2881	NZ_FTNM01000009.1	5449	1	107	NZ_FTNM01000009.1	2881	5321	0	100	FTNM01000009.330.3222	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Pontibacter;Pontibacter lucknowensis	223693	235476	t	f	f	1059850	1059850	Scaffold	IMG-taxon 2681812905 annotated assembly	na	PRJNA224116	SAMN05421545	20	1059850	none	2017-01-15	GCA_900156415.1	none	full	none	none	none	0	0	Pontibacter lucknowensis	3867	representative genome	5	19	2	1059850	444403	426254	2017/01/15	1	1077936	3	DM9	DOE - JOINT GENOME INSTITUTE	1077936	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter lucknowensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Pontibacter;s__Pontibacter lucknowensis	189	4474059	11	42	assembly from type material	4473870	0	FTNM00000000.1	3920	19	5449	1	1496	2621	0	98.329	265113	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Pontibacter;s__	1520	NZ_FTNM01000009.1	1496	2621	0	98.329	DQ416803.1.1497	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Pontibacter;bacterium G2DM-1	189	19	42	0
+RS_GCF_002024805.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3959440	89.30687611339246	1	1589729	35.857022926693496	4433522	RS_GCF_002024805.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	type strain of species	LPSN	f	1	1	4433522	4433522	4433522	5	2770	NZ_CP014337.1	4433522	5	101	NZ_CP014337.1	2770	5116	0	100	CP014337.4275798.4278579	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia bruuniana	4433522	4433522	t	f	f	4433522	4433522	Complete Genome	ASM202480v1	na	PRJNA224116	SAMN05277827	none	none	United Kingdom: England	2017-03-10	GCA_002024805.1	none	full	none	none	none	1	0	Elizabethkingia bruuniana	4059	na	15	1	1	4433522	4433522	4433522	2017/03/10	0	1756149	5	G0146	CDC	1756149	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	0	4433522	11	51	assembly from type material	4433522	0	none	4136	1	4433522	5	none	none	none	none	none	none	1513	NZ_CP014337.1	1513	2795	0	100	CP014337.4280621.4282142	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia bruuniana	0	19	52	0
+RS_GCF_002023765.1	0	100	1.08	152	k__Bacteria (UID2565)	93	0	3878697	89.73473782985992	16	1545903	35.764897442464296	4322403	RS_GCF_002024805.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	not type material	none	f	4	4	711022	711022	5432	1	2763	NZ_MAHQ01000009.1	5432	1	101	NZ_MAHQ01000009.1	2763	5103	0	100	MAHQ01000009.2234.5008	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia genomosp. 3	270150	270150	t	f	f	552238	552238	Contig	ASM202376v1	na	PRJNA224116	SAMN05277593	16	552238	USA: WI	2017-03-08	GCA_002023765.1	none	full	none	none	none	0	0	Elizabethkingia bruuniana	3931	na	3	none	none	none	none	none	2017/03/08	0	1756149	1	CSID_3015183685	CDC	1756149	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	0	4322403	11	43	none	4322403	0	MAHQ00000000.1	4000	16	5432	1	1479	2713	0	99.797	806981	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAHQ01000009.1	1513	2784	0	99.868	CP023746.3518743.3520264	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	0	19	46	0
+RS_GCF_002023775.1	0	100	1.08	152	k__Bacteria (UID2565)	93	0	3933821	89.83217471805709	20	1568924	35.827724466200415	4379078	RS_GCF_002024805.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	not type material	none	f	3	3	1043517	1043517	5672	1	2763	NZ_MAHW01000020.1	5672	1	101	NZ_MAHW01000020.1	2763	5103	0	100	MAHQ01000009.2234.5008	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia genomosp. 3	218953	218953	t	f	f	561173	561173	Contig	ASM202377v1	na	PRJNA224116	SAMN05277862	20	561173	Ireland	2017-03-08	GCA_002023775.1	none	full	none	none	none	0	0	Elizabethkingia bruuniana	4030	na	3	none	none	none	none	none	2017/03/08	0	1756149	1	G0153	CDC	1756149	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia bruuniana	0	4379078	11	44	none	4379078	0	MAHW00000000.1	4106	20	5672	1	1479	2691	0	99.527	806981	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAHW01000020.1	1513	2784	0	99.868	CP016377.1574033.1575554	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia ursingii	0	19	45	0
+RS_GCF_900177625.1	0	100	0.95	316	p__Bacteroidetes (UID2605)	210	0	4097699	90.93648602974937	25	1866490	41.47036735854674	4506111	RS_GCF_900177625.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium psychroaquaticum	type strain of species	LPSN	f	4	3	666965	1303754	1592	1	1186	NZ_FXAU01000013.1	690671	3	107	NZ_FXAU01000002.1	1180	1814	0	94.492	LQXS01000013.342.3211	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. CFCC 11742	180031	321865	f	f	t	407696	629807	Scaffold	IMG-taxon 2595699002 annotated assembly	na	PRJNA224116	SAMN05660862	25	407696	none	2017-04-20	GCA_900177625.1	none	full	none	none	none	0	0	Sphingobacterium psychroaquaticum	3742	na	5	14	3	629807	385300	275905	2017/04/20	11	561061	0	DSM 22418	DOE - JOINT GENOME INSTITUTE	561061	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium psychroaquaticum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium psychroaquaticum	5331	4506111	11	51	assembly from type material	4500780	0	FXAU00000000.1	3804	14	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5331	19	52	0
+RS_GCF_002156885.1	0	99.65	0.88	511	f__Flavobacteriaceae (UID2817)	283	10	4689085	86.89612089701708	203	1756148	32.54418482946135	5396196	RS_GCF_000813005.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp000813005	not type material	none	f	35	35	188956	188956	51878	1	2870	NZ_NCWQ01000074.1	31694	7	104	NZ_NCWQ01000056.1	2480	4396	0	98.669	JQMS01000001.2813424.2816296	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. 83	26582	26582	t	f	f	52629	52629	Contig	ASM215688v1	na	PRJNA224116	SAMN06718011	203	52629	USA: Williamsport	2017-05-23	GCA_002156885.1	none	full	none	freshwater creek	none	0	0	Flavobacterium sp. AJR	4634	na	9	none	none	none	none	none	2017/05/23	0	1979369	1	AJR	Lycoming College	1979369	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. AJR	0	5396196	11	70	none	5396196	0	NCWQ00000000.1	4740	203	51878	1	1499	2747	0	99.733	147020	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_NCWQ01000074.1	1510	2784	0	99.934	KU672509.1.1518	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. JRM	0	19	69	0
+RS_GCF_900156585.1	0	100	4.17	324	o__Flavobacteriales (UID2815)	204	72.73	4661755	88.49119331577337	23	1863258	35.369630748904704	5268044	RS_GCF_003815775.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium joostei	type strain of species	LPSN	f	4	4	898817	898817	5650	1	2751	NZ_FTNZ01000019.1	5650	1	98	NZ_FTNZ01000019.1	2751	5081	0	100	FTNZ01000019.2615.5378	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium joostei	229041	239456	t	f	f	553821	553821	Scaffold	IMG-taxon 2681813505 annotated assembly	na	PRJNA224116	SAMN05421768	23	553821	none	2017-01-15	GCA_900156585.1	none	full	none	none	none	0	0	Chryseobacterium joostei	4722	na	3	22	4	553821	405207	255604	2017/01/15	1	112234	1	DSM 16927	DOE - JOINT GENOME INSTITUTE	112234	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium joostei	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium joostei	84	5268044	11	77	assembly from type material	5267960	0	FTNZ00000000.1	4817	22	5650	1	1469	2713	0	100	556654	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FTNZ01000019.1	1469	2713	0	100	AJ271010.1.1469	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium joostei	84	19	76	0
+RS_GCF_002002735.1	0	100	0.26	439	o__Cytophagales (UID2938)	266	0	4676364	89.90798030791663	94	2294992	44.123617310976265	5201278	RS_GCF_002002735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus sp002002735	not type material	none	f	9	9	434536	434536	3136	1	2867	NZ_MUNY01000020.1	3136	3	99	NZ_MUNY01000020.1	2867	5295	0	100	MUNY01000020.247.3124	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus sp. A40	55332	55332	t	f	f	187594	187594	Contig	ASM200273v1	na	PRJNA224116	SAMN06293008	94	187594	Norway	2017-02-16	GCA_002002735.1	none	full	none	FRDC_Fjaler soil; pH 7.4	none	0	0	Algoriphagus sp. A40	4484	na	12	none	none	none	none	none	2017/02/16	0	1945863	5	A40	Norwegian University of Life Sciences (NMBU)	1945863	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;x__unclassified Algoriphagus;s__Algoriphagus sp. A40	0	5201278	11	48	none	5201278	0	MUNY00000000.1	4495	94	1598	1	1487	2630	0	98.588	1111357	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__;s__	1520	NZ_MUNY01000075.1	1520	2808	0	100	MUNY01000075.58.1583	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus sp. A40	0	19	49	0
+RS_GCF_002201235.1	0	99.33	0.67	548	f__Flavobacteriaceae (UID2845)	298	50	2459305	91.97572949698619	19	834606	31.213491491523687	2673863	RS_GCF_002201235.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter tangerinus	type strain of species	LPSN	f	2	2	807511	807511	2209	2	1974	NZ_NIDL01000015.1	2209	2	104	NZ_NIDL01000015.1	1976	3397	0	97.773	CP019704.1257418.1260290	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. BM10	140729	140729	t	f	f	675327	675327	Contig	ASM220123v1	na	PRJNA224116	SAMN07171769	19	675327	China:Rongcheng	2017-06-20	GCA_002201235.1	none	full	none	sediment from a sea cucumber culture pond	none	0	0	Polaribacter tangerinus	2302	representative genome	5	none	none	none	none	none	2017/06/20	0	1920034	1	WS2-14	Shandong Uniwersity at Weihai	1920034	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter tangerinus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter tangerinus	0	2673863	11	37	assembly from type material	2673863	0	NIDL00000000.1	2341	19	3297	1	1476	2566	0	98.035	192041	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__	1515	NZ_NIDL01000013.1	1442	2663	0	100	KX262847.1.1442	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter tangerinus	0	19	37	0
+RS_GCF_002204845.1	0	99.65	0.18	511	f__Flavobacteriaceae (UID2817)	283	0	2746427	86.97279751725885	166	966667	30.612040027867504	3157800	GB_GCA_019565575.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium covae	not type material	none	f	19	19	123877	123877	2719	1	2163	NZ_MTDA01000114.1	32097	1	102	NZ_MTDA01000033.1	2163	3989	0	99.954	CP013992.2269247.2272121	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium columnare	19022	19022	t	f	f	48847	48847	Contig	ASM220484v1	na	PRJNA224116	SAMN06216423	166	48847	Thailand	2017-06-22	GCA_002204845.1	none	full	none	diseased red tilapia	14.1011 N 99.4179 E	0	0	Flavobacterium covae	2764	na	3	none	none	none	none	none	2017/06/22	0	2906076	1	1362	Faculty of Veterinary Science, Chulalongkorn University	2906076	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium covae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium covae	0	3157800	11	63	none	3157800	0	MTDA00000000.1	2805	166	1706	1	1511	2697	0	98.875	3925303	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__columnare	1512	NZ_MTDA01000138.1	1512	2787	0	99.934	CP015107.697806.699325	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium columnare	0	19	64	0
+RS_GCF_900156765.1	0	100	1.31	303	p__Bacteroidetes (UID2591)	203	0	7101675	91.47312213263977	43	3418657	44.034951725431334	7763674	RS_GCF_002355595.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Filimonas;s__Filimonas lacunae	type strain of species	LPSN	t	4	4	1906449	1906449	5271	1	2882	NZ_FTOR01000021.1	610042	1	106	NZ_FTOR01000004.1	2164	3997	0	100	FTOR01000021.3090.5258	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Filimonas;Filimonas lacunae	180546	184849	t	f	f	610042	610042	Scaffold	IMG-taxon 2681813554 annotated assembly	na	PRJNA224116	SAMN05421788	43	610042	none	2017-01-15	GCA_900156765.1	none	full	none	none	none	0	0	Filimonas lacunae	6169	na	3	42	4	610042	332167	207327	2017/01/15	1	477680	1	DSM 21054	DOE - JOINT GENOME INSTITUTE	477680	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Filimonas;s__Filimonas lacunae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Filimonas;s__Filimonas lacunae	166	7763674	11	63	assembly from type material	7763508	0	FTOR00000000.1	6199	42	5271	1	1493	2741	0	99.799	1131099	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Filimonas;s__lacunae	1526	NZ_FTOR01000021.1	1493	2741	0	99.799	AB362776.1.1493	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Filimonas;Filimonas lacunae	166	19	61	0
+RS_GCF_002217285.1	22	99.65	0.55	511	f__Flavobacteriaceae (UID2817)	283	33.33	4653980	88.47586455872425	107	1776651	33.778786291522366	5260169	RS_GCF_002217285.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium hercynium	type strain of species	LPSN	f	14	13	392793	392793	3314	1	2868	NZ_MUGW01000045.1	3314	1	104	NZ_MUGW01000045.1	2870	5155	0	99.094	LMMA01000012.592777.595667	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. Leaf82	49155	52080	t	f	f	112545	119640	Scaffold	ASM221728v1	na	PRJNA224116	SAMN06049051	107	112545	Germany: Westhofer Bach	2017-07-12	GCA_002217285.1	none	full	none	stream water	none	0	0	Flavobacterium hercynium	4481	representative genome	3	101	13	119640	58309	28376	2017/07/12	6	387094	1	DSM 18292	FDA	387094	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium hercynium	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium hercynium	482	5260169	11	53	assembly from type material	5259687	0	MUGW00000000.1	4521	101	2319	1	1498	2745	0	99.733	1136590	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1508	NZ_MUGW01000033.1	1491	2748	0	99.933	AM177627.1.1491	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium hercynium	482	19	52	0
+RS_GCF_900168205.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	4269970	87.89901957938686	72	1631022	33.575232311330225	4857813	RS_GCF_900168205.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium balustinum	type strain of species	LPSN	f	8	8	747898	747898	5499	1	2748	NZ_FUZE01000053.1	5499	1	101	NZ_FUZE01000053.1	2748	5075	0	100	FUZE01000053.391.3152	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium balustinum	67469	67469	t	f	f	179060	179060	Contig	IMG-taxon 2681813564 annotated assembly	na	PRJNA224116	SAMN05421800	72	179060	none	2017-03-08	GCA_900168205.1	none	full	none	none	none	0	0	Chryseobacterium balustinum	4427	na	3	none	none	none	none	none	2017/03/08	0	246	1	DSM 16775	DOE - JOINT GENOME INSTITUTE	246	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium balustinum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium balustinum	0	4857813	11	64	assembly from type material	4857813	0	FUZE00000000.1	4490	72	5499	1	1469	2663	0	99.387	1135292	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FUZE01000053.1	1442	2663	0	100	AB680758.1.1442	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium balustinum	0	19	62	0
+RS_GCF_001953935.1	0	99.32	0.59	567	g__Prevotella (UID2724)	296	100	2327861	85.07284431799701	2	1189049	43.45439030228611	2736315	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2119682	2119682	2119682	4	2901	NZ_CP019302.1	2119682	4	108	NZ_CP019302.1	2901	5358	0	100	CP019302.1997186.2000094	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1368157	1368157	t	f	f	2119682	2119682	Complete Genome	ASM195393v1	na	PRJNA224116	SAMN04529095	none	none	Japan	2017-01-18	GCA_001953935.1	none	full	none	periodontal pocket	none	2	0	Prevotella intermedia	2386	na	12	2	1	2119682	2119682	616633	2017/01/18	0	28131	4	strain 17	The Forsyth Institute	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2736315	11	51	none	2736315	0	none	2368	2	2119682	4	none	none	none	none	none	none	1530	NZ_CP019302.1	1530	2826	0	100	CP019302.601050.602591	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	51	0
+RS_GCF_001953955.1	0	99.32	0.77	567	g__Prevotella (UID2724)	296	100	2275670	85.09817999603615	2	1161703	43.441628617477576	2674170	RS_GCF_001953955.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	type strain of species	LPSN	f	1	1	1965935	1965935	1965935	4	2901	NZ_CP019300.1-#2	1965935	5	108	NZ_CP019300.1	2901	5358	0	100	CP019300.63001.65909	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia ATCC 25611 = DSM 20706	1337085	1337085	t	f	f	1965935	1965935	Complete Genome	ASM195395v1	na	PRJNA224116	SAMN04529094	none	none	USA	2017-01-18	GCA_001953955.1	none	full	none	Empyema	none	2	0	Prevotella intermedia ATCC 25611 = DSM 20706	2284	na	13	2	1	1965935	708235	708235	2017/01/18	0	28131	4	ATCC 25611	The Forsyth Institute	1122984	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia;x__Prevotella intermedia ATCC 25611 = DSM 20706	0	2674170	11	53	assembly from type material	2674170	0	none	2288	2	1965935	4	1529	2763	0	99.281	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_CP019300.1	1530	2826	0	100	CP019300.452589.454131	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia ATCC 25611 = DSM 20706	0	19	53	0
+RS_GCF_002217395.1	2	99.65	0.93	511	f__Flavobacteriaceae (UID2817)	283	25	4458107	88.06579135032158	92	1675851	33.12130650268976	5062246	RS_GCF_002217395.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium plurextorum	type strain of species	LPSN	f	14	11	405642	405642	5038	1	2870	NZ_MUHD01000037.1	156398	2	104	NZ_MUHD01000005.1	2870	5046	0	98.397	MLFK01000009.643880.646770	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium johnsoniae	54997	77880	t	f	f	108575	156398	Scaffold	ASM221739v1	na	PRJNA224116	SAMN06049068	92	108575	Spain: central part	2017-07-12	GCA_002217395.1	none	full	none	Oncorhynchus mykiss	none	0	0	Flavobacterium plurextorum	4247	representative genome	4	65	11	156398	86231	46382	2017/07/12	27	1114867	1	CCUG 60112	FDA	1114867	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium plurextorum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium plurextorum	2507	5062246	11	51	assembly from type material	5059739	0	MUHD00000000.1	4254	65	5038	1	1457	2680	0	99.863	4284954	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_MUHD01000037.1	1457	2680	0	99.863	HE612094.1.1457	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium plurextorum	2507	19	51	0
+RS_GCF_900168055.1	0	99.84	1.19	316	p__Bacteroidetes (UID2605)	210	0	4442710	91.98302085084569	30	2379538	49.27299932453895	4829924	RS_GCF_900168055.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__Parapedobacter luteus	type strain of species	LPSN	f	4	4	799322	799322	174389	2	2864	NZ_FUYS01000010.1	174389	2	105	NZ_FUYS01000010.1	2864	5289	0	100	FUYS01000014.97380.100247	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Parapedobacter;Parapedobacter luteus	160976	172497	t	f	f	482862	509700	Scaffold	IMG-taxon 2595698205 annotated assembly	na	PRJNA224116	SAMN05660226	30	482862	none	2017-03-08	GCA_900168055.1	none	full	none	none	none	0	0	Parapedobacter luteus	4042	representative genome	6	28	4	509700	205342	104192	2017/03/08	2	623280	2	DSM 22899	DOE - JOINT GENOME INSTITUTE	623280	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__Parapedobacter luteus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__Parapedobacter luteus	630	4829924	11	43	assembly from type material	4829294	0	FUYS00000000.1	4185	28	174389	2	1463	2697	0	99.932	547664	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__	1519	NZ_FUYS01000010.1	1463	2697	0	99.932	FJ754320.1.1463	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Parapedobacter;Parapedobacter luteus	630	19	45	0
+RS_GCF_900157215.1	0	99.61	0	475	f__Porphyromonadaceae (UID2622)	318	0	1986210	85.88410849310947	111	1115387	48.26446674368993	2312663	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	19	12	107149	187702	5702	1	2888	NZ_FUFB01000071.1	5702	1	106	NZ_FUFB01000071.1	2888	5334	0	100	CP025930.231607.234505	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis ATCC 33277	20819	32120	t	f	f	34060	59758	Scaffold	Strain 3-3	na	PRJNA224116	SAMEA3505341	111	34060	none	2017-02-02	GCA_900157215.1	none	full	3_3	Subgingival plaque	none	0	0	Porphyromonas gingivalis	2010	na	3	72	12	59758	31658	16731	2017/02/02	39	837	1	3_3	Melbourne Dental School, University of Melbourne	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	1673	2312663	11	47	none	2310990	0	FUFB00000000.1	1966	72	5702	1	1527	2793	0	99.673	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_FUFB01000071.1	1528	2822	0	100	CP025930.1584718.1586259	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis ATCC 33277	1673	19	47	0
+RS_GCF_900156735.1	0	100	0.74	324	o__Flavobacteriales (UID2815)	204	0	4570512	88.17892335370354	27	1799268	34.71329143535154	5183225	RS_GCF_900156735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium ureilyticum	type strain of species	LPSN	f	3	3	1421772	1421772	5534	1	2745	NZ_FTOL01000018.1	5534	1	101	NZ_FTOL01000018.1	2745	5070	0	100	FTOL01000018.321.3080	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium ureilyticum	191971	191971	t	f	f	624616	624616	Contig	IMG-taxon 2681813509 annotated assembly	na	PRJNA224116	SAMN05421786	27	624616	none	2017-01-15	GCA_900156735.1	none	full	none	none	none	0	0	Chryseobacterium ureilyticum	4647	representative genome	3	none	none	none	none	none	2017/01/15	0	373668	1	DSM 18017	DOE - JOINT GENOME INSTITUTE	373668	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium ureilyticum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium ureilyticum	0	5183225	11	77	assembly from type material	5183225	0	FTOL00000000.1	4751	27	5534	1	1471	2712	0	99.932	1130933	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FTOL01000018.1	1471	2712	0	99.932	AM232806.1.1472	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium ureilyticum	0	19	77	0
+RS_GCF_900157275.1	0	99.29	0	475	f__Porphyromonadaceae (UID2622)	318	0	1996591	85.8681230681628	85	1120245	48.26326852678004	2325183	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	14	9	156295	209711	5483	1	2889	NZ_FUFG01000047.1	5483	1	106	NZ_FUFG01000047.1	2889	5336	0	100	FUFG01000047.2302.5190	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	27307	46503	t	f	f	50623	87888	Scaffold	84-3	na	PRJNA224116	SAMEA3505347	85	50623	none	2017-02-02	GCA_900157275.1	none	full	84_3	Subgingival plaque; from a periodontal pocket at least 6mm deep	none	0	0	Porphyromonas gingivalis	2052	na	3	50	9	87888	67218	25738	2017/02/02	35	837	1	84_3	Melbourne Dental School, University of Melbourne	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	4070	2325183	11	47	none	2321113	0	FUFG00000000.1	2008	50	5483	1	1527	2809	0	99.869	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_FUFG01000047.1	1528	2817	0	99.935	CP024600.2457376.2458917	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	4070	19	47	0
+RS_GCF_900157295.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	1971350	85.55768411166441	142	1113083	48.41566863011709	2304118	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	21	15	108290	204380	3799	1	2889	NZ_FUFE01000028.1	3799	1	106	NZ_FUFE01000028.1	2889	5336	0	100	FUFE01000028.617.3505	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	16190	25888	t	f	f	33808	41804	Scaffold	11A	na	PRJNA224116	SAMEA3505344	142	33808	none	2017-02-02	GCA_900157295.1	none	full	11A	Subgingival plaque; from a periodontal pocket at least 6mm deep	none	0	0	Porphyromonas gingivalis	2020	na	3	89	15	41804	25897	13993	2017/02/02	53	837	1	11A	Melbourne Dental School, University of Melbourne	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	5104	2304118	11	47	none	2299014	0	FUFE00000000.1	1970	89	2004	1	1527	2798	0	99.738	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_FUFE01000039.1	1528	2817	0	99.935	CP024594.285996.287537	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	5104	19	47	0
+RS_GCF_001975985.1	24	99.65	0.05	511	f__Flavobacteriaceae (UID2817)	283	0	4905993	86.345616334516	47	1859251	33.25524146502921	5681809	RS_GCF_001975985.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp001975985	not type material	none	f	8	4	540643	997585	5014	2	2870	NZ_MTQF01000025.1	502004	5	104	NZ_MTQF01000006.1	2870	5301	0	100	MTQF01000024.2085.4975	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;[Flexibacter] sp. ATCC 35103	118954	189393	t	f	f	224514	535581	Scaffold	ASM197598v1	na	PRJNA224116	SAMN06249474	47	224514	USA: Rocky Hill; New Jersey	2017-01-31	GCA_001975985.1	none	full	none	soil	none	0	0	[Flexibacter] sp. ATCC 35103	4619	na	11	30	4	535581	303061	122402	2017/01/31	17	1937528	3	ATCC 35103	McMaster University	1937528	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__[Flexibacter] sp. ATCC 35103	90934	5681809	11	55	none	5590875	0	MTQF00000000.1	4659	30	5295	3	1454	2540	0	98.212	141828	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1471	NZ_MTQF01000024.1	1471	2717	0	100	MTQF01000025.1.1481	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;[Flexibacter] sp. ATCC 35103	90934	19	58	0
+RS_GCF_002023135.1	0	100	1.08	152	k__Bacteria (UID2565)	93	100	3678566	88.92356433384187	135	1465529	35.42686533682172	4136773	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	type strain of heterotypic synonym	LPSN	f	7	7	604773	604773	2914	1	2763	NZ_MAGY01000102.1	286902	3	101	NZ_MAGY01000013.1	2763	5103	0	100	CP016372.1947023.1949797	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	30642	30642	t	f	f	227012	227012	Contig	ASM202313v1	na	PRJNA224116	SAMN05255122	135	227012	USA: AL	2017-03-07	GCA_002023135.1	none	full	none	none	none	0	0	Elizabethkingia anophelis	3815	na	5	none	none	none	none	none	2017/03/07	0	1117645	1	JM-87	CDC	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	0	4136773	11	47	assembly from synonym type material	4136773	0	MAGY00000000.1	3877	135	2044	1	1512	2737	0	99.339	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAGY01000034.1	1513	2795	0	100	CP016372.1938232.1939753	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	0	19	47	0
+RS_GCF_002204455.1	2	99.92	0.16	475	f__Porphyromonadaceae (UID2622)	318	0	2050896	85.65468178152396	78	1150075	48.37215190725266	2394377	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	10	4	188141	452895	5834	1	2887	NZ_NHRU01000019.1	5834	1	106	NZ_NHRU01000019.1	2887	5288	0	99.723	CP025931.882160.885058	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	30481	54417	t	f	f	86934	140918	Scaffold	ASM220445v1	na	PRJNA224116	SAMN07125718	78	86934	South Korea: Gwangju	2017-06-21	GCA_002204455.1	none	full	none	subgingival dental plaque	35.14 N 126.93 E	0	0	Porphyromonas gingivalis	2103	na	3	44	4	140918	106815	68379	2017/06/21	34	837	1	KCOM 2797	Chosun University	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	16819	2394377	11	48	none	2377558	0	NHRU00000000.1	2083	44	5834	1	1527	2793	0	99.673	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_NHRU01000019.1	1528	2800	0	99.738	CP024594.285996.287537	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	16819	19	47	0
+RS_GCF_002209445.1	0	100	0.48	316	p__Bacteroidetes (UID2605)	210	0	3096069	90.72235183664715	1	1305181	38.244977709639855	3412686	RS_GCF_016126015.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga periodontitidis	type strain of species	LPSN	f	1	1	3412686	3412686	3412686	4	2831	NZ_CP022022.1-#4	3412686	4	105	NZ_CP022022.1-#2	2831	5228	0	100	CP022022.1151486.1154330	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. ChDC OS43	3412686	3412686	t	f	f	3412686	3412686	Complete Genome	ASM220944v1	na	PRJNA224116	SAMN07125685	none	none	South Korea: Gwangju	2017-06-27	GCA_002209445.1	none	full	none	abscess	35.14 N 126.93 E	1	1	Capnocytophaga endodontalis	3075	representative genome	12	1	1	3412686	3412686	3412686	2017/06/27	0	2708117	4	ChDC OS43	Chosun University	2708117	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga endodontalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga endodontalis	0	3412686	11	47	assembly from type material	3412686	0	none	3115	1	3412686	4	none	none	none	none	none	none	1509	NZ_CP022022.1	1509	2787	0	100	CP022022.1646548.1648067	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. ChDC OS43	0	19	47	0
+RS_GCF_001971785.1	0	98.35	1.25	571	s__algicola (UID2846)	303	0	3398232	90.55103926737006	1	1210749	32.26224114243202	3752836	RS_GCF_001971785.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Seonamhaeicola;s__Seonamhaeicola sp001971785	not type material	none	f	1	1	3752836	3752836	3752836	2	2805	NZ_CP019389.1	3752836	2	102	NZ_CP019389.1	2805	5180	0	100	CP019389.132299.135123	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Seonamhaeicola;Seonamhaeicola sp. S2-3	3752836	3752836	t	f	f	3752836	3752836	Complete Genome	ASM197178v1	na	PRJNA224116	SAMN06236790	none	none	South Korea: Jeju island	2017-01-26	GCA_001971785.1	none	full	none	Seawater	33.45 N 126.92 E	1	1	Seonamhaeicola sp. S2-3	3231	na	6	1	1	3752836	3752836	3752836	2017/01/26	0	1936081	2	S2-3	Korea Research Institute of Bioscience & Biotechnology	1936081	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Seonamhaeicola;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Seonamhaeicola;x__unclassified Seonamhaeicola;s__Seonamhaeicola sp. S2-3	0	3752836	11	40	none	3752836	0	none	3263	1	3752836	2	1482	2335	0	95.209	2012343	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1516	NZ_CP019389.1	1516	2800	0	100	CP019389.135709.137231	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Seonamhaeicola;Seonamhaeicola sp. S2-3	0	19	40	0
+RS_GCF_002023505.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3568597	88.55710071660191	20	1466671	36.39641334258792	4029713	RS_GCF_000367325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	not type material	none	f	4	4	730562	730562	5386	1	2763	NZ_MAHF01000004.1	5386	1	101	NZ_MAHF01000004.1	2763	5103	0	100	MAHF01000004.2272.5046	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	201485	201485	t	f	f	432456	432456	Contig	ASM202350v1	na	PRJNA224116	SAMN05256158	20	432456	USA: FL	2017-03-08	GCA_002023505.1	none	full	none	none	none	0	0	Elizabethkingia meningoseptica	3599	na	3	none	none	none	none	none	2017/03/08	0	238	1	CSID_3000516535	CDC	238	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	0	4029713	11	44	none	4029713	0	MAHF00000000.1	3641	20	5386	1	1478	2708	0	99.729	730225	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAHF01000004.1	1513	2789	0	99.934	CP016378.924537.926058	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	0	19	44	0
+RS_GCF_002023305.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3589220	88.22587389020792	24	1476069	36.28294655865211	4068217	RS_GCF_000367325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	not type material	none	f	4	4	588690	588690	5866	1	2763	NZ_MAGZ01000003.1	5866	1	101	NZ_MAGZ01000003.1	2763	5103	0	100	CP016376.481749.484523	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	169509	169509	t	f	f	458522	458522	Contig	ASM202330v1	na	PRJNA224116	SAMN05255123	24	458522	USA: MN	2017-03-08	GCA_002023305.1	none	full	none	none	none	0	0	Elizabethkingia meningoseptica	3673	na	3	none	none	none	none	none	2017/03/08	0	238	1	CSID_3000515919	CDC	238	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	0	4068217	11	49	none	4068217	0	MAGZ00000000.1	3720	24	5866	1	1478	2702	0	99.662	730225	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAGZ01000003.1	1513	2795	0	100	CP016376.2431112.2432633	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	0	19	50	0
+RS_GCF_002023095.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3529002	88.58808396810127	15	1447585	36.33854033830638	3983608	RS_GCF_000367325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	not type material	none	f	3	3	1139471	1139471	5561	1	2763	NZ_MAIA01000015.1	5561	1	101	NZ_MAIA01000015.1	2763	5103	0	100	CP016378.1808284.1811058	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	265573	265573	t	f	f	572925	572925	Contig	ASM202309v1	na	PRJNA224116	SAMN05281842	15	572925	France	2017-03-07	GCA_002023095.1	none	full	none	none	none	0	0	Elizabethkingia meningoseptica	3568	na	3	none	none	none	none	none	2017/03/07	0	238	1	G4120	CDC	238	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	0	3983608	11	43	none	3983608	0	MAIA00000000.1	3624	15	5561	1	1478	2702	0	99.662	730225	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAIA01000015.1	1513	2795	0	100	CP016378.924537.926058	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	0	19	41	0
+RS_GCF_900177665.1	0	100	0.6	454	o__Cytophagales (UID2936)	336	0	4244610	89.5297516032993	29	1703655	35.952737899580384	4741005	RS_GCF_900177665.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Marivirga;s__Marivirga sericea	type strain of species	LPSN	f	4	4	1006029	1254924	2632	3	2174	NZ_FXAW01000024.1	524542	2	107	NZ_FXAW01000003.1	2174	4015	0	100	FXAW01000024.457.2632	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Marivirga;Marivirga sericea	163399	182346	t	f	f	452908	463646	Scaffold	IMG-taxon 2595699006 annotated assembly	na	PRJNA224116	SAMN05661096	29	452908	none	2017-04-20	GCA_900177665.1	none	full	none	none	none	0	0	Marivirga sericea	4023	representative genome	7	26	4	463646	364672	184814	2017/04/20	3	1028	2	DSM 4125	DOE - JOINT GENOME INSTITUTE	1028	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Marivirgaceae;g__Marivirga;s__Marivirga sericea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Marivirgaceae;g__Marivirga;s__Marivirga sericea	2409	4741005	11	38	assembly from type material	4738596	0	FXAW00000000.1	4103	26	262514	2	1517	2730	0	99.143	4406407	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flammeovirgaceae;g__Marivirga;s__tractuosa	1518	NZ_FXAW01000008.1	1476	2726	0	100	AB078069.1.1476	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Marivirga;Marivirga tractuosa	2409	19	38	0
+RS_GCF_002067135.1	0	100	0.3	454	o__Cytophagales (UID2936)	336	0	5190218	89.050415859985	1	3172186	54.42632322673583	5828404	RS_GCF_002067135.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma rigui	type strain of species	LPSN	f	1	1	5828404	5828404	5828404	3	2810	NZ_CP020105.1	none	0	none	none	2810	5190	0	100	CP020105.1699640.1702474	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma rigui	5828404	5828404	f	f	t	5828404	5828404	Complete Genome	ASM206713v1	na	PRJNA224116	SAMN06554015	none	none	Korea:Woopo wetland	2017-03-21	GCA_002067135.1	none	full	none	fresh water	none	1	0	Spirosoma rigui	4720	representative genome	9	1	1	5828404	5828404	5828404	2017/03/21	0	564064	3	KCTC 12531	Seoul Women's University	564064	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma rigui	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma rigui	0	5828404	11	45	assembly from type material	5828404	0	none	4791	1	5828404	3	1432	2641	0	99.93	4324652	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__	1504	NZ_CP020105.1	1487	2747	0	100	CP020105.1697913.1699399	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma rigui	0	19	41	0
+RS_GCF_900156975.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3400223	88.50762247935761	109	1406870	36.62208528814509	3841729	RS_GCF_000367325.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	not type material	none	f	16	13	298564	556094	5532	1	2763	NZ_FTRA01000070.1	5532	1	101	NZ_FTRA01000070.1	2763	5103	0	100	CP016378.1808284.1811058	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	35243	40439	t	f	f	68660	80807	Scaffold	ASM90015697v1	na	PRJNA224116	SAMEA4026802	109	68660	none	2017-01-20	GCA_900156975.1	none	full	CIP80.33	tracheal exsudate	none	0	0	Elizabethkingia meningoseptica	3435	na	3	95	13	80807	38120	21434	2017/01/20	14	238	1	CIP80.33;58-80	INSTITUT PASTEUR	238	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia meningoseptica	140	3841729	11	42	none	3841589	0	FTRA00000000.1	3486	95	5532	1	1478	2702	0	99.662	730225	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_FTRA01000070.1	1513	2795	0	100	CP016378.924537.926058	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia meningoseptica	140	19	43	0
+RS_GCF_002023645.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3441158	89.53479689075357	23	1366323	35.55008293492048	3843375	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	4	4	685809	685809	4999	1	2762	NZ_MAHO01000002.1	593	2	101	NZ_MAHO01000006.1	2762	5101	0	100	CP023404.775865.778639	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	167103	167103	t	f	f	348523	348523	Contig	ASM202364v1	na	PRJNA224116	SAMN05275358	23	348523	USA: WI	2017-03-08	GCA_002023645.1	none	full	none	none	none	0	0	Elizabethkingia anophelis	3503	na	4	none	none	none	none	none	2017/03/08	0	1117645	1	CSID_3015183679	CDC	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	0	3843375	11	45	none	3843375	0	MAHO00000000.1	3562	23	4999	1	1512	2787	0	99.934	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAHO01000002.1	1513	2795	0	100	CP016370.2367209.2368730	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	0	19	45	0
+RS_GCF_900157025.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3547291	89.65546263301573	41	1408622	35.602000818383345	3956581	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	4	4	809027	809027	5551	1	2763	NZ_FTRB01000021.1	5551	1	101	NZ_FTRB01000021.1	2763	5103	0	100	CP016374.1184996.1187770	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	96501	96501	t	f	f	340973	340973	Contig	ASM90015702v1	na	PRJNA224116	SAMEA50777668	41	340973	none	2017-01-20	GCA_900157025.1	none	full	Illumina sequencing of Elizabethkingia anophelis CIP111046	none	none	0	0	Elizabethkingia anophelis	3559	na	3	none	none	none	none	none	2017/01/20	0	1117645	1	Illumina sequencing of Elizabethkingia anophelis CIP111046	INSTITUT PASTEUR	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	0	3956581	11	44	none	3956581	0	FTRB00000000.1	3623	41	5551	1	1512	2732	0	99.272	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_FTRB01000021.1	1513	2789	0	99.934	CP016372.1938232.1939753	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	0	19	43	0
+RS_GCF_002023145.1	0	100	1.08	152	k__Bacteria (UID2565)	93	0	3563500	89.53780802098956	17	1418663	35.6458468753981	3979883	RS_GCF_002023665.2	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	not type material	none	f	3	3	1042899	1042899	5151	1	2763	NZ_MAHM01000005.1	393	2	101	NZ_MAHM01000010.1	2763	5103	0	100	CP023010.4052154.4054926	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	234110	234110	t	f	f	566866	566866	Contig	ASM202314v1	na	PRJNA224116	SAMN05273152	17	566866	USA: SC	2017-03-07	GCA_002023145.1	none	full	none	none	none	0	0	Elizabethkingia anophelis	3629	na	4	none	none	none	none	none	2017/03/07	0	1117645	1	3375	CDC	1117645	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia anophelis	0	3979883	11	47	none	3979883	0	MAHM00000000.1	3701	17	5151	1	1512	2771	0	99.735	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAHM01000005.1	1513	2795	0	100	CP023010.2869285.2870805	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia anophelis	0	19	47	0
+RS_GCF_900156825.1	0	100	0.25	324	o__Flavobacteriales (UID2815)	204	0	4237135	87.51360837658444	51	1748070	36.104564380142705	4841687	RS_GCF_900156825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium gambrini	type strain of species	LPSN	f	5	5	767218	767218	5615	1	2743	NZ_FTOV01000030.1	5615	1	101	NZ_FTOV01000030.1	2743	5066	0	100	FTOV01000030.2534.5290	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium gambrini	94935	94935	t	f	f	322040	322040	Contig	IMG-taxon 2681813561 annotated assembly	na	PRJNA224116	SAMN05421785	51	322040	none	2017-01-15	GCA_900156825.1	none	full	none	none	none	0	0	Chryseobacterium gambrini	4379	representative genome	3	none	none	none	none	none	2017/01/15	0	373672	1	DSM 18014	DOE - JOINT GENOME INSTITUTE	373672	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium gambrini	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium gambrini	0	4841687	11	79	assembly from type material	4841687	0	FTOV00000000.1	4444	51	5615	1	1475	2652	0	99.119	264030	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FTOV01000030.1	1485	2639	0	98.788	DQ860041.1.1486	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;uncultured bacterium	0	19	76	0
+RS_GCF_900168015.1	0	100	0	312	p__Bacteroidetes (UID2605)	206	0	3610863	89.62980320162556	13	1702607	42.271483301889305	4028641	RS_GCF_900168015.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Daejeonella;s__Daejeonella lutea	type strain of species	LPSN	f	3	2	1386166	2005108	24295	1	2873	NZ_FUYR01000009.1	24295	3	106	NZ_FUYR01000009.1	2873	5306	0	100	FUYR01000009.369.3246	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter luteus	309830	402864	t	f	f	563985	1018916	Scaffold	IMG-taxon 2595698248 annotated assembly	na	PRJNA224116	SAMN05661099	13	563985	none	2017-03-08	GCA_900168015.1	none	full	none	none	36.75 N 127.45 E	0	0	Daejeonella lutea	3571	representative genome	5	10	2	1018916	1018916	177985	2017/03/08	3	572036	1	DSM 22385	DOE - JOINT GENOME INSTITUTE	572036	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Daejeonella;s__Daejeonella lutea	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Daejeonella;s__Daejeonella lutea	850	4028641	11	37	assembly from type material	4027791	0	FUYR00000000.1	3612	10	24295	1	none	none	none	none	none	none	1519	NZ_FUYR01000009.1	1502	2691	0	99.001	FPLS01035895.12.1513	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;metagenome	850	19	37	0
+RS_GCF_002023475.1	0	100	2.15	152	k__Bacteria (UID2565)	93	0	3975650	89.90684234116681	21	1589342	35.94197693966892	4421966	RS_GCF_001675285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	not type material	none	f	2	2	1340025	1340025	5227	1	2764	NZ_MAIB01000007.1	5227	1	101	NZ_MAIB01000007.1	2764	5105	0	100	MAIB01000007.403.3178	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	210569	210569	t	f	f	936747	936747	Contig	ASM202347v1	na	PRJNA224116	SAMN05281843	21	936747	Sweden	2017-03-08	GCA_002023475.1	none	full	none	none	none	0	0	Elizabethkingia miricola	4064	na	3	none	none	none	none	none	2017/03/08	0	172045	1	G4121	CDC	172045	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	0	4421966	11	44	none	4421966	0	MAIB00000000.1	4128	21	5227	1	1479	2713	0	99.797	806981	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MAIB01000007.1	1513	2784	0	99.868	CP023746.3518743.3520264	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	0	19	44	0
+RS_GCF_001975825.1	78	99.34	4.07	303	p__Bacteroidetes (UID2591)	203	0	7620369	88.29535986322065	417	3748367	43.447595426116244	8630543	RS_GCF_001975825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga sp001975825	not type material	none	f	30	26	361054	403015	54466	8	2875	NZ_MTKN01000055.1	537	4	109	NZ_MTKN01000261.1	2875	5310	0	100	MTKN01000142.1504.4383	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;[Flexibacter] sp. ATCC 35208	20689	22416	t	f	f	87120	98317	Scaffold	ASM197582v1	na	PRJNA224116	SAMN06212349	417	87120	USA: New Jersey	2017-01-30	GCA_001975825.1	none	full	none	grass	none	0	0	[Flexibacter] sp. ATCC 35208	7120	na	16	385	26	98317	56291	22934	2017/01/30	32	1936242	4	ATCC 35208	McMaster University	1936242	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;x__unclassified Chitinophaga;s__[Flexibacter] sp. ATCC 35208	3136	8630543	11	66	none	8627407	0	MTKN00000000.1	7378	385	54466	3	none	none	none	none	none	none	1345	NZ_MTKN01000055.1	1345	2466	0	99.777	KC189804.1.1488	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;uncultured bacterium	3136	19	65	0
+RS_GCF_900167935.1	0	99.5	0.54	571	s__algicola (UID2846)	303	0	3779181	89.7423622316496	27	1470730	34.985918615568806	4211145	RS_GCF_900167935.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter arcticus	type strain of species	LPSN	f	6	5	617470	617470	5647	1	2820	NZ_FUYL01000017.1	415045	3	108	NZ_FUYL01000004.1	2820	5208	0	100	FUYL01000017.2494.5323	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter arcticus	155695	191415	t	f	f	245225	304870	Scaffold	IMG-taxon 2595698209 annotated assembly	na	PRJNA224116	SAMN05660866	27	245225	none	2017-03-08	GCA_900167935.1	none	full	none	none	none	0	1	Maribacter arcticus	3676	representative genome	5	22	5	304870	234193	195826	2017/03/08	5	561365	1	DSM 23546	DOE - JOINT GENOME INSTITUTE	561365	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter arcticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter arcticus	7368	4211145	11	37	assembly from type material	4203777	0	FUYL00000000.1	3735	22	5647	1	1490	2752	0	100	1144109	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__arcticus	1522	NZ_FUYL01000017.1	1490	2752	0	100	AY771762.1.1490	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter arcticus	7368	19	37	0
+RS_GCF_002204745.1	0	99.4	1.19	454	o__Cytophagales (UID2936)	336	50	3903172	85.1805101264972	131	2764966	60.34097763624571	4582236	RS_GCF_002204745.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter amundsenii	type strain of species	LPSN	f	13	13	454736	454736	3218	1	2898	NZ_NIRR01000082.1	none	0	none	none	2901	4903	0	97.242	FNOV01000007.1767.4680	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter psychrophilus	34978	34978	f	f	t	103435	103435	Contig	ASM220474v1	na	PRJNA224116	SAMN07187781	131	103435	Antarctica: deglaciated northern part of James Ross Island	2017-06-21	GCA_002204745.1	none	full	none	regolith	64.1667 S 57.7500 W	0	0	Hymenobacter amundsenii	3997	representative genome	5	none	none	none	none	none	2017/06/21	0	2006685	3	CCM 8682	Masaryk University	2006685	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter amundsenii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter amundsenii	0	4582236	11	44	assembly from type material	4582236	0	NIRR00000000.1	4134	131	1573	1	none	none	none	none	none	none	1510	NZ_NIRR01000089.1	1501	2772	0	100	MF782439.1.1501	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp.	0	19	44	0
+RS_GCF_002196555.1	0	99.84	1.9	316	p__Bacteroidetes (UID2605)	210	0	5591342	88.3911890551495	1	2519999	39.83761108295427	6325678	RS_GCF_007830445.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium siyangense	not type material	none	f	1	1	6325678	6325678	6325678	7	2874	NZ_CP021381.1	6325678	7	106	NZ_CP021381.1	2874	5308	0	100	CP021381.307069.309948	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. G1-14	6325678	6325678	t	f	f	6325678	6325678	Complete Genome	ASM219655v1	na	PRJNA224116	SAMN07138959	none	none	China:Changzhou	2017-06-15	GCA_002196555.1	none	full	none	soil	none	1	0	Sphingobacterium sp. G1-14	5313	na	21	1	1	6325678	6325678	6325678	2017/06/15	0	2003121	7	G1-14	changzhou university	2003121	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;x__unclassified Sphingobacterium;s__Sphingobacterium sp. G1-14	0	6325678	11	83	none	6325678	0	none	5440	1	6325678	7	1522	2721	0	98.949	144591	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__multivorum	1527	NZ_CP021381.1	1510	2789	0	100	CP021381.1820636.1822145	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. G1-14	0	19	82	0
+RS_GCF_002056795.1	0	100	1.49	454	o__Cytophagales (UID2936)	336	0	7100657	89.20877255689517	1	3848231	48.3470704225529	7959595	RS_GCF_002056795.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma aerolatum	type strain of species	LPSN	f	1	1	7959595	7959595	7959595	3	2810	NZ_CP020104.1	none	0	none	none	2810	5190	0	100	CP020104.753164.755989	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma aerolatum	7959595	7959595	f	f	t	7959595	7959595	Complete Genome	ASM205679v1	na	PRJNA224116	SAMN06554014	none	none	Korea: Seoul	2017-03-21	GCA_002056795.1	none	full	none	evaporator	none	1	0	Spirosoma aerolatum	6586	representative genome	9	1	1	7959595	7959595	7959595	2017/03/21	0	1211326	3	KACC 17939	Seoul Women's University	1211326	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma aerolatum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma aerolatum	0	7959595	11	44	assembly from type material	7959595	0	none	6788	1	7959595	3	1394	2497	0	98.996	4347251	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__	1504	NZ_CP020104.1	1487	2747	0	100	CP020104.751437.752923	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma aerolatum	0	19	43	0
+RS_GCF_002217405.1	10	98.94	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	2314667	87.74155617158273	109	855720	32.46910441701543	2638051	RS_GCF_002217405.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	type strain of species	LPSN	f	14	11	178171	258714	5652	1	2872	NZ_MUHE01000017.1	none	0	none	none	2872	5304	0	100	CP007207.1059961.1062852	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum FPG3	24178	31783	f	f	t	59260	73660	Scaffold	ASM221740v1	na	PRJNA224116	SAMN06049063	109	59260	USA: WA	2017-07-12	GCA_002217405.1	none	full	none	Oncorynchus kisutch	none	0	1	Flavobacterium psychrophilum DSM 3660 = ATCC 49418	2354	na	2	83	11	73660	45091	17161	2017/07/12	26	96345	1	ATCC 49418	FDA	1121894	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum;x__Flavobacterium psychrophilum DSM 3660 = ATCC 49418	2551	2638051	11	39	assembly from type material	2635500	0	MUHE00000000.1	2345	83	5652	1	1507	2750	0	99.602	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1508	NZ_MUHE01000017.1	1508	2785	0	100	CP007207.923142.924661	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum FPG3	2551	19	39	0
+RS_GCF_002159215.1	0	99.28	0.48	314	p__Bacteroidetes (UID2605)	208	0	3140284	90.15152124110767	17	2039004	58.5358879695924	3483340	GB_GCA_025145285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii	not type material	none	f	4	4	604830	604830	3517	1	2864	NZ_NFHB01000013.1	3517	1	109	NZ_NFHB01000013.1	2864	5273	0	99.895	CCIZ01000012.223558.226427	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. AL-1	204902	204902	t	f	f	416719	416719	Contig	ASM215921v1	na	PRJNA224116	SAMN06473769	17	416719	none	2017-05-30	GCA_002159215.1	none	full	none	caecum	none	0	0	Alistipes onderdonkii	2801	na	4	none	none	none	none	none	2017/05/30	0	328813	2	An90	Veterinary Research Institute	328813	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes onderdonkii	0	3483340	11	45	none	3483340	0	NFHB00000000.1	2790	17	487605	1	1486	2745	0	100	607515	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__onderdonkii	1525	NZ_NFHB01000002.1	1508	2785	0	100	ARFY01000017.91797.93304	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes onderdonkii WAL 8169 = DSM 19147	0	19	45	0
+RS_GCF_002160095.1	0	99.42	0.13	427	o__Bacteroidales (UID2621)	260	0	4670098	90.99008579581046	62	2315048	45.10535242331519	5132535	RS_GCF_000012845.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis	not type material	none	f	8	8	457357	457357	5062	1	2868	NZ_NFJX01000046.1	119886	3	105	NZ_NFJX01000016.1	2868	5201	0	99.407	JNHK01000092.434443.437315	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides distasonis str. 3776 D15 i	82782	82782	t	f	f	189480	189480	Contig	ASM216009v1	na	PRJNA224116	SAMN06473660	62	189480	none	2017-05-30	GCA_002160095.1	none	full	none	caecum	none	0	0	Parabacteroides distasonis	4238	na	5	none	none	none	none	none	2017/05/30	0	823	1	An199	Veterinary Research Institute	823	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Tannerellaceae;g__Parabacteroides;s__Parabacteroides distasonis	0	5132535	11	68	none	5132535	0	NFJX00000000.1	4294	62	5062	1	1521	2743	0	99.211	4317509	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Parabacteroides;s__distasonis	1522	NZ_NFJX01000046.1	1522	2761	0	99.409	CP022754.4154110.4155649	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Tannerellaceae;Parabacteroides;Parabacteroides sp. CT06	0	19	69	0
+RS_GCF_900168165.1	0	99.46	1.09	275	k__Bacteria (UID2569)	184	0	3978834	87.31839912076644	100	1792991	39.393097187411016	4556696	RS_GCF_900168165.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Natronoflexus;s__Natronoflexus saponilacus	type strain of species	LPSN	t	9	8	582050	582050	none	0	none	none	128693	3	106	NZ_FUYV01000016.1	none	none	none	none	none	none	45515	47465	f	f	t	154327	169176	Scaffold	IMG-taxon 2595698211 annotated assembly	na	PRJNA224116	SAMN03080601	100	154327	none	2017-03-08	GCA_900168165.1	none	full	none	none	none	0	0	Alkalitalea saponilacus	3513	na	5	96	8	169176	128693	58814	2017/03/08	4	889453	1	DSM 24412	DOE - JOINT GENOME INSTITUTE	889453	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Alkalitalea;s__Alkalitalea saponilacus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Alkalitalea;s__Alkalitalea saponilacus	5160	4556696	11	43	assembly from type material	4551536	0	FUYV00000000.1	3614	96	20457	1	405	743	0	99.753	2094423	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Marinilabiaceae;g__Alkalitalea;s__saponilacus	407	NZ_FUYV01000029.1	407	752	0	100	CP021904.4605767.4607300	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Alkalitalea;Alkalitalea saponilacus	5160	19	43	0
+RS_GCF_002154225.1	28	99.54	1.79	454	o__Cytophagales (UID2936)	336	0	6233890	85.46762818759503	154	4015519	55.0536185843575	7293861	RS_GCF_002154225.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter crusticola	type strain of species	LPSN	f	7	7	824280	824280	368016	1	2898	NZ_MTSE01000006.1	none	0	none	none	2855	4169	0	93.17	CP007145.3429875.3432780	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter swuensis DY53	47362	47362	f	f	t	364611	364611	Contig	ASM215422v1	na	PRJNA224116	SAMN06251501	154	364611	China: Kubuqi desert	2017-05-22	GCA_002154225.1	none	full	none	biological soil crusts	none	0	0	Hymenobacter crusticola	5813	representative genome	4	none	none	none	none	none	2017/05/22	0	1770526	2	MIMBbqt21	Inner Mongolia Agricultural University	1770526	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter crusticola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Hymenobacter;s__Hymenobacter crusticola	0	7293861	11	41	assembly from type material	7293861	0	MTSE00000000.1	5991	154	368016	2	none	none	none	none	none	none	1511	NZ_MTSE01000006.1	1395	2545	0	99.642	KT347097.1.1419	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Hymenobacteraceae;Hymenobacter;Hymenobacter sp. MIMBbqt21	0	19	41	0
+RS_GCF_002201795.1	0	99.46	1.09	275	k__Bacteria (UID2569)	184	0	4124253	86.36142720465168	1	1875544	39.27369553349933	4775573	RS_GCF_900168165.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Natronoflexus;s__Natronoflexus saponilacus	not type material	none	f	1	1	4775573	4775573	4775573	4	2810	NZ_CP021904.1	4775573	4	106	NZ_CP021904.1	2810	5190	0	100	CP021904.4602347.4605166	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Alkalitalea;Alkalitalea saponilacus	4775573	4775573	t	f	f	4775573	4775573	Complete Genome	ASM220179v1	na	PRJNA224116	SAMN07200443	none	none	USA: Washington State	2017-06-20	GCA_002201795.1	none	full	none	soda lake	none	1	0	Alkalitalea saponilacus	3626	representative genome	12	1	1	4775573	4775573	4775573	2017/06/20	0	889453	4	BZ-SP2;SC	Chinese Academy of Agricultural Sciences	889453	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Alkalitalea;s__Alkalitalea saponilacus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Alkalitalea;s__Alkalitalea saponilacus	0	4775573	11	48	assembly from type material	4775573	0	none	3738	1	4775573	4	1488	2645	0	98.79	2094423	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Marinilabiaceae;g__Alkalitalea;s__saponilacus	1519	NZ_CP021904.1	1519	2806	0	100	CP021904.1216225.1217758	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinilabiliaceae;Alkalitalea;Alkalitalea saponilacus	0	19	48	0
+RS_GCF_001988955.1	0	100	0.45	454	o__Cytophagales (UID2936)	336	0	5297523	91.3731842299624	1	3055243	52.69770070017687	5797678	RS_GCF_001988955.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma montaniterrae	type strain of species	LPSN	f	1	1	5797678	5797678	5797678	3	2820	NZ_CP014263.1	none	0	none	none	2820	5208	0	100	CP014263.3064186.3067028	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma montaniterrae	5797678	5797678	f	f	t	5797678	5797678	Complete Genome	ASM198895v1	na	PRJNA224116	SAMN04395154	none	none	South Korea: Seoul	2017-02-06	GCA_001988955.1	none	full	none	soil	none	1	0	Spirosoma montaniterrae	4938	representative genome	9	1	1	5797678	5797678	5797678	2017/02/06	0	1178516	3	DY10	Seoul Women's University	1178516	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma montaniterrae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma montaniterrae	0	5797678	11	39	assembly from type material	5797678	0	none	5069	1	5797678	3	none	none	none	none	none	none	1504	NZ_CP014263.1	1504	2778	0	100	CP014263.3067265.3068776	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma montaniterrae	0	20	39	0
+RS_GCF_002205795.1	0	100	0.49	323	o__Flavobacteriales (UID2815)	204	0	2389273	90.73906479943034	10	1043776	39.64019938286257	2633125	RS_GCF_002205795.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella sp002205795	not type material	none	f	2	2	1151777	1151777	5699	1	2752	NZ_NIUY01000008.1	5699	2	101	NZ_NIUY01000008.1	2754	4946	0	99.092	CYUH01000010.36563.39326	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. FF12	263312	263312	t	f	f	939449	939449	Contig	ASM220579v1	na	PRJNA224116	SAMN07211361	10	939449	India: River Ganges Varanasi; Uttar Pradesh	2017-06-22	GCA_002205795.1	none	full	none	fresh water	none	0	0	Chryseobacterium sp. VAUSW3	2432	na	4	none	none	none	none	none	2017/06/22	0	2010998	1	VAUSW3	Institute of Microbial Technology	2010998	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;x__unclassified Chryseobacterium;s__Chryseobacterium sp. VAUSW3	0	2633125	11	38	none	2633125	0	NIUY00000000.1	2431	10	5699	1	1512	2643	0	98.214	3126923	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_NIUY01000008.1	1513	2662	0	98.414	CP023540.625468.626988	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. 6424	0	19	38	0
+RS_GCF_002217335.1	48	99.65	1.62	511	f__Flavobacteriaceae (UID2817)	283	0	5166242	87.52525381727595	79	1929241	32.68784734970932	5902573	RS_GCF_000737695.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium hydatis	type strain of species	LPSN	f	9	8	620299	877782	5234	1	2870	NZ_MUGY01000017.1	5234	1	104	NZ_MUGY01000017.1	2870	5295	0	99.965	JPRM01000023.130064.132951	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium hydatis	74709	81980	t	f	f	222010	222010	Scaffold	ASM221733v1	na	PRJNA224116	SAMN06049047	79	222010	USA: hatchery in Michigan	2017-07-12	GCA_002217335.1	none	full	none	salmon	none	0	0	Flavobacterium hydatis	4956	representative genome	3	72	8	222010	86755	39936	2017/07/12	7	991	1	ATCC 29551	FDA	991	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium hydatis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium hydatis	512	5902573	11	69	assembly from type material	5902061	0	MUGY00000000.1	5048	72	5234	1	1439	2658	0	100	3909069	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_MUGY01000017.1	1461	2693	0	99.932	JPRM01000023.133446.134909	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium hydatis	512	19	68	0
+RS_GCF_002159615.1	0	99.25	0	490	o__Bacteroidales (UID2657)	267	0	3461308	87.91313400848473	219	1803819	45.81487156706393	3937191	RS_GCF_014837065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Phocaeicola;s__Phocaeicola intestinalis	not type material	none	f	36	36	135850	135850	1559	2	1554	NZ_NFJA01000193.1	76765	4	105	NZ_NFJA01000003.1	1556	2289	0	93.316	CP002530.3409442.3412319	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides salanitronis DSM 18170	17978	17978	f	f	t	35216	35216	Contig	ASM215961v1	na	PRJNA224116	SAMN06473706	219	35216	none	2017-05-30	GCA_002159615.1	none	full	none	caecum	none	0	0	Bacteroides sp. An279	3258	na	9	none	none	none	none	none	2017/05/30	0	1965620	1	An279	Veterinary Research Institute	1965620	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. An279	0	3937191	11	72	none	3937191	0	NFJA00000000.1	3371	219	1560	1	1451	2658	0	99.724	157533	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	1525	NZ_NFJA01000192.1	1486	2717	0	99.664	AB910339.1.1489	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides gallinaceum	0	19	72	0
+RS_GCF_900156785.1	0	99.62	0	439	o__Cytophagales (UID2938)	266	0	3647236	88.78713232224308	46	1584929	38.588296534031414	4107843	RS_GCF_900156785.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__Belliella pelovolcani	type strain of species	LPSN	f	6	6	453937	453937	5424	1	2879	NZ_FTOP01000034.1	5424	1	99	NZ_FTOP01000034.1	2879	5317	0	100	FTOP01000034.388.3274	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Belliella;Belliella pelovolcani	89288	93360	t	f	f	231590	231590	Scaffold	IMG-taxon 2681813558 annotated assembly	na	PRJNA224116	SAMN05421761	46	231590	none	2017-01-14	GCA_900156785.1	none	full	none	none	none	0	0	Belliella pelovolcani	3558	representative genome	7	44	6	231590	120957	55885	2017/01/14	2	529505	5	DSM 46698	DOE - JOINT GENOME INSTITUTE	529505	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__Belliella pelovolcani	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__Belliella pelovolcani	564	4107843	11	40	assembly from type material	4107279	0	FTOP00000000.1	3621	44	5424	1	1497	2754	0	99.866	570390	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Belliella;s__pelovolcani	1519	NZ_FTOP01000034.1	1444	2662	0	99.931	EU685336.1.1444	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Belliella;Belliella pelovolcani	564	19	40	0
+RS_GCF_900168065.1	0	100	1.72	303	p__Bacteroidetes (UID2591)	203	0	7243998	91.29237601328705	11	3700761	46.64622133643437	7934943	RS_GCF_900168065.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga ginsengisegetis	type strain of species	LPSN	f	3	2	2089263	3474743	none	0	none	none	1166127	1	388	NZ_FUZZ01000002.1	none	none	none	none	none	none	721243	881660	f	f	t	1166127	1166127	Scaffold	IMG-taxon 2595698247 annotated assembly	na	PRJNA224116	SAMN05660461	11	1166127	none	2017-03-09	GCA_900168065.1	none	full	none	none	none	0	0	Chitinophaga ginsengisegetis	6375	representative genome	3	9	2	1166127	852829	778736	2017/03/09	2	393003	0	DSM 18108	DOE - JOINT GENOME INSTITUTE	393003	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga ginsengisegetis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga ginsengisegetis	1265	7934943	11	63	assembly from type material	7933678	0	FUZZ00000000.1	6398	9	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1265	19	62	0
+RS_GCF_002023385.1	0	100	0	152	k__Bacteria (UID2565)	93	0	3800921	89.49675688186913	36	1510077	35.55638071454321	4246993	RS_GCF_002023715.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia occulta	not type material	none	f	5	5	617553	617553	5342	1	2762	NZ_MBDR01000021.1	5342	1	101	NZ_MBDR01000021.1	2762	5101	0	100	MBDR01000021.2152.4925	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia sp. F8124	117972	117972	t	f	f	273260	273260	Contig	ASM202338v1	na	PRJNA224116	SAMN05334989	36	273260	none	2017-03-08	GCA_002023385.1	none	full	none	none	none	0	0	Elizabethkingia occulta	3816	na	3	none	none	none	none	none	2017/03/08	0	1867263	1	F8124	CDC	1867263	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia occulta	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia occulta	0	4246993	11	43	none	4246993	0	MBDR00000000.1	3882	36	5342	1	1479	2647	0	98.986	806981	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1513	NZ_MBDR01000021.1	1513	2750	0	99.471	CP016377.312029.313550	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia ursingii	0	19	42	0
+RS_GCF_002177115.1	0	100	0.74	324	o__Flavobacteriales (UID2815)	204	0	3829010	86.94478328121353	255	1590225	36.109011988312325	4403956	RS_GCF_002177115.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium mucoviscidosis	type strain of species	LPSN	f	7	7	600494	600494	2559	2	1688	NZ_MVAG01000141.1	263417	2	102	NZ_MVAG01000114.1	1688	2963	0	98.341	FTOV01000030.2534.5290	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium gambrini	17270	17270	f	f	t	197939	197939	Contig	ASM217711v1	na	PRJNA224116	SAMN06292066	255	197939	USA: MA	2017-06-08	GCA_002177115.1	none	full	none	sputum	42.4256 N 71.2491 W	0	0	Chryseobacterium mucoviscidosis	4100	representative genome	7	none	none	none	none	none	2017/06/08	0	1945581	3	VT16-26	Human Microbiology Institute	1945581	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium mucoviscidosis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium mucoviscidosis	0	4403956	11	85	assembly from type material	4403956	0	MVAG00000000.1	4136	255	962	3	958	1764	0	99.896	408706	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	960	NZ_MVAG01000116.1	960	1768	0	99.896	AF531766.1.1476	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Candidatus Chryseobacterium massiliae	0	19	85	0
+RS_GCF_002117125.1	0	98.49	0	571	s__algicola (UID2846)	303	0	3051240	89.91861988279966	2	1370355	40.38491292232928	3393335	RS_GCF_002117125.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens spongiae	type strain of species	LPSN	f	1	1	3379276	3379276	3379276	2	2815	NZ_CP019344.1	3379276	2	104	NZ_CP019344.1	2815	5199	0	100	CP019344.1699685.1702510	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens spongiae	1696617	1696667	t	f	f	3379276	3379276	Chromosome	ASM211712v1	na	PRJNA224116	SAMN06075354	2	3379276	Bahamas	2017-05-02	GCA_002117125.1	none	full	none	none	none	2	1	Nonlabens spongiae	3082	representative genome	6	2	1	3379276	3379276	3379276	2017/05/02	1	331648	2	JCM 13191	Atmosphere and Ocean Research Institute, The University of Tokyo	331648	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens spongiae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens spongiae	100	3393335	11	37	assembly from type material	3393235	0	none	3146	2	3379276	2	none	none	none	none	none	none	1523	NZ_CP019344.1	1523	2813	0	100	CP019344.3155271.3156802	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens spongiae	100	19	37	0
+RS_GCF_002025185.1	0	100	0	323	o__Flavobacteriales (UID2815)	204	0	2174640	89.66711294607497	1	848069	34.968499985774585	2425237	RS_GCF_000252855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	not type material	none	f	1	1	2425237	2425237	2425237	3	2742	NZ_CP011859.1-#3	2425237	3	101	NZ_CP011859.1	2742	5064	0	100	CP011859.711376.714128	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	2425237	2425237	t	f	f	2425237	2425237	Complete Genome	ASM202518v1	na	PRJNA224116	SAMN03761967	none	none	China: Shanghai	2017-03-13	GCA_002025185.1	none	full	none	heart blood of a sicked duck	none	1	0	Riemerella anatipestifer	2315	na	9	1	1	2425237	2425237	2425237	2017/03/13	0	34085	3	HXb2	the Chinese Academy of Agricultural Sciences (CAAS)	34085	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Riemerella;s__Riemerella anatipestifer	0	2425237	11	40	none	2425237	0	none	2351	1	2425237	3	none	none	none	none	none	none	1513	NZ_CP011859.1	1505	2780	0	100	CP011859.961792.963296	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Riemerella;Riemerella anatipestifer	0	19	40	0
+RS_GCF_002017945.1	0	98.76	4.18	511	f__Flavobacteriaceae (UID2817)	283	84.21	3444661	86.54248712161258	63	1411531	35.462823014879234	3980312	RS_GCF_000611675.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium succinicans	not type material	none	f	2	2	1979307	1979307	5757	9	2868	NZ_MUFX01000010.1	1979307	8	103	NZ_MUFX01000001.1	2868	5297	0	100	MUFX01000010.2330.5218	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. LM5	63179	63179	t	f	f	507556	507556	Contig	ASM201794v1	na	PRJNA224116	SAMN06263773	63	507556	USA: Chicago; Lake Michigan	2017-03-03	GCA_002017945.1	none	full	none	freshwater lake	41.795262 N 87.576481 W	0	1	Flavobacterium sp. LM5	3414	na	27	none	none	none	none	none	2017/03/03	0	1938610	10	LM5	The University of Chicago	1938610	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. LM5	0	3980312	11	81	none	3980312	0	MUFX00000000.1	3539	63	507556	10	1501	2754	0	99.8	1144295	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1511	NZ_MUFX01000002.1	1501	2754	0	99.8	AM230492.1.1501	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium succinicans	0	19	81	0
+RS_GCF_900163865.1	0	98.57	0.48	316	p__Bacteroidetes (UID2605)	210	0	3870128	87.92340420891546	78	1849407	42.01570573577869	4401704	RS_GCF_900163865.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium sp900163865	not type material	none	f	7	7	580383	580383	5523	1	2883	NZ_FUKU01000064.1	5523	1	107	NZ_FUKU01000064.1	2834	5234	0	100	FUKU01000064.277.3110	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. JB170	56432	56432	t	f	f	191769	191769	Contig	ASM90016386v1	na	PRJNA224116	SAMEA81164668	78	191769	none	2017-02-11	GCA_900163865.1	none	full	none	none	none	0	0	Sphingobacterium sp. JB170	3794	na	3	none	none	none	none	none	2017/02/11	0	1434842	1	JB170	MICALIS	1434842	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;x__unclassified Sphingobacterium;s__Sphingobacterium sp. JB170	0	4401704	11	51	none	4401704	0	FUKU00000000.1	3919	78	5523	1	1493	2569	0	97.79	1977254	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	1525	NZ_FUKU01000064.1	1450	2678	0	100	FUKU01000064.3640.5089	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Sphingobacterium;Sphingobacterium sp. JB170	0	19	52	0
+RS_GCF_900167975.1	0	99.84	0.6	454	o__Cytophagales (UID2936)	336	0	6498097	89.73695505430537	11	3033829	41.92858885208836	7241272	RS_GCF_900167975.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Ohtaekwangia;s__Ohtaekwangia koreensis	type strain of species	LPSN	t	3	2	1619890	3248596	3248596	4	2876	NZ_FUZU01000001.1	3248596	4	107	NZ_FUZU01000001.1	2876	5312	0	100	FUZU01000002.1409748.1412628	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Ohtaekwangia;Ohtaekwangia koreensis	657791	1206878	t	f	f	1073266	1413028	Scaffold	IMG-taxon 2595698225 annotated assembly	na	PRJNA224116	SAMN05660236	11	1073266	none	2017-03-09	GCA_900167975.1	none	full	none	none	none	0	0	Ohtaekwangia koreensis	5793	representative genome	12	6	2	1413028	1073266	982992	2017/03/09	5	688867	4	DSM 25262	DOE - JOINT GENOME INSTITUTE	688867	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Fulvivirgaceae;g__Ohtaekwangia;s__Ohtaekwangia koreensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Fulvivirgaceae;g__Ohtaekwangia;s__Ohtaekwangia koreensis	5567	7241272	11	45	assembly from type material	7235705	0	FUZU00000000.1	5902	6	3248596	4	1440	2660	0	100	582988	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__;s__	1519	NZ_FUZU01000001.1	1444	2667	0	100	GU117702.1.1444	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Ohtaekwangia;Ohtaekwangia koreensis	5567	19	45	0
+RS_GCF_002159425.1	0	99.52	0.48	314	p__Bacteroidetes (UID2605)	208	0	2253777	86.06521975724458	26	1620370	61.877239912398785	2618685	RS_GCF_900290115.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes excrementigallinarum	not type material	none	f	4	4	463707	463707	411312	1	2864	NZ_NFIO01000002.1	82266	2	109	NZ_NFIO01000011.1	2864	5256	0	99.791	CDYM01011941.164889.167757	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;gut metagenome	100718	100718	t	f	f	206498	206498	Contig	ASM215942v1	na	PRJNA224116	SAMN06473718	26	206498	none	2017-05-30	GCA_002159425.1	none	full	none	caecum	none	0	0	Alistipes sp. An31A	2091	na	7	none	none	none	none	none	2017/05/30	0	1965631	3	An31A	Veterinary Research Institute	1965631	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__unclassified Alistipes;s__Alistipes sp. An31A	0	2618685	11	46	none	2618685	0	NFIO00000000.1	2138	26	411312	1	1444	2651	0	99.792	2686372	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__;s__	1525	NZ_NFIO01000002.1	1508	2785	0	100	CDYS01029159.2398.3905	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;gut metagenome	0	19	46	0
+GB_GCA_002167775.1	15029	94.41	4.32	277	k__Bacteria (UID2569)	185	100	2339861	95.170075774523	49	928812	38.010280813281824	2458610	GB_GCA_002167775.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Crocinitomicaceae;g__UBA952;s__UBA952 sp002167775	not type material	none	f	12	12	185399	185399	23188	1	343	NHBV01000043.1	23188	1	99	NHBV01000043.1	343	590	4.43e-167	97.668	CP022585.786284.789163	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Fluviicola;Candidatus Fluviicola riflensis	50175	50175	f	f	t	59190	59190	Contig	ASM216777v1	na	PRJNA385857	SAMN06971870	49	59190	Mediterranean Sea	2017-06-05	GCA_002167775.1	derived from metagenome	full	TMED16	seawater	none	0	0	Crocinitomicaceae bacterium TMED16	2152	na	3	none	none	none	none	none	2017/06/05	0	1986722	1	TMED16	Tara Oceans Consortium	1986722	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;x__unclassified Crocinitomicaceae;s__Crocinitomicaceae bacterium TMED16	0	2458610	11	35	none	2458610	0	NHBV00000000.1	2176	49	47363	1	none	none	none	none	none	none	940	NHBV01000010.1	936	1729	0	100	KX177569.1.1492	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Fluviicola;uncultured bacterium	0	19	35	0
+GB_GCA_000263195.1	0	100	0.3	454	o__Cytophagales (UID2936)	336	0	4657380	89.21566918456405	6	1857564	35.58305642081074	5220361	GB_GCA_000263195.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Emticicia;s__Emticicia oligotrophica	type strain of species	LPSN	t	1	1	4798158	4798158	4798158	2	2796	CP002961.1	4798158	2	98	CP002961.1	2796	5164	0	100	CP002961.2131413.2134221	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Emticicia;Emticicia oligotrophica DSM 17448	870060	870060	t	f	f	4798158	4798158	Complete Genome	ASM26319v1	na	PRJNA60431	SAMN02232019	none	none	India: Assam; Jorhat	2012-05-17	GCA_000263195.1	none	full	none	warm spring water	26.7560 N 94.2094 E	6	0	Emticicia oligotrophica DSM 17448	4268	na	6	6	1	4798158	4798158	4798158	2012/05/17	0	312279	2	DSM 17448	DOE Joint Genome Institute	929562	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Emticicia;s__Emticicia oligotrophica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Emticicia;s__Emticicia oligotrophica;x__Emticicia oligotrophica DSM 17448	0	5220361	11	40	none	5220361	0	none	4319	6	4798158	2	none	none	none	none	none	none	1498	CP002961.1	1489	2750	0	100	CP002961.2129439.2130927	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Emticicia;Emticicia oligotrophica DSM 17448	0	19	42	0
+GB_GCA_002167805.1	5868	94.44	4.3	278	k__Bacteria (UID2569)	186	20	1644704	95.61665529137225	32	618710	36.09250545724796	1720102	GB_GCA_002167805.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Schleiferiaceae;g__TMED14;s__TMED14 sp002167805	not type material	none	f	8	8	161349	161349	64002	1	369	NHBT01000004.1	64002	1	104	NHBT01000004.1	369	652	0	98.103	KX158599.21523.24390	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Cryomorphaceae;Ant39E11;uncultured bacterium	53753	53753	f	f	t	88906	88906	Contig	ASM216780v1	na	PRJNA385857	SAMN06971868	32	88906	Mediterranean Sea	2017-06-05	GCA_002167805.1	derived from metagenome	full	TMED14	seawater	none	0	0	Owenweeksia sp. TMED14	1510	na	3	none	none	none	none	none	2017/06/05	0	1986609	1	TMED14	Tara Oceans Consortium	1986609	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Schleiferiaceae;g__Owenweeksia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Schleiferiaceae;g__Owenweeksia;x__unclassified Owenweeksia;s__Owenweeksia sp. TMED14	0	1720102	11	38	none	1720102	0	NHBT00000000.1	1536	32	39544	1	none	none	none	none	none	none	1407	NHBT01000008.1	1403	2566	0	99.644	JN986401.1.1482	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Cryomorphaceae;uncultured;uncultured bacterium	0	19	38	0
+GB_GCA_002170965.1	26138	62.14	0.95	316	p__Bacteroidetes (UID2605)	210	0	1092174	91.11457417396774	17	420007	35.82014832705639	1198682	GB_GCA_002711215.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA8316;s__UBA8316 sp002711215	not type material	none	f	7	7	116981	116981	none	0	none	none	none	0	none	none	none	none	none	none	none	none	70510	70510	f	f	t	72692	72692	Contig	ASM217096v1	na	PRJNA385857	SAMN06972025	17	72692	Mediterranean Sea	2017-06-05	GCA_002170965.1	derived from metagenome	full	TMED171	seawater	none	0	0	Flavobacteriaceae bacterium TMED171	1085	na	0	none	none	none	none	none	2017/06/05	0	1986706	0	TMED171	Tara Oceans Consortium	1986706	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium TMED171	0	1198682	11	20	none	1198682	0	NHHU00000000.1	1118	17	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	12	20	0
+GB_GCA_000699685.1	0	99.46	0.04	839	g__Bacteroides (UID2691)	309	0	6560178	90.11182766690462	91	3067001	42.128897350990194	7280041	RS_GCF_001314995.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides ovatus	not type material	none	f	9	9	613150	613150	144272	8	2880	JNHH01000033.1	25346	5	107	JNHH01000004.1	2880	5319	0	100	JNHH01000033.247.3133	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis str. 3725 D9 ii	80000	80000	t	f	f	252957	252957	Contig	ASM69968v1	na	PRJNA206117	SAMN02370949	91	252957	USA	2014-06-09	GCA_000699685.1	none	full	none	tissue	none	0	0	Bacteroides fragilis str. 3725 D9 ii	6296	na	16	none	none	none	none	none	2014/06/09	0	817	5	3725 D9 ii	IGS	1339286	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis;x__Bacteroides fragilis str. 3725 D9 ii	0	7280041	11	81	none	7280041	0	JNHH00000000.1	6022	91	513209	7	none	none	none	none	none	none	1527	JNHH01000023.1	1527	2802	0	99.804	CP012938.5127208.5128733	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus	0	19	81	0
+GB_GCA_000801645.1	0	96.66	0.56	511	f__Flavobacteriaceae (UID2817)	283	0	2461080	84.94359079850247	25	941285	32.48822787750435	2897311	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	4	4	639268	639268	639268	6	2868	JRWB01000023.1	252719	6	104	JRWB01000014.1	2864	5289	0	100	JRWC01000005.274775.277642	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	115892	115892	t	f	f	285845	285845	Contig	ASM80164v1	na	PRJNA262097	SAMN03079822	25	285845	USA: Washington	2014-12-16	GCA_000801645.1	none	full	none	parent strain CSF 259-93 passaged without rifampicin	none	0	none	Flavobacterium psychrophilum	0	na	none	none	none	none	none	none	2014/12/16	0	96345	none	CN	Washington State University	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2897311	none	none	none	2897311	0	JRWB00000000.1	3067	25	639268	6	none	none	none	none	none	none	1508	JRWB01000023.1	1508	2785	0	100	CP010274.2488027.2489544	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	50	0
+GB_GCA_002162685.1	7	99.67	5.45	571	s__algicola (UID2846)	303	14.29	3446483	91.85237559425168	25	1203341	32.070569372463794	3752198	GB_GCA_002162685.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Psychroserpens;s__Psychroserpens sp002162685	not type material	none	f	5	5	526760	526760	none	0	none	none	none	0	none	none	none	none	none	none	none	none	150086	163139	f	f	t	312216	312216	Scaffold	ASM216268v1	na	PRJNA320927	SAMN05179564	25	312216	USA: Gulf of Mexico	2017-05-31	GCA_002162685.1	derived from environmental sample	full	33_180_T64	sample BD02T64 sea water enriched with oil for 64 days	28.74 N 88.37 W	0	1	Flavobacteriales bacterium 33_180_T64	3290	na	0	23	5	312216	179800	103603	2017/05/31	2	1856290	0	33_180_T64	Lawrence Berkeley National Lab	1856290	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium 33_180_T64	25	3752198	11	35	none	3752173	0	MAAQ00000000.1	3329	23	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	25	18	35	0
+GB_GCA_002167585.1	4865	86.47	2.42	278	k__Bacteria (UID2569)	186	16.67	2227864	93.40459571956116	41	1273948	53.52023328044109	2385176	GB_GCA_002863145.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UA16;g__UBA11663;s__UBA11663 sp002863145	not type material	none	f	8	8	303591	303591	142887	1	333	NHCY01000024.1	142887	1	100	NHCY01000024.1	333	610	3.29e-173	99.7	FQ032823.9025.11793	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;uncultured;uncultured Flavobacteriia bacterium	58175	58175	f	f	t	82804	82804	Contig	ASM216758v1	na	PRJNA385857	SAMN06971899	41	82804	Mediterranean Sea	2017-06-05	GCA_002167585.1	derived from metagenome	full	TMED45	seawater	none	0	0	Crocinitomicaceae bacterium TMED45	2113	na	2	none	none	none	none	none	2017/06/05	0	1986728	0	TMED45	Tara Oceans Consortium	1986728	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;x__unclassified Crocinitomicaceae;s__Crocinitomicaceae bacterium TMED45	0	2385176	11	49	none	2385176	0	NHCY00000000.1	2201	41	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	49	0
+GB_GCA_000801625.1	0	94.64	0.62	511	f__Flavobacteriaceae (UID2817)	283	0	2461246	84.89555200048567	7	941917	32.489464138749824	2899146	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	2	2	1001774	1001774	800436	6	2868	JRWC01000005.1	1001774	6	104	JRWC01000003.1	2864	5289	0	100	JRWC01000005.274775.277642	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	414163	414163	t	f	f	800436	800436	Contig	ASM80162v1	na	PRJNA262098	SAMN03079823	7	800436	USA: Washington	2014-12-16	GCA_000801625.1	none	full	none	parent strain CSF 259-93 passaged with rifampicin	none	0	none	Flavobacterium psychrophilum	0	na	none	none	none	none	none	none	2014/12/16	0	96345	none	CR	Washington State University	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2899146	none	none	none	2899146	0	JRWC00000000.1	3102	7	1001774	6	none	none	none	none	none	none	1508	JRWC01000003.1	1508	2785	0	100	CP010278.992834.994351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	49	0
+GB_GCA_002167615.1	1999	89.07	0.55	274	k__Bacteria (UID2570)	183	100	1533666	95.78647580146522	8	570860	35.69813855150078	1601130	GB_GCA_002457675.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__NS11-12g;f__UBA9320;g__MED-G17;s__MED-G17 sp002457675	not type material	none	f	2	2	414201	414201	414201	2	1867	NHCS01000008.1	208155	1	106	NHCS01000004.1	1440	1404	0	84.792	KX158667.8546.11359	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;uncultured;uncultured bacterium	200141	200141	f	f	t	392182	392182	Contig	ASM216761v1	na	PRJNA385857	SAMN06971893	8	392182	Mediterranean Sea	2017-06-05	GCA_002167615.1	derived from metagenome	full	TMED39	seawater	none	0	0	Bacteroidetes bacterium TMED39	1438	na	4	none	none	none	none	none	2017/06/05	0	1986664	1	TMED39	Tara Oceans Consortium	1986664	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium TMED39	0	1601130	11	27	none	1601130	0	NHCS00000000.1	1446	8	414201	1	none	none	none	none	none	none	1520	NHCS01000008.1	1364	2514	0	99.927	CENP01005882.1.1364	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;NS11-12 marine group;marine metagenome	0	19	27	0
+GB_GCA_002172435.2	2956	82.12	1	511	f__Flavobacteriaceae (UID2817)	283	25	1526554	94.4248914136697	26	655045	40.591982549745	1616686	GB_GCA_003533785.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA11891;s__UBA11891 sp003533785	not type material	none	f	6	6	220421	220421	none	0	none	none	none	0	none	none	none	none	none	none	none	none	62180	62180	f	f	t	96672	96672	Contig	ASM217243v2	na	PRJNA385857	SAMN06971974	26	96672	Mediterranean Sea	2018-11-26	GCA_002172435.2	derived from metagenome	full	TMED120	seawater	none	0	1	Flavobacteriaceae bacterium TMED120	1376	na	1	none	none	none	none	none	2018/11/26	0	1986702	1	TMED120	University of Southern California	1986702	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium TMED120	0	1616686	11	33	none	1616686	0	NHFV00000000.2	1519	26	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	33	0
+GB_GCA_002171295.2	7040	67.27	2.92	571	s__algicola (UID2846)	303	22.22	1339369	94.51491710523902	35	479768	34.024699693204106	1417098	GB_GCA_002171295.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA8316;s__UBA8316 sp002171295	not type material	none	f	12	12	111628	111628	none	0	none	none	none	0	none	none	none	none	none	none	none	none	40488	40488	f	f	t	37286	37286	Contig	ASM217129v2	na	PRJNA385857	SAMN06971975	35	37286	Mediterranean Sea	2018-11-25	GCA_002171295.2	derived from metagenome	full	TMED121	seawater	none	0	0	Flavobacteriaceae bacterium TMED121	1449	na	1	none	none	none	none	none	2018/11/25	0	1986703	1	TMED121	University of Southern California	1986703	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium TMED121	0	1417098	11	20	none	1417098	0	NHFW00000000.2	1276	35	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	13	20	0
+GB_GCA_002170625.2	9226	96.51	6	278	k__Bacteria (UID2569)	186	84.62	2480566	95.06998313659359	83	1390478	53.4804578815019	2609200	GB_GCA_002448555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UA16;g__UA16;s__UA16 sp002448555	not type material	none	f	15	15	274378	274378	none	0	none	none	none	0	none	none	none	none	none	none	none	none	31436	31436	f	f	t	48116	48116	Contig	ASM217062v2	na	PRJNA385857	SAMN06972063	83	48116	Mediterranean Sea	2018-11-25	GCA_002170625.2	derived from metagenome	full	TMED209	seawater	none	0	0	Crocinitomicaceae bacterium TMED209	1448	na	1	none	none	none	none	none	2018/11/25	0	1986724	1	TMED209	University of Southern California	1986724	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;x__unclassified Crocinitomicaceae;s__Crocinitomicaceae bacterium TMED209	0	2609200	11	41	none	2609200	0	NHJG00000000.2	2263	83	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	17	42	0
+RS_GCF_002831565.1	27	100	1.79	454	o__Cytophagales (UID2936)	336	18.18	7611621	86.54647038938869	1	4207958	47.84592276581302	8794837	RS_GCF_002831565.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma pollinicola	type strain of species	LPSN	f	1	1	8794837	8794837	8794837	5	2610	NZ_CP025096.1-#4	none	0	none	none	2610	4820	0	100	CP025096.8388565.8391197	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma pollinicola	8794837	8794837	f	f	t	8794837	8794837	Complete Genome	ASM283156v1	na	PRJNA224116	SAMN08109548	none	none	Germany	2017-12-11	GCA_002831565.1	none	full	none	pollen	none	1	0	Spirosoma pollinicola	7536	representative genome	6	1	1	8794837	8794837	8794837	2017/12/11	0	2057025	1	Ha7	Justus-Liebig University	2057025	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma pollinicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma pollinicola	0	8794837	11	42	assembly from type material	8794837	0	none	7821	1	8794837	4	none	none	none	none	none	none	1504	NZ_CP025096.1	1504	2778	0	100	CP025096.3889391.3890907	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma pollinicola	0	19	42	0
+RS_GCF_002831645.1	0	99.67	0.33	571	s__algicola (UID2846)	303	0	3811192	88.33818539190418	1	1413339	32.759252906599414	4314320	RS_GCF_002831645.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Olleya;s__Olleya sp002831645	not type material	none	f	1	1	4314320	4314320	4314320	4	2808	NZ_CP025117.1	4314320	3	102	NZ_CP025117.1	2808	5186	0	100	CP025117.4309247.4312074	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Olleya;Olleya sp. Bg11-27	4314320	4314320	t	f	f	4314320	4314320	Complete Genome	ASM283164v1	na	PRJNA224116	SAMN08125748	none	none	USA: near Point Barrow; Alaska	2017-12-11	GCA_002831645.1	none	full	none	sea ice	71.3 N 157 W	1	1	Olleya sp. Bg11-27	3810	na	11	1	1	4314320	4314320	4314320	2017/12/11	0	2058135	4	Bg11-27	University of Alaska Fairbanks	2058135	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Olleya;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Olleya;x__unclassified Olleya;s__Olleya sp. Bg11-27	0	4314320	11	45	none	4314320	0	none	3840	1	4314320	4	1481	2721	0	99.797	317388	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Olleya;s__	1514	NZ_CP025117.1-#2	1471	2708	0	99.864	EU000225.1.1471	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Psychroserpens;Psychroserpens mesophilus	0	19	45	0
+RS_GCF_002807055.1	0	98.35	1.52	571	s__algicola (UID2846)	303	0	3190152	90.63423611906214	49	1207651	34.31012875982759	3519809	RS_GCF_002807055.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Confluentibacter;s__Confluentibacter citreus	type strain of species	LPSN	f	2	2	1339188	1339188	4662	4	2142	NZ_NIXN01000015.1	273145	2	102	NZ_NIXN01000005.1	2144	3400	0	95.336	CP022985.31547.34357	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Mariniflexile;Mariniflexile sp. TRM1-10	71832	71832	t	f	f	424199	424199	Contig	ASM280705v1	na	PRJNA224116	SAMN07193017	49	424199	China: Xinjiang; Sayram Lake	2017-12-04	GCA_002807055.1	none	full	none	sediment	none	0	1	Confluentibacter citreus	3068	representative genome	9	none	none	none	none	none	2017/12/04	0	2007307	3	XJNY	Shandong Uniwersity at Weihai	2007307	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Confluentibacter;s__Confluentibacter citreus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Confluentibacter;s__Confluentibacter citreus	0	3519809	11	39	assembly from type material	3519809	0	NIXN00000000.1	3113	49	4662	3	1470	2407	0	96.259	100578	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Yeosuana;s__yeosuensis	1513	NZ_NIXN01000015.1	1480	2678	0	99.324	KY002686.1.1500	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Confluentibacter;Confluentibacter sp. 3B	0	19	39	0
+RS_GCF_900105455.1	0	99.55	1.24	548	f__Flavobacteriaceae (UID2845)	298	0	4883033	88.38881475437017	8	1790148	32.40384817282747	5524492	RS_GCF_900105455.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum sp900105455	not type material	none	f	2	2	1695369	1695369	778020	6	2855	NZ_FNSF01000002.1	1695369	5	104	NZ_FNSF01000001.1	2855	5273	0	100	FNSF01000002.112461.115331	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. MAR_2009_124	690561	690561	t	f	f	1285916	1285916	Contig	IMG-taxon 2634166274 annotated assembly	na	PRJNA224116	SAMN04489761	8	1285916	none	2016-10-22	GCA_900105455.1	none	full	none	none	none	0	1	Tenacibaculum sp. MAR_2009_124	4520	na	17	none	none	none	none	none	2016/10/22	0	1250059	6	Mar_2009_124	DOE - JOINT GENOME INSTITUTE	1250059	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;x__unclassified Tenacibaculum;s__Tenacibaculum sp. MAR_2009_124	0	5524492	11	64	none	5524492	0	FNSF00000000.1	4664	8	250860	6	1479	2523	0	97.498	58642	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	1520	NZ_FNSF01000003.1	1520	2808	0	100	FNSF01000003.636.2162	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. MAR_2009_124	0	19	61	0
+RS_GCF_900113045.1	0	97.88	3.55	474	o__Cytophagales (UID2937)	330	8.62	4887271	88.79194241906565	133	2070846	37.69166435361087	5504183	RS_GCF_900113045.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Thermoflexibacteraceae;g__Thermoflexibacter;s__Thermoflexibacter ruber	type strain of species	LPSN	t	17	17	285794	285794	12357	2	2801	NZ_FONY01000066.1	12357	2	106	NZ_FONY01000066.1	2801	5173	0	100	FONY01000077.4122.6939	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Thermoflexibacter;Thermoflexibacter ruber	41309	44749	t	f	f	109599	110877	Scaffold	IMG-taxon 2636415974 annotated assembly	na	PRJNA224116	SAMN04488541	133	109599	none	2016-11-02	GCA_900113045.1	none	full	none	none	none	0	0	Thermoflexibacter ruber	4447	representative genome	6	123	17	110877	68060	24216	2016/11/02	10	1003	2	GEY;DSM 9560	DOE - JOINT GENOME INSTITUTE	1003	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Thermoflexibacteraceae;g__Thermoflexibacter;s__Thermoflexibacter ruber	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Thermoflexibacteraceae;g__Thermoflexibacter;s__Thermoflexibacter ruber	10008	5504183	11	39	none	5494175	0	FONY00000000.1	4556	123	12357	2	1467	2710	0	100	1143742	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Flexibacter;s__ruber	1509	NZ_FONY01000066.1	1509	2787	0	100	FONY01000077.7322.8837	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Thermoflexibacter;Thermoflexibacter ruber	10008	19	39	0
+RS_GCF_900100375.1	0	99.65	0	511	f__Flavobacteriaceae (UID2817)	283	0	3629552	90.00487772580436	26	1642365	40.7620916382322	4032617	RS_GCF_900100375.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium noncentrifugens	type strain of species	LPSN	f	3	2	1059612	1063088	5100	1	2868	NZ_FNEZ01000013.1	1059612	4	103	NZ_FNEZ01000002.1	2868	5297	0	100	FNEZ01000013.1899.4782	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium noncentrifugens	154967	212243	t	f	f	512695	1059612	Scaffold	IMG-taxon 2619618994 annotated assembly	na	PRJNA224116	SAMN04487935	26	512695	none	2016-10-21	GCA_900100375.1	none	full	none	none	none	0	1	Flavobacterium noncentrifugens	3600	representative genome	6	19	2	1059612	351488	220967	2016/10/21	7	1128970	1	CGMCC 1.10076	DOE - JOINT GENOME INSTITUTE	1128970	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium noncentrifugens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium noncentrifugens	3469	4032617	11	41	assembly from type material	4029148	0	FNEZ00000000.1	3620	19	5100	1	1352	2497	0	100	4361797	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1426	NZ_FNEZ01000013.1	1354	2501	0	100	JQ002654.1.1359	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium noncentrifugens	3469	19	41	0
+RS_GCF_900111495.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	4080558	87.4079878262464	9	1679799	35.982297161942284	4668404	RS_GCF_900111495.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium wanjuense	type strain of species	LPSN	f	1	1	2644149	2644149	5828	1	2746	NZ_FOIU01000008.1	5828	1	101	NZ_FOIU01000008.1	2746	5072	0	100	FOIU01000008.2531.5290	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium wanjuense	518711	518711	t	f	f	2644149	2644149	Contig	IMG-taxon 2684622833 annotated assembly	na	PRJNA224116	SAMN05421841	9	2644149	none	2016-10-31	GCA_900111495.1	none	full	none	none	none	0	0	Chryseobacterium wanjuense	4125	representative genome	3	none	none	none	none	none	2016/10/31	0	356305	1	DSM 17724	DOE - JOINT GENOME INSTITUTE	356305	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium wanjuense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium wanjuense	0	4668404	11	62	assembly from type material	4668404	0	FOIU00000000.1	4179	9	5828	1	1462	2700	0	100	1139687	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FOIU01000008.1	1462	2700	0	100	DQ256729.1.1462	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium wanjuense	0	19	62	0
+RS_GCF_900099995.1	0	99.67	0.75	571	s__algicola (UID2846)	303	0	4132038	90.35426769108047	34	1521673	33.28326646814903	4573152	RS_GCF_900099995.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella thalassocola	type strain of species	LPSN	t	3	3	1685921	1685921	2319	1	2314	NZ_FNCZ01000022.1	221042	2	104	NZ_FNCZ01000007.1	2314	4274	0	100	FNCZ01000022.1.2319	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Winogradskyella;Winogradskyella thalassocola	134467	152438	t	f	f	333368	471346	Scaffold	IMG-taxon 2634166307 annotated assembly	na	PRJNA224116	SAMN04489796	34	333368	none	2016-10-21	GCA_900099995.1	none	full	none	none	none	0	1	Winogradskyella thalassocola	3909	representative genome	7	30	3	471346	221042	135947	2016/10/21	4	262004	2	DSM 15363	DOE - JOINT GENOME INSTITUTE	262004	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella thalassocola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella thalassocola	1266	4573152	11	42	assembly from type material	4571886	0	FNCZ00000000.1	3963	30	485945	2	1486	2673	0	99.125	143045	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__thalassocola	1522	NZ_FNCZ01000002.1	1486	2673	0	99.125	AY771731.1.1490	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Winogradskyella;Winogradskyella thalassocola	1266	19	42	0
+RS_GCF_900116615.1	0	100	0.38	439	o__Cytophagales (UID2938)	266	0	4842074	89.2357394547894	21	2233793	41.18412188384854	5426160	RS_GCF_900116615.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus locisalis	type strain of species	LPSN	f	4	3	919806	1093647	2551	2	2534	NZ_FPBF01000017.1	441634	3	101	NZ_FPBF01000004.1	2534	4680	0	100	FPBF01000017.1.2551	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Algoriphagus locisalis	258281	319185	f	f	t	441634	777430	Scaffold	IMG-taxon 2639762564 annotated assembly	na	PRJNA224116	SAMN04489724	21	441634	none	2016-11-02	GCA_900116615.1	none	full	none	none	none	0	0	Algoriphagus locisalis	4631	representative genome	7	17	3	777430	412431	222093	2016/11/02	4	305507	2	DSM 23445	DOE - JOINT GENOME INSTITUTE	305507	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus locisalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__Algoriphagus;s__Algoriphagus locisalis	2242	5426160	11	38	assembly from type material	5423918	0	FPBF00000000.1	4729	17	431853	1	544	965	0	98.713	71214	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cyclobacteriaceae;g__;s__	551	NZ_FPBF01000005.1	547	950	0	97.989	EU880511.1.1485	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cyclobacteriaceae;Algoriphagus;Cyclobacterium sp. P81	2242	19	38	0
+RS_GCF_002302535.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2289448	86.95315968639181	1	946844	35.96110395610731	2632967	RS_GCF_000827555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga canis	not type material	none	f	1	1	2632967	2632967	2632967	3	2819	NZ_CP022381.1	2632967	3	103	NZ_CP022381.1	2819	5206	0	100	CP022381.694257.697094	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. H2931	2632967	2632967	t	f	f	2632967	2632967	Complete Genome	ASM230253v1	na	PRJNA224116	SAMN06289153	none	none	USA: Montana	2017-09-14	GCA_002302535.1	none	full	none	Blood	none	1	1	Capnocytophaga sp. H2931	2181	na	9	1	1	2632967	2632967	2632967	2017/09/14	0	1945657	3	H2931	Centers for Disease Control and Prevention	1945657	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;x__unclassified Capnocytophaga;s__Capnocytophaga sp. H2931	0	2632967	11	45	none	2632967	0	none	2202	1	2632967	3	1474	2717	0	99.932	2231213	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1514	NZ_CP022381.1	1514	2796	0	100	CP022381.697723.699247	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. H2931	0	19	45	0
+RS_GCF_900187965.1	0	99.65	0.98	511	f__Flavobacteriaceae (UID2817)	283	25	5398962	86.83064623910006	67	2074230	33.395291850375415	6217807	RS_GCF_900187965.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp900187965	not type material	none	f	11	10	510870	510870	1628	2	1287	NZ_FZNL01000058.1	165488	3	104	NZ_FZNL01000014.1	1287	2372	0	99.922	AKJZ01000102.5900.8779	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. CF136	92703	103630	f	f	t	177234	183469	Scaffold	IMG-taxon 2609459741 annotated assembly	na	PRJNA224116	SAMN04487979	67	177234	none	2017-07-16	GCA_900187965.1	none	full	none	none	none	0	0	Flavobacterium sp. ov086	5263	na	6	60	10	183469	123981	51103	2017/07/16	7	1761785	1	OV086	DOE - JOINT GENOME INSTITUTE	1761785	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. ov086	6662	6217807	11	53	none	6211145	0	FZNL00000000.1	5330	60	1369	1	1310	2403	0	99.771	1141955	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1314	NZ_FZNL01000059.1	1312	2407	0	99.771	AM177392.1.1494	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium aquidurense	6662	19	55	0
+RS_GCF_002754275.1	0	99.65	0.4	511	f__Flavobacteriaceae (UID2817)	283	50	4423000	87.74825634314945	6	1676479	33.259803085215204	5040556	RS_GCF_002217395.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium plurextorum	not type material	none	f	1	1	3078457	3078457	1299549	8	2871	NZ_PEFC01000002.1-#2	3078457	6	104	NZ_PEFC01000001.1	2872	5029	0	98.294	MLFK01000009.643880.646770	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium johnsoniae	840092	840092	t	f	f	3078457	3078457	Contig	ASM275427v1	na	PRJNA224116	SAMN07621436	6	3078457	USA: Lake Washington	2017-11-03	GCA_002754275.1	none	full	none	none	none	0	0	Flavobacterium sp. 2	4198	na	22	none	none	none	none	none	2017/11/03	0	308053	7	2	DOE Joint Genome Institute	308053	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. 2	0	5040556	11	64	none	5040556	0	PEFC00000000.1	4229	6	1299549	6	1457	2675	0	99.794	4284954	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_PEFC01000002.1	1457	2675	0	99.794	HE612094.1.1457	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium plurextorum	0	19	64	0
+RS_GCF_900105145.1	0	99.33	1.73	548	f__Flavobacteriaceae (UID2845)	298	12.5	3546691	89.75419834192066	1	1147577	29.041847823336187	3951560	RS_GCF_900105145.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter sp900105145	not type material	none	f	1	1	3951460	3951560	3951560	3	2866	NZ_LT629752.1	3951560	3	104	NZ_LT629752.1	2866	5293	0	100	LT629752.2373555.2376436	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. KT25b	3951460	3951560	t	f	f	3951460	3951560	Chromosome	IMG-taxon 2667527435 annotated assembly	na	PRJNA224116	SAMN05216503	1	3951460	none	2016-10-20	GCA_900105145.1	none	full	none	none	none	1	1	Polaribacter sp. KT25b	3364	na	9	1	1	3951560	3951560	3951560	2016/10/20	1	1855336	3	KT25b	DOE - JOINT GENOME INSTITUTE	1855336	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;x__unclassified Polaribacter;s__Polaribacter sp. KT25b	100	3951560	11	40	none	3951460	0	none	3410	1	3951560	3	none	none	none	none	none	none	1515	NZ_LT629752.1	1515	2798	0	100	LT629752.1143114.1144635	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. KT25b	100	19	40	0
+RS_GCF_002813915.1	0	99.66	0.83	548	f__Flavobacteriaceae (UID2845)	298	0	3536819	87.88702274370142	3	1251745	31.144295887294394	4024279	RS_GCF_002813915.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum sp002813915	not type material	none	f	1	1	2862403	4024279	4024279	4	2775	NZ_CP019335.1	4024279	4	104	NZ_CP019335.1	2775	5125	0	100	CP019335.1135191.1137981	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. SZ-18	1339726	4024279	t	f	f	2862403	4024279	Chromosome	ASM281391v1	na	PRJNA224116	SAMN06133350	3	2862403	Pacific Ocean: Western North Pacific Station S	2017-12-07	GCA_002813915.1	none	full	none	seawater	none	1	1	Tenacibaculum sp. SZ-18	3581	na	12	1	1	4024279	4024279	4024279	2017/12/07	3	754423	4	SZ-18	Atmosphere and Ocean Research Institute, The University of Tokyo	754423	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;x__unclassified Tenacibaculum;s__Tenacibaculum sp. SZ-18	5100	4024279	11	58	none	4019179	0	none	3673	1	4024279	4	none	none	none	none	none	none	1519	NZ_CP019335.1	1519	2806	0	100	CP019335.1138571.1140096	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. SZ-18	5100	19	57	0
+RS_GCF_900109045.1	0	99.7	0.74	454	o__Cytophagales (UID2936)	336	0	7679757	90.54764666530055	44	4258471	50.22640663792748	8481454	RS_GCF_900109045.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__Dyadobacter sp900109045	not type material	none	f	9	7	857198	913016	2871	1	2806	NZ_FNYL01000032.1	none	0	none	none	2806	5182	0	100	FNYL01000032.50.2869	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Dyadobacter;Dyadobacter sp. SG02	192694	229228	f	f	t	369262	414694	Scaffold	IMG-taxon 2609459762 annotated assembly	na	PRJNA224116	SAMN05216327	44	369262	none	2016-10-31	GCA_900109045.1	none	full	none	none	none	0	0	Dyadobacter sp. SG02	6959	na	13	37	7	414694	290583	169449	2016/10/31	7	1855291	4	SG02	DOE - JOINT GENOME INSTITUTE	1855291	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Spirosomaceae;g__Dyadobacter;x__unclassified Dyadobacter;s__Dyadobacter sp. SG02	2904	8481454	11	36	none	8478550	0	FNYL00000000.1	7064	37	1270	3	1258	2255	0	99.046	3834835	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Dyadobacter;s__	1259	NZ_FNYL01000036.1	1255	2250	0	99.044	CP001619.5058638.5060132	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Dyadobacter;Dyadobacter fermentans DSM 18053	2904	19	36	0
+RS_GCF_900101765.1	0	97.97	0.19	496	s__algicola (UID2847)	263	0	2978901	91.54697400919926	1	1284253	39.46861249980408	3253959	RS_GCF_900101765.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__Nonlabens sp900101765	not type material	none	f	1	1	3253859	3253959	3253959	2	2811	NZ_LT627735.1	3253959	2	104	NZ_LT627735.1	2811	5192	0	100	LT627735.2074945.2077770	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens sp. Hel1_33_55	3253859	3253959	t	f	f	3253859	3253959	Chromosome	IMG-taxon 2667527234 annotated assembly	na	PRJNA224116	SAMN05192588	1	3253859	none	2016-10-17	GCA_900101765.1	none	full	none	none	54.1841 N 7.9000 E	1	1	Nonlabens sp. Hel1_33_55	2854	na	6	1	1	3253959	3253959	3253959	2016/10/17	1	1336802	2	Hel1_33_55	DOE - JOINT GENOME INSTITUTE	1336802	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Nonlabens;x__unclassified Nonlabens;s__Nonlabens sp. Hel1_33_55	100	3253959	11	36	none	3253859	0	none	2919	1	3253959	2	none	none	none	none	none	none	1519	NZ_LT627735.1	1519	2806	0	100	LT627735.2078411.2079936	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Nonlabens;Nonlabens sp. Hel1_33_55	100	19	36	0
+RS_GCF_900101395.1	0	100	0.17	301	p__Bacteroidetes (UID2591)	202	0	5339025	87.53932200710871	58	2908871	47.76954450565115	6099002	RS_GCF_900101395.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Niabella;s__Niabella drilacis	type strain of species	LPSN	f	9	6	463361	804635	5411	1	2792	NZ_FMZO01000042.1	5411	1	108	NZ_FMZO01000042.1	2792	5156	0	100	FMZO01000042.231.3031	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Niabella;Niabella drilacis	104989	135533	t	f	f	209891	338209	Scaffold	IMG-taxon 2619619035 annotated assembly	na	PRJNA224116	SAMN04487894	58	209891	none	2016-10-21	GCA_900101395.1	none	full	none	none	none	0	0	Niabella drilacis	5182	representative genome	5	45	6	338209	156014	72086	2016/10/21	13	1285928	3	DSM 25811	DOE - JOINT GENOME INSTITUTE	1285928	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Niabella;s__Niabella drilacis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Niabella;s__Niabella drilacis	9618	6099002	11	44	assembly from type material	6089384	0	FMZO00000000.1	5160	45	5411	3	1462	2518	0	97.743	1134170	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Niabella;s__	1523	NZ_FMZO01000042.1	1506	2599	0	97.809	ARFF01000026.10985.12490	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Niabella;Niabella aurantiaca DSM 17617	9618	19	44	0
+RS_GCF_900188415.1	0	99.67	0.99	571	s__algicola (UID2846)	303	0	3904218	91.44727611717434	24	1599663	37.507289084322196	4269365	RS_GCF_900188415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter sedimenticola	type strain of species	LPSN	t	3	2	906122	1196437	188891	1	249	NZ_FZNV01000005.1	188891	2	108	NZ_FZNV01000005.1	249	427	2.58e-118	97.59	CP011318.3384198.3387039	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter sp. 1_2014MBL_MicDiv	177705	213468	f	f	t	776522	949460	Scaffold	IMG-taxon 2622736538 annotated assembly	na	PRJNA224116	SAMN04488009	24	776522	none	2017-07-16	GCA_900188415.1	none	full	none	none	none	0	1	Maribacter sedimenticola	3634	representative genome	3	20	2	949460	296762	133617	2017/07/16	4	228956	0	DSM 19840	DOE - JOINT GENOME INSTITUTE	228956	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter sedimenticola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter sedimenticola	4426	4269365	11	36	assembly from type material	4264939	0	FZNV00000000.1	3699	20	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4426	19	36	0
+RS_GCF_900105425.1	0	99.67	0.44	571	s__algicola (UID2846)	303	0	3322468	90.07774278862773	1	1240464	33.6319948377931	3688445	RS_GCF_003387355.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella sediminis	not type material	none	f	1	1	3688345	3688445	3688445	3	2812	NZ_LT629774.1	3688445	3	105	NZ_LT629774.1	2812	5193	0	100	LT629774.2470063.2472889	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Winogradskyella;Winogradskyella sp. RHA_55	3688345	3688445	t	f	f	3688345	3688445	Chromosome	IMG-taxon 2630968293 annotated assembly	na	PRJNA224116	SAMN04489797	1	3688345	none	2016-10-21	GCA_900105425.1	none	full	none	none	none	1	1	Winogradskyella sediminis	3167	representative genome	9	1	1	3688445	3688445	3688445	2016/10/21	1	1382466	3	RHA_55	DOE - JOINT GENOME INSTITUTE	1382466	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella sediminis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella sediminis	100	3688445	11	42	none	3688345	0	none	3206	1	3688445	3	none	none	none	none	none	none	1518	NZ_LT629774.1	1518	2804	0	100	LT629774.292120.293645	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Winogradskyella;Winogradskyella sp. RHA_55	100	19	42	0
+RS_GCF_002251425.1	0	98.31	1.73	567	g__Prevotella (UID2724)	296	22.22	3068453	89.11393515275498	74	1334856	38.76685451016063	3443292	RS_GCF_022024235.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella bryantii	not type material	none	f	6	6	535986	535986	1302	8	1292	NZ_NPJF01000032.1	113238	7	108	NZ_NPJF01000020.1	1292	2375	0	99.845	ADWO01000048.297.3126	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bryantii B14	46530	46530	f	f	t	184552	184552	Contig	ASM225142v1	na	PRJNA224116	SAMN07431222	74	184552	Sweden	2017-08-14	GCA_002251425.1	none	full	none	rumen	none	0	0	Prevotella bryantii	2708	na	27	none	none	none	none	none	2017/08/14	0	77095	6	TC1-1	University of Ljubljana	77095	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bryantii	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella bryantii	0	3443292	11	73	none	3443292	0	NPJF00000000.1	2788	74	1594	6	1320	2427	0	99.848	2456812	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1321	NZ_NPJF01000034.1	1320	2350	0	98.788	AF396925.1.1518	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella bryantii	0	19	73	0
+RS_GCF_900100445.1	0	97.62	0.87	316	p__Bacteroidetes (UID2605)	210	0	5690128	88.4858682383311	32	2749224	42.76043478017421	6430550	RS_GCF_014643835.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__Mucilaginibacter rubeus	not type material	none	f	4	3	1337611	1905086	5886	1	2870	NZ_FMTV01000021.1	67064	4	107	NZ_FMTV01000013.1	2870	5301	0	100	FMTV01000021.2622.5502	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Mucilaginibacter;Mucilaginibacter sp. NFR10	200917	229662	t	f	f	566499	734900	Scaffold	IMG-taxon 2599185184 annotated assembly	na	PRJNA224116	SAMN03159284	32	566499	none	2016-10-13	GCA_900100445.1	none	full	none	none	none	0	0	Mucilaginibacter sp. NFR10	5365	na	6	28	3	734900	449201	194003	2016/10/13	4	1566292	1	NFR10	DOE - JOINT GENOME INSTITUTE	1566292	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;x__unclassified Mucilaginibacter;s__Mucilaginibacter sp. NFR10	1186	6430550	11	49	none	6429364	0	FMTV00000000.1	5432	28	5886	1	1455	2558	0	98.419	2353083	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__;s__	1518	NZ_FMTV01000021.1	1518	2804	0	100	FMTV01000021.419.1943	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Mucilaginibacter;Mucilaginibacter sp. NFR10	1186	19	50	0
+RS_GCF_002251535.1	0	99.26	0.56	487	o__Bacteroidales (UID2716)	270	0	2821983	87.9135301981057	94	1467120	45.70534210313983	3209953	RS_GCF_002251295.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002251295	not type material	none	f	14	14	209433	209433	3260	1	2888	NZ_NPJD01000087.1	1633	3	109	NZ_NPJD01000041.1	2897	3698	0	89.886	FPIT01000015.146.3038	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotellaceae bacterium HUN156	34148	34148	t	f	f	80369	80369	Contig	ASM225153v1	na	PRJNA224116	SAMN07431224	94	80369	Slovenia: pig farm Ihan	2017-08-14	GCA_002251535.1	none	full	none	feces from large intestine	none	0	0	Prevotella sp. P3-120	2604	na	5	none	none	none	none	none	2017/08/14	0	2024220	1	P3-120	University of Ljubljana	2024220	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. P3-120	0	3209953	11	46	none	3209953	0	NPJD00000000.1	2721	94	1844	1	1424	2621	0	99.86	70217	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1528	NZ_NPJD01000018.1	1495	2739	0	99.732	EF031003.1.1512	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured bacterium	0	19	46	0
+RS_GCF_900112615.1	0	100	1.4	303	p__Bacteroidetes (UID2591)	203	0	7238419	88.88048869405677	35	3372002	41.40652427431487	8143991	RS_GCF_900112615.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga sp900112615	not type material	none	f	3	3	2110347	2110347	3190	1	2875	NZ_FOMK01000022.1	3190	1	97	NZ_FOMK01000022.1	2875	5310	0	100	FOMK01000022.237.3120	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;Chitinophaga sp. CF118	232675	239529	t	f	f	1020677	1020677	Scaffold	IMG-taxon 2687453677 annotated assembly	na	PRJNA224116	SAMN05518672	35	1020677	none	2016-11-05	GCA_900112615.1	none	full	none	none	none	0	0	Chitinophaga sp. CF118	6357	na	3	34	3	1020677	271407	205107	2016/11/05	1	1884367	1	CF118	DOE - JOINT GENOME INSTITUTE	1884367	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;x__unclassified Chitinophaga;s__Chitinophaga sp. CF118	342	8143991	11	57	none	8143649	0	FOMK00000000.1	6485	34	1698	1	1490	2580	0	98.121	1689895	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Chitinophaga;s__	1526	NZ_FOMK01000028.1	1526	2819	0	100	FOMK01000028.124.1656	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;Chitinophaga sp. CF118	342	19	55	0
+RS_GCF_900021155.1	13	99.04	0.48	314	p__Bacteroidetes (UID2605)	208	0	2431480	84.72404091875555	109	1692905	58.99010109373018	2869882	RS_GCF_900021155.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__Alistipes excrementavium	not type material	none	f	12	12	265881	265881	3573	1	2864	NZ_FCNT01000077.1	3573	1	108	NZ_FCNT01000077.1	2864	5289	0	100	FCNT01000077.632.3502	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. CHKCI003	26328	27332	t	f	f	75637	75637	Scaffold	CHCKI003	na	PRJNA224116	SAMEA3730081	109	75637	none	2016-04-11	GCA_900021155.1	none	full	CHKC3	caecum	none	0	0	Alistipes sp. CHKCI003	2480	na	7	105	12	75637	28875	16149	2016/04/11	4	1780376	5	CHKC3	UNIVERSITY OF WARWICK	1780376	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__Alistipes;x__unclassified Alistipes;s__Alistipes sp. CHKCI003	57	2869882	11	46	none	2869825	0	FCNT00000000.1	2568	105	1538	1	1449	2627	0	99.379	157573	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Rikenellaceae;g__;s__	1523	NZ_FCNT01000097.1	1514	2796	0	100	FCNT01000097.14.1527	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Alistipes;Alistipes sp. CHKCI003	57	19	46	0
+RS_GCF_002754135.1	0	99.92	0.31	475	f__Porphyromonadaceae (UID2622)	318	0	2069488	85.84689835577036	1	1164828	48.31961862932053	2410673	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	1	1	2410673	2410673	2410673	4	2890	NZ_CP024598.1	2410673	4	106	NZ_CP024598.1	2890	5337	0	100	CP024598.1078339.1081239	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	2410673	2410673	t	f	f	2410673	2410673	Complete Genome	ASM275413v1	na	PRJNA224116	SAMN07836904	none	none	Korea: Gwangju	2017-11-06	GCA_002754135.1	none	full	none	Subgingival dental plaque	35.14 N 126.93 E	1	0	Porphyromonas gingivalis	2128	na	12	1	1	2410673	2410673	2410673	2017/11/06	0	837	4	KCOM 2798	Korean Collection for Oral Microbiology	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	0	2410673	11	53	none	2410673	0	none	2089	1	2410673	4	1528	2804	0	99.804	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_CP024598.1-#2	1528	2822	0	100	CP024598.486193.487734	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	53	0
+RS_GCF_900116425.1	0	100	0	277	k__Bacteria (UID2569)	185	0	3239043	90.80407213991995	16	1333574	37.39757600877413	3567068	RS_GCF_900116425.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Crocinitomicaceae;g__Lishizhenia;s__Lishizhenia tianjinensis	type strain of species	LPSN	f	3	2	1125184	1490290	5284	1	2864	NZ_FPAS01000010.1	1490290	2	102	NZ_FPAS01000001.1	2864	5289	0	100	FPAS01000010.216.3092	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Lishizhenia tianjinensis	222871	274389	t	f	f	407984	699464	Scaffold	IMG-taxon 2667527393 annotated assembly	na	PRJNA224116	SAMN05216474	16	407984	none	2016-11-02	GCA_900116425.1	none	full	none	none	none	0	0	Lishizhenia tianjinensis	3100	representative genome	6	13	2	699464	291277	267364	2016/11/02	3	477690	2	CGMCC 1.7005	DOE - JOINT GENOME INSTITUTE	477690	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__Lishizhenia;s__Lishizhenia tianjinensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Crocinitomicaceae;g__Lishizhenia;s__Lishizhenia tianjinensis	1131	3567068	11	40	assembly from type material	3565937	0	FPAS00000000.1	3125	13	5284	1	1505	2612	0	98.073	1140199	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Cryomorphaceae;g__Lishizhenia;s__caseinilytica	1523	NZ_FPAS01000010.1	1523	2813	0	100	FPAS01000010.3525.5054	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Lishizhenia;Lishizhenia tianjinensis	1131	19	40	0
+RS_GCF_002529355.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	2071838	86.24012760540892	196	1164194	48.45950268189473	2402406	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	21	21	104183	104183	5855	1	2889	NZ_NSLT01000076.1	89218	5	106	NZ_NSLT01000002.1	2889	5336	0	100	AWUU01000079.228.3126	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis F0568	12257	12257	t	f	f	36927	36927	Contig	ASM252935v1	na	PRJNA224116	SAMN07602654	196	36927	United Kingdom: London	2017-10-11	GCA_002529355.1	none	full	none	Subgingival plaque	none	0	0	Porphyromonas gingivalis	2211	na	7	none	none	none	none	none	2017/10/11	0	837	1	WW2885	University of Leicester	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	0	2402406	11	48	none	2402406	0	NSLT00000000.1	2160	196	5855	1	1527	2798	0	99.738	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_NSLT01000076.1	1528	2811	0	99.869	CP024596.1050236.1051775	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	47	0
+RS_GCF_002754115.1	0	99.92	0	475	f__Porphyromonadaceae (UID2622)	318	0	2133081	86.14450727455268	1	1192166	48.14564128576194	2476166	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	1	1	2476166	2476166	2476166	4	2890	NZ_CP024597.1-#3	2476166	4	106	NZ_CP024597.1	2890	5337	0	100	CP024597.1425498.1428398	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	2476166	2476166	t	f	f	2476166	2476166	Complete Genome	ASM275411v1	na	PRJNA224116	SAMN07831761	none	none	Korea: Gwangju	2017-11-06	GCA_002754115.1	none	full	none	Subgingival dental plaque	35.14 N 126.93 E	1	0	Porphyromonas gingivalis	2171	na	12	1	1	2476166	2476166	2476166	2017/11/06	0	837	4	KCOM 2796	Korean Collection for Oral Microbiology	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	0	2476166	11	53	none	2476166	0	none	2115	1	2476166	4	1527	2798	0	99.738	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_CP024597.1-#3	1528	2822	0	100	CP024597.1160783.1162324	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	53	0
+RS_GCF_002251325.1	0	98.14	0.74	530	g__Prevotella (UID2721)	280	0	2672281	88.06452420827706	82	1574339	51.882049446721624	3034458	RS_GCF_002251385.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002251385	not type material	none	f	10	10	230931	230931	3313	1	2883	NZ_NPJL01000030.1	3313	5	107	NZ_NPJL01000030.1	2906	3827	0	90.64	CP012074.1211110.1214011	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella fusca JCM 17724	37005	37005	t	f	f	96674	96674	Contig	ASM225132v1	na	PRJNA224116	SAMN07431216	82	96674	Slovenia: pig farm Ihan	2017-08-14	GCA_002251325.1	none	full	none	feces from large intestine	none	0	0	Prevotella sp. P4-67	2572	na	7	none	none	none	none	none	2017/08/14	0	2024227	1	P4-67	University of Ljubljana	2024227	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. P4-67	0	3034458	11	60	none	3034458	0	NPJL00000000.1	2622	82	2077	1	1478	2719	0	99.865	925131	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__copri	1528	NZ_NPJL01000008.1	1478	2719	0	99.865	HQ716707.1.1479	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;uncultured;uncultured bacterium	0	19	60	0
+RS_GCF_002529285.1	0	99.92	0.16	475	f__Porphyromonadaceae (UID2622)	318	0	2001630	86.28623010351089	103	1122660	48.39560712419754	2319756	RS_GCF_000010505.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	not type material	none	f	18	18	88892	88892	5839	1	2890	NZ_NSLR01000064.1	14700	4	106	NZ_NSLR01000049.1	2890	5326	0	99.931	CP024598.1078339.1081239	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	22521	22521	t	f	f	51669	51669	Contig	ASM252928v1	na	PRJNA224116	SAMN07602656	103	51669	United Kingdom: London	2017-10-11	GCA_002529285.1	none	full	none	Subgingival plaque	none	0	0	Porphyromonas gingivalis	2097	na	6	none	none	none	none	none	2017/10/11	0	837	1	WW2931	University of Leicester	837	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__Porphyromonas gingivalis	0	2319756	11	47	none	2319756	0	NSLR00000000.1	2062	103	5839	1	1527	2804	0	99.804	1526277	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__Porphyromonas;s__	1528	NZ_NSLR01000064.1	1528	2817	0	99.935	CP024594.285996.287537	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Porphyromonadaceae;Porphyromonas;Porphyromonas gingivalis	0	19	47	0
+RS_GCF_002754315.1	0	99.29	0.18	511	f__Flavobacteriaceae (UID2817)	283	0	3352157	89.06028530369544	1	1288007	34.21983841841442	3763919	RS_GCF_002754315.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp002754315	not type material	none	f	1	1	3763919	3763919	3763919	4	2870	NZ_PEFE01000001.1	3763919	4	104	NZ_PEFE01000001.1	2870	5173	0	99.199	JSYM01000004.258.3144	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. AED	3763919	3763919	t	f	f	3763919	3763919	Contig	ASM275431v1	na	PRJNA224116	SAMN07621435	1	3763919	USA: Lake Washington	2017-11-03	GCA_002754315.1	none	full	none	none	none	0	1	Flavobacterium sp. 11	3194	na	12	none	none	none	none	none	2017/11/03	0	357523	4	11	DOE Joint Genome Institute	357523	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. 11	0	3763919	11	55	none	3763919	0	PEFE00000000.1	3249	1	3763919	4	1500	2649	0	98.533	142096	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1510	NZ_PEFE01000001.1	1510	2662	0	98.477	FQWW01000014.3766.5283	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. CF108	0	19	55	0
+RS_GCF_002843425.1	0	98.18	0.3	474	o__Cytophagales (UID2937)	330	0	2816893	91.74910665807226	104	1153605	37.57410316482928	3070213	RS_GCF_002843425.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Thermonemataceae;g__Raineya;s__Raineya orbicola	type strain of species	LPSN	t	18	18	115411	115411	21431	4	2553	NZ_NKXO01000050.1	2596	2	103	NZ_NKXO01000079.1	2569	3177	0	89.218	LJIE01000001.273.3081	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;bacterium 336/3	29521	29521	t	f	f	67061	67061	Contig	ASM284342v1	na	PRJNA224116	SAMN07299068	104	67061	Portugal: S. Pedro do Sul	2017-12-15	GCA_002843425.1	none	full	none	hot spring	none	0	0	Raineya orbicola	2712	representative genome	8	none	none	none	none	none	2017/12/15	0	2016530	2	SPSPC-11	Biocant	2016530	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Raineyaceae;g__Raineya;s__Raineya orbicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Raineyaceae;g__Raineya;s__Raineya orbicola	0	3070213	11	39	assembly from type material	3070213	0	NKXO00000000.1	2760	104	21431	2	1472	2085	0	92.323	19806	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__;s__	1510	NZ_NKXO01000050.1	1501	2772	0	100	MF125287.1.1501	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Raineyaceae;Raineya;Raineya orbicola	0	19	39	0
+RS_GCF_002251295.1	0	99.26	0	487	o__Bacteroidales (UID2716)	270	0	2611386	87.63040268456376	55	1367909	45.90298657718121	2980000	RS_GCF_002251295.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002251295	not type material	none	f	7	7	401160	401160	3293	1	2888	NZ_NPJA01000031.1	3293	3	109	NZ_NPJA01000031.1	2893	3731	0	90.08	FPIT01000015.146.3038	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotellaceae bacterium HUN156	54181	54181	t	f	f	142879	142879	Contig	ASM225129v1	na	PRJNA224116	SAMN07431227	55	142879	Slovenia: pig farm Ihan	2017-08-14	GCA_002251295.1	none	full	none	feces from large intestine	none	0	0	Prevotella sp. P5-50	2394	na	8	none	none	none	none	none	2017/08/14	0	2024217	4	P5-50	University of Ljubljana	2024217	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. P5-50	0	2980000	11	46	none	2980000	0	NPJA00000000.1	2516	55	1693	1	1424	2621	0	99.86	70217	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	1528	NZ_NPJA01000027.1	1495	2739	0	99.732	EF031003.1.1512	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured bacterium	0	19	46	0
+RS_GCF_002797185.1	0	99.32	1.86	567	g__Prevotella (UID2724)	296	83.33	2588345	85.79516846658926	3	1324017	43.88683176610078	3016889	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2186942	2186942	2186942	4	2900	NZ_PENG01000001.1	2186942	4	108	NZ_PENG01000001.1	2900	5301	0	99.655	CP024734.911706.914613	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1005629	1005629	t	f	f	2186942	2186942	Contig	ASM279718v1	na	PRJNA224116	SAMN07955963	3	2186942	South Korea: Gwangju	2017-11-28	GCA_002797185.1	none	full	none	Subgingival dental plaque	35.14 N 126.93 E	0	0	Prevotella intermedia	2665	na	12	none	none	none	none	none	2017/11/28	0	28131	4	KCOM 2832	Korean Collection for Oral Microbiology	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	3016889	11	48	none	3016889	0	PENG00000000.1	2675	3	2186942	4	1529	2763	0	99.281	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_PENG01000001.1	1530	2804	0	99.739	CP030094.1547812.1549351	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	48	0
+RS_GCF_900113765.1	0	99.84	2.38	316	p__Bacteroidetes (UID2605)	210	0	5718172	92.89946461754613	35	2953949	47.99257125858223	6155226	RS_GCF_900113765.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__Parapedobacter indicus	type strain of species	LPSN	f	5	5	869287	869287	5094	1	2868	NZ_FOQO01000023.1	5094	1	106	NZ_FOQO01000023.1	2868	5297	0	100	FOQO01000023.200.3075	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Parapedobacter;Parapedobacter indicus	175857	186522	t	f	f	395837	418747	Scaffold	IMG-taxon 2671180231 annotated assembly	na	PRJNA224116	SAMN05444682	35	395837	none	2016-11-05	GCA_900113765.1	none	full	none	none	none	0	0	Parapedobacter indicus	5019	na	5	33	5	418747	348391	204320	2016/11/05	2	1477437	3	RK1	DOE - JOINT GENOME INSTITUTE	1477437	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__Parapedobacter indicus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Parapedobacter;s__Parapedobacter indicus	213	6155226	11	46	assembly from type material	6155013	0	FOQO00000000.1	5145	33	5094	1	1444	2540	0	98.407	4474183	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__;s__	1520	NZ_FOQO01000023.1	1458	2680	0	99.863	KJ101506.1.1466	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Parapedobacter;Parapedobacter indicus	213	19	46	0
+RS_GCF_002794335.1	0	99.32	0.68	567	g__Prevotella (UID2724)	296	0	2379236	85.02129788450543	3	1211447	43.29070182961692	2798400	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2121105	2121105	2121105	4	2899	NZ_PGGD01000001.1	2121105	4	108	NZ_PGGD01000001.1	2899	5271	0	99.483	CP024727.161643.164549	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	932800	932800	t	f	f	2121105	2121105	Contig	ASM279433v1	na	PRJNA224116	SAMN07980927	3	2121105	South Korea: Gwangju	2017-11-20	GCA_002794335.1	none	full	none	Mandibular osteomyelitis	35.14 N 126.93 E	0	0	Prevotella intermedia	2418	na	12	none	none	none	none	none	2017/11/20	0	28131	4	KCOM 1779	Korean Collection for Oral Microbiology	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2798400	11	48	none	2798400	0	PGGD00000000.1	2419	3	2121105	4	1529	2808	0	99.804	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_PGGD01000001.1	1530	2815	0	99.869	CP024697.1388079.1389618	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	48	0
+RS_GCF_002700155.1	2	99.67	0.33	571	s__algicola (UID2846)	303	0	4136714	91.80186204002412	11	1621880	35.994608842590054	4506133	RS_GCF_001447995.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__Maribacter dokdonensis	not type material	none	f	2	1	2133816	2335224	5841	1	2816	NZ_PDUT01000007.1	190399	3	108	NZ_PDUT01000005.1	2816	5179	0	99.858	LT629754.247237.250067	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter sp. MAR_2009_60	409627	563266	t	f	f	995188	2335224	Scaffold	ASM270015v1	na	PRJNA224116	SAMN07809290	11	995188	USA: Canoe Beach; Nahant; MA	2017-10-24	GCA_002700155.1	none	full	none	Coastal ocean surface water	42.25 N 70.54 W	0	1	Maribacter sp. 6B07	3816	na	4	8	1	2335224	666794	310323	2017/10/24	3	2045442	1	6B07	Massachusetts Institute of Technology	2045442	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;x__unclassified Maribacter;s__Maribacter sp. 6B07	234	4506133	11	36	none	4505899	0	PDUT00000000.1	3876	8	5841	1	1489	2728	0	99.731	699770	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Maribacter;s__	1528	NZ_PDUT01000007.1	1528	2817	0	99.935	LT629754.2393401.2394935	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter sp. MAR_2009_60	234	19	36	0
+RS_GCF_002763745.1	0	99.32	0	567	g__Prevotella (UID2724)	296	0	2471165	85.50596010449647	2	1255344	43.43675714953029	2890050	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2064201	2064201	2064201	4	2901	NZ_CP024723.1	2064201	4	108	NZ_CP024723.1	2901	5358	0	100	CP024723.1658438.1661346	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1445025	1445025	t	f	f	2064201	2064201	Complete Genome	ASM276374v1	na	PRJNA224116	SAMN07956008	none	none	Korea: Gwangju	2017-11-13	GCA_002763745.1	none	full	none	Subgingival dental plaque	35.14 N 126.93 E	2	0	Prevotella intermedia	2523	na	12	2	1	2064201	825849	825849	2017/11/13	0	28131	4	KCOM 2837	Korean Collection for Oral Microbiology	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2890050	11	48	none	2890050	0	none	2513	2	2064201	4	1529	2780	0	99.477	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_CP024723.1	1530	2826	0	100	CP024723.1656387.1657926	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	48	0
+RS_GCF_900100115.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	3660327	88.49019478433168	9	1465044	35.4181549702025	4136421	RS_GCF_900100115.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium soldanellicola	type strain of species	LPSN	f	2	2	1075512	1075512	5675	1	2749	NZ_FNKL01000006.1	1075512	3	102	NZ_FNKL01000001.1	2749	5077	0	100	FNKL01000006.256.3020	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium soldanellicola	459602	459602	t	f	f	1028987	1028987	Contig	IMG-taxon 2684622906 annotated assembly	na	PRJNA224116	SAMN05421664	9	1028987	none	2016-10-21	GCA_900100115.1	none	full	none	none	none	0	0	Chryseobacterium soldanellicola	3682	representative genome	6	none	none	none	none	none	2016/10/21	0	311333	1	DSM 17072	DOE - JOINT GENOME INSTITUTE	311333	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium soldanellicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium soldanellicola	0	4136421	11	54	assembly from type material	4136421	0	FNKL00000000.1	3722	9	5675	1	1442	2663	0	100	4293619	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FNKL01000006.1	1442	2663	0	100	AB681270.1.1442	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium soldanellicola	0	19	54	0
+RS_GCF_002753835.1	0	99.32	0.34	567	g__Prevotella (UID2724)	296	0	2521119	85.43174542609317	2	1281368	43.42099868080093	2951033	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2127526	2127526	2127526	4	2900	NZ_PEKN01000001.1	2127526	4	108	NZ_PEKN01000001.1	2900	5295	0	99.621	CP030094.1549705.1552612	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1475516	1475516	t	f	f	2127526	2127526	Contig	ASM275383v1	na	PRJNA224116	SAMN07945748	2	2127526	South Korea: Gwangju	2017-11-06	GCA_002753835.1	none	full	none	Buccal space abscess (#48)	35.14 N 126.93 E	0	0	Prevotella intermedia	2532	na	12	none	none	none	none	none	2017/11/06	0	28131	4	KCOM 1653	Korean Collection for Oral Microbiology	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2951033	11	49	none	2951033	0	PEKN00000000.1	2508	2	2127526	4	1529	2785	0	99.542	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_PEKN01000001.1	1530	2804	0	99.739	CP024697.1388079.1389618	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	48	0
+RS_GCF_900111825.1	0	95.69	0.66	315	p__Bacteroidetes (UID2605)	209	0	4995761	86.07695503194356	48	2293518	39.53553395219849	5803831	RS_GCF_900111825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter suwonensis	type strain of species	LPSN	f	9	8	458141	627276	2398	1	2297	NZ_FOJM01000038.1	19711	1	107	NZ_FOJM01000031.1	2297	4242	0	100	FOJM01000038.2.2305	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter suwonensis	120857	145095	f	f	t	239722	260382	Scaffold	IMG-taxon 2622736524 annotated assembly	na	PRJNA224116	SAMN04488511	48	239722	none	2016-11-04	GCA_900111825.1	none	full	none	none	none	0	0	Pedobacter suwonensis	4837	na	2	40	8	260382	180969	121502	2016/11/04	8	332999	0	DSM 18130	DOE - JOINT GENOME INSTITUTE	332999	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter suwonensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter suwonensis	2675	5803831	11	47	assembly from type material	5801156	0	FOJM00000000.1	4933	40	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2675	19	48	0
+RS_GCF_002261125.1	0	99.09	0.46	474	o__Cytophagales (UID2937)	330	0	5628914	86.17005381845259	266	3177182	48.63779122065443	6532332	RS_GCF_002872335.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Siphonobacter;s__Siphonobacter sp002872335	not type material	none	f	28	28	226243	226243	5818	1	2809	NZ_NMPS01000156.1	5818	1	105	NZ_NMPS01000156.1	2813	4333	0	94.525	FNGS01000019.2532.5350	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Siphonobacter;Siphonobacter aquaeclarae	24557	24557	t	f	f	61396	61396	Contig	ASM226112v1	na	PRJNA224116	SAMN07296296	266	61396	India: Kheda; Gujarat	2017-08-21	GCA_002261125.1	none	full	none	soil	none	0	0	Siphonobacter sp. BAB-5385	5424	na	3	none	none	none	none	none	2017/08/21	0	1864822	1	BAB-5385	Gujarat State Biotechnology Mission	1864822	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Siphonobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Siphonobacter;x__unclassified Siphonobacter;s__Siphonobacter sp. BAB-5385	0	6532332	11	41	none	6532332	0	NMPS00000000.1	5782	266	5818	1	1464	2459	0	96.995	4467220	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Siphonobacter;s__aquaeclarae	1503	NZ_NMPS01000156.1	1450	2660	0	99.793	KX350178.1.1460	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Cytophagaceae;Siphonobacter;Siphonobacter sp. BAB-5405	0	19	39	0
+RS_GCF_900116225.1	0	99.84	0	316	p__Bacteroidetes (UID2605)	210	0	3434151	89.32868310495347	24	1572801	40.92879258577267	3844399	RS_GCF_900116225.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium wenxiniae	type strain of species	LPSN	f	5	5	539882	545704	none	0	none	none	99183	1	107	NZ_FOZZ01000013.1	none	none	none	none	none	none	160115	183066	f	f	t	284716	284716	Scaffold	IMG-taxon 2634166295 annotated assembly	na	PRJNA224116	SAMN05660206	24	284716	none	2016-11-02	GCA_900116225.1	none	full	none	none	none	0	0	Sphingobacterium wenxiniae	3334	representative genome	3	21	5	284716	167411	97494	2016/11/02	3	683125	1	DSM 22789	DOE - JOINT GENOME INSTITUTE	683125	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium wenxiniae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium wenxiniae	1625	3844399	11	47	assembly from type material	3842774	0	FOZZ00000000.1	3411	21	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1625	19	49	0
+RS_GCF_900102205.1	0	99.63	0.12	486	o__Bacteroidales (UID2716)	270	0	3181542	93.06153036591434	6	1632234	47.74357652838712	3418751	RS_GCF_000025925.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella ruminicola	not type material	none	f	2	2	1448203	1448203	1448203	1	285	NZ_FNJZ01000001.1	1448203	4	109	NZ_FNJZ01000001.1	285	516	6.23e-145	99.298	FNUV01000014.1.2381	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella ruminicola	569791	569791	f	f	t	779453	779453	Contig	IMG-taxon 2606217814 annotated assembly	na	PRJNA224116	SAMN04487826	6	779453	none	2016-10-21	GCA_900102205.1	none	full	none	none	none	0	0	Prevotella sp. khp1	2770	na	7	none	none	none	none	none	2016/10/21	0	1761884	1	KHP1	DOE - JOINT GENOME INSTITUTE	1761884	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. khp1	0	3418751	11	46	none	3418751	0	FNJZ00000000.1	2831	6	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	46	0
+RS_GCF_002265625.1	0	99.54	0.68	487	o__Bacteroidales (UID2716)	270	0	3268767	87.83702370075778	133	1812011	48.69164830440157	3721400	RS_GCF_002265625.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002265625	not type material	none	f	18	18	204446	204446	1475	5	1473	NZ_NOVE01000119.1	25672	4	109	NZ_NOVE01000052.1	1473	2558	0	98.031	CDZB01074500.1.2312	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;gut metagenome	27980	27980	f	f	t	53594	53594	Contig	ASM226562v1	na	PRJNA224116	SAMN07409541	133	53594	Netherlands: Rijswijk; Biomedical Primate Research Centre (BPRC)	2017-08-22	GCA_002265625.1	none	full	none	feces	none	0	0	Prevotella sp. 885	3006	na	22	none	none	none	none	none	2017/08/22	0	2022527	9	885	Pirogov Russian National Research Medical University	2022527	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. 885	0	3721400	11	63	none	3721400	0	NOVE00000000.1	3062	133	1554	1	1450	2628	0	99.379	4471486	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__stercorea	1524	NZ_NOVE01000117.1	1490	2713	0	99.53	LT598564.1.1490	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella sp. Marseille-P2931	0	19	62	0
+RS_GCF_002738605.1	0	100	1.08	152	k__Bacteria (UID2565)	93	0	3779019	89.57103535205695	15	1504366	35.65677234447155	4219019	RS_GCF_001675285.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	not type material	none	f	3	3	1302244	1302244	4956	1	2764	NZ_NHPR01000011.1	318237	1	83	NZ_NHPR01000006.1	2764	5105	0	100	FTRC01000099.2319.5092	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	281267	281267	t	f	f	573018	573018	Contig	ASM273860v1	na	PRJNA224116	SAMN07139315	15	573018	China: Hunan	2017-10-31	GCA_002738605.1	none	full	none	farming pond	28.67 N 112.27 E	0	0	Elizabethkingia miricola	3802	na	4	none	none	none	none	none	2017/10/31	0	172045	1	FL160902	Huazhong Agricultural University	172045	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Elizabethkingia;s__Elizabethkingia miricola	0	4219019	11	46	none	4219019	0	NHPR00000000.1	3879	15	4956	1	1424	2564	0	99.157	2466305	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Elizabethkingia;s__meningoseptica	1425	NZ_NHPR01000011.1	1425	2627	0	99.93	CP023746.3518743.3520264	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Elizabethkingia;Elizabethkingia miricola	0	19	46	0
+RS_GCF_002763785.1	0	99.21	0.68	567	g__Prevotella (UID2724)	296	0	2366995	85.27152029679019	2	1204652	43.397855706737396	2775833	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2092617	2092617	2092617	4	2898	NZ_CP024725.1	2092617	4	108	NZ_CP024725.1	2898	5352	0	100	CP024725.110503.113408	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1387916	1387916	t	f	f	2092617	2092617	Complete Genome	ASM276378v1	na	PRJNA224116	SAMN07956010	none	none	South Korea: Gwangju	2017-11-13	GCA_002763785.1	none	full	none	Subgingival dental plaque	35.14 N 126.93 E	2	0	Prevotella intermedia	2383	na	12	2	1	2092617	2092617	683216	2017/11/13	0	28131	4	KCOM 2838	Korean Collection for Oral Microbiology	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2775833	11	48	none	2775833	0	none	2344	2	2092617	4	1529	2802	0	99.738	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_CP024725.1	1530	2826	0	100	CP024725.1481342.1482880	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	48	0
+RS_GCF_002529225.1	0	99.32	0	567	g__Prevotella (UID2724)	296	0	2397216	85.46498818143898	126	1214343	43.293474656940866	2804910	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	14	14	154776	154776	3276	1	2901	NZ_NSLY01000065.1	106718	4	108	NZ_NSLY01000007.1	2902	5302	0	99.655	CP024732.1123694.1126602	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	22261	22261	t	f	f	56977	56977	Contig	ASM252922v1	na	PRJNA224116	SAMN07602649	126	56977	United Kingdom: London	2017-10-11	GCA_002529225.1	none	full	none	Subgingival plaque	none	0	0	Prevotella intermedia	2502	na	10	none	none	none	none	none	2017/10/11	0	28131	5	WW2834	University of Leicester	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2804910	11	47	none	2804910	0	NSLY00000000.1	2457	126	1561	1	1529	2808	0	99.804	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_NSLY01000077.1	1530	2815	0	99.869	CP024725.1481342.1482880	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	47	0
+RS_GCF_002797735.1	0	99.01	0.49	303	p__Bacteroidetes (UID2591)	203	0	2616742	92.08471925643671	1	1308227	46.03729218191569	2841668	RS_GCF_002797735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Thermoflavifilum;s__Thermoflavifilum aggregans	type strain of species	LPSN	t	1	1	2841668	2841668	2841668	1	3575	NZ_PGFG01000001.1	2841668	1	108	NZ_PGFG01000001.1	1972	3402	0	97.921	FPCJ01000001.1917876.1920791	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Crenotalea;Crenotalea thermophila	2841668	2841668	t	f	f	2841668	2841668	Contig	ASM279773v1	na	PRJNA224116	SAMN06265366	1	2841668	none	2017-11-28	GCA_002797735.1	none	full	none	none	none	0	0	Thermoflavifilum aggregans	2384	representative genome	3	none	none	none	none	none	2017/11/28	0	454188	1	DSM 27268	DOE Joint Genome Institute	454188	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Thermoflavifilum;s__Thermoflavifilum aggregans	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Thermoflavifilum;s__Thermoflavifilum aggregans	0	2841668	11	43	assembly from type material	2841668	0	PGFG00000000.1	2393	1	2841668	1	1447	2660	0	99.862	1119915	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__;s__	1522	NZ_PGFG01000001.1	1447	2623	0	99.378	AB849120.1.1447	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Crenotalea;Crenotalea thermophila	0	19	43	0
+RS_GCF_002763845.1	0	97.97	0	567	g__Prevotella (UID2724)	296	0	2330367	85.13962892274778	2	1190753	43.503992529352104	2737112	RS_GCF_001953955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella intermedia	not type material	none	f	1	1	2136938	2136938	2136938	4	2901	NZ_CP024729.1	2136938	4	108	NZ_CP024729.1	2901	5358	0	100	CP024734.1395044.1397952	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	1368556	1368556	t	f	f	2136938	2136938	Complete Genome	ASM276384v1	na	PRJNA224116	SAMN07955950	none	none	Korea: Gwangju	2017-11-13	GCA_002763845.1	none	full	none	Subgingival dental plaque	35.14 N 126.93 E	2	0	Prevotella intermedia	2387	na	12	2	1	2136938	2136938	600174	2017/11/13	0	28131	4	KCOM 1933	Korean Collection for Oral Microbiology	28131	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella intermedia	0	2737112	11	48	none	2737112	0	none	2392	2	2136938	4	1529	2802	0	99.738	4364049	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__intermedia	1530	NZ_CP024729.1	1530	2826	0	100	CP024729.1297782.1299320	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella intermedia	0	19	48	0
+RS_GCF_002251775.1	111	98.65	1.66	511	f__Flavobacteriaceae (UID2817)	283	62.5	2860922	88.10492563384307	229	1310606	40.36636947964089	3247176	RS_GCF_002251775.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium aurantiibacter	type strain of species	LPSN	f	32	32	109784	109784	2034	2	1675	NZ_NOXX01000118.1	2034	1	103	NZ_NOXX01000118.1	1675	2368	0	92.239	FNDQ01000043.2209.5100	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Myroides;Myroides phaeus	14178	14242	f	f	t	32579	32579	Scaffold	ASM225177v1	na	PRJNA224116	SAMN07419339	229	32579	China: Lake Taihu	2017-08-14	GCA_002251775.1	none	full	none	cyanobacterial aggregates	none	0	1	Flavobacterium aurantiibacter	2994	representative genome	4	228	32	32579	15414	8015	2017/08/14	1	2023067	1	TH167	Nanjing Institute of Geography and Limnology	2023067	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium aurantiibacter	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium aurantiibacter	288	3247176	11	38	assembly from type material	3246888	0	NOXX00000000.1	2981	228	2153	1	1514	2785	0	99.868	4356260	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1519	NZ_NOXX01000117.1	1515	2787	0	99.868	JN868832.1.1515	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;uncultured bacterium	288	19	38	0
+RS_GCF_900110895.1	0	99.44	0.37	487	o__Bacteroidales (UID2716)	270	0	2697167	92.46030657761042	10	1428963	49.00478949343031	2917108	RS_GCF_900110895.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp900110895	not type material	none	f	3	2	587459	1008584	none	0	none	none	1008584	2	107	NZ_FOIQ01000001.1	none	none	none	none	none	none	291596	364638	f	f	t	425374	480352	Scaffold	IMG-taxon 2623621022 annotated assembly	na	PRJNA224116	SAMN04487850	10	425374	none	2016-10-31	GCA_900110895.1	none	full	none	none	none	0	0	Prevotella aff. ruminicola Tc2-24	2375	na	4	8	2	480352	312167	282115	2016/10/31	2	81582	2	TC2-24	DOE - JOINT GENOME INSTITUTE	81582	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__Prevotella aff. ruminicola Tc2-24	1142	2917108	11	46	none	2915966	0	FOIQ00000000.1	2460	8	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1142	18	46	0
+RS_GCF_900100705.1	0	98.09	3.06	315	p__Bacteroidetes (UID2605)	209	70	4936306	85.77270841988698	65	2230705	38.7682307339774	5755101	RS_GCF_900100705.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter terrae	type strain of species	LPSN	f	9	8	587498	724660	5999	1	2866	NZ_FNCH01000044.1	5999	1	107	NZ_FNCH01000044.1	2866	5293	0	100	FNCH01000044.2841.5717	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter terrae	88522	91350	t	f	f	237392	256572	Scaffold	IMG-taxon 2675903222 annotated assembly	na	PRJNA224116	SAMN05421827	65	237392	none	2016-10-21	GCA_900100705.1	none	full	none	none	none	0	0	Pedobacter terrae	4869	representative genome	3	63	8	256572	111446	63813	2016/10/21	2	405671	1	DSM 17933	DOE - JOINT GENOME INSTITUTE	405671	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter terrae	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter terrae	1150	5755101	11	46	assembly from type material	5753951	0	FNCH00000000.1	4970	63	5999	1	1477	2728	0	100	4354219	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	1519	NZ_FNCH01000044.1	1477	2728	0	100	DQ889723.1.1477	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter terrae	1150	19	47	0
+RS_GCF_900102265.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	3549040	89.61715296912497	12	1443737	36.455942896159414	3960224	RS_GCF_900102265.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Epilithonimonas;s__Epilithonimonas hungarica	type strain of species	LPSN	f	2	2	1599617	1599617	962864	2	2743	NZ_FNBH01000002.1	962864	2	100	NZ_FNBH01000002.1	2743	5066	0	100	FNBH01000007.412.3169	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium hungaricum	330018	330018	t	f	f	962864	962864	Contig	IMG-taxon 2684622908 annotated assembly	na	PRJNA224116	SAMN05421825	12	962864	none	2016-10-21	GCA_900102265.1	none	full	none	none	none	0	0	Epilithonimonas hungarica	3559	representative genome	6	none	none	none	none	none	2016/10/21	0	454006	2	DSM 19684	DOE - JOINT GENOME INSTITUTE	454006	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Epilithonimonas;s__Epilithonimonas hungarica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Epilithonimonas;s__Epilithonimonas hungarica	0	3960224	11	42	assembly from type material	3960224	0	FNBH00000000.1	3619	12	962864	2	1402	2577	0	99.857	4344018	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FNBH01000002.1	1402	2577	0	99.857	EF685359.1.1406	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium hungaricum	0	19	41	0
+RS_GCF_900105165.1	0	97.62	0.71	316	p__Bacteroidetes (UID2605)	210	0	5324363	88.53198240920936	1	2482725	41.28272637844374	6014056	RS_GCF_900105165.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__Mucilaginibacter mallensis	type strain of species	LPSN	f	1	1	6013956	6014056	6014056	2	2869	NZ_LT629740.1	6014056	2	106	NZ_LT629740.1	2869	5299	0	100	LT629740.5235883.5238761	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Mucilaginibacter;Mucilaginibacter mallensis	6013956	6014056	t	f	f	6013956	6014056	Chromosome	IMG-taxon 2667528181 annotated assembly	na	PRJNA224116	SAMN05216490	1	6013956	none	2016-10-20	GCA_900105165.1	none	full	none	none	none	1	0	Mucilaginibacter mallensis	4937	representative genome	6	1	1	6014056	6014056	6014056	2016/10/20	1	652787	2	MP1X4	DOE - JOINT GENOME INSTITUTE	652787	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__Mucilaginibacter mallensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__Mucilaginibacter mallensis	100	6014056	11	44	assembly from type material	6013956	0	none	5011	1	6014056	2	none	none	none	none	none	none	1519	NZ_LT629740.1	1519	2806	0	100	LT629740.5239574.5241099	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Mucilaginibacter;Mucilaginibacter mallensis	100	19	45	0
+RS_GCF_900112365.1	0	100	0.6	454	o__Cytophagales (UID2936)	336	0	7381937	86.72047094011221	101	4087340	48.02023190656066	8512335	RS_GCF_900112365.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma endophyticum	type strain of species	LPSN	f	6	6	1263030	1263030	3002	1	2808	NZ_FOLQ01000068.1	none	0	none	none	2808	5186	0	100	FOLQ01000068.121.2943	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma endophyticum	84274	102558	f	f	t	394884	394884	Scaffold	IMG-taxon 2622736583 annotated assembly	na	PRJNA224116	SAMN05216167	101	394884	none	2016-11-05	GCA_900112365.1	none	full	none	none	none	0	0	Spirosoma endophyticum	7258	representative genome	6	83	6	394884	138126	52425	2016/11/05	18	662367	2	DSM 26130	DOE - JOINT GENOME INSTITUTE	662367	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma endophyticum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma endophyticum	631	8512335	11	41	assembly from type material	8511704	0	FOLQ00000000.1	7600	83	1526	2	1396	2579	0	100	4359316	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__	1504	NZ_FOLQ01000076.1	1408	2601	0	100	GQ342559.1.1408	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma endophyticum	631	19	41	0
+RS_GCF_900113005.1	0	100	2.96	278	k__Bacteria (UID2569)	186	0	4539846	89.11576884391334	29	2122160	41.681291009127754	5094324	RS_GCF_900113005.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Prolixibacteraceae;g__Sunxiuqinia;s__Sunxiuqinia elliptica	type strain of species	LPSN	t	5	4	922944	1186700	5453	1	2878	NZ_FONW01000022.1	75559	2	104	NZ_FONW01000017.1	2878	5315	0	100	FONW01000022.258.3145	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;Sunxiuqinia;Sunxiuqinia elliptica	175565	195935	t	f	f	278758	278758	Scaffold	IMG-taxon 2663762719 annotated assembly	na	PRJNA224116	SAMN05216283	29	278758	none	2016-11-02	GCA_900113005.1	none	full	none	none	none	0	0	Sunxiuqinia elliptica	4059	representative genome	5	26	4	278758	206533	109545	2016/11/02	3	655355	1	CGMCC 1.9156	DOE - JOINT GENOME INSTITUTE	655355	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;g__Sunxiuqinia;s__Sunxiuqinia elliptica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;g__Sunxiuqinia;s__Sunxiuqinia elliptica	2927	5094324	11	46	assembly from type material	5091397	0	FONW00000000.1	4102	26	5453	1	1479	2715	0	99.797	565691	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	1519	NZ_FONW01000022.1	1415	2608	0	99.929	GQ200190.1.1415	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;Sunxiuqinia;Sunxiuqinia elliptica	2927	19	46	0
+RS_GCF_002302475.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2360592	89.40027835900737	1	904514	34.25573050303449	2640475	RS_GCF_000379185.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga cynodegmi	not type material	none	f	1	1	2640475	2640475	2640475	3	2820	NZ_CP022378.1	2640475	3	103	NZ_CP022378.1	2820	5208	0	100	CP022378.623876.626710	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga cynodegmi	2640475	2640475	t	f	f	2640475	2640475	Complete Genome	ASM230247v1	na	PRJNA224116	SAMN06754876	none	none	USA: California	2017-09-14	GCA_002302475.1	none	full	none	none	none	1	1	Capnocytophaga cynodegmi	2273	representative genome	9	1	1	2640475	2640475	2640475	2017/09/14	0	28189	3	G7591	Centers for Disease Control and Prevention	28189	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga cynodegmi	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga cynodegmi	0	2640475	11	45	none	2640475	0	none	2294	1	2640475	3	1511	2663	0	98.478	4334304	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1512	NZ_CP022378.1	1512	2793	0	100	CP022378.2073678.2075200	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga cynodegmi	0	19	45	0
+RS_GCF_900187185.1	0	100	1.72	324	o__Flavobacteriales (UID2815)	204	0	2479720	89.68635166806516	1	1116877	40.39513468938977	2764880	RS_GCF_900187185.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Planobacterium;s__Planobacterium taklimakanense	type strain of species	LPSN	f	1	1	2764880	2764880	2764880	2	2734	NZ_LT906465.1	2764880	2	101	NZ_LT906465.1	2734	5049	0	100	LT906465.1406492.1409235	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium taklimakanense	2764880	2764880	t	f	f	2764880	2764880	Complete Genome	50618_E01	na	PRJNA224116	SAMEA4412677	none	none	China	2017-08-15	GCA_900187185.1	none	full	none	Soil	none	1	0	Chryseobacterium taklimakanense	2607	na	6	1	1	2764880	2764880	2764880	2017/08/15	0	536441	2	NCTC13490	SC	536441	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Chryseobacterium;s__Chryseobacterium taklimakanense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Chryseobacterium;s__Chryseobacterium taklimakanense	0	2764880	11	40	assembly from type material	2764880	0	none	2630	1	2764880	2	none	none	none	none	none	none	1513	NZ_LT906465.1	1505	2780	0	100	LT906465.2321743.2323247	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium taklimakanense	0	19	40	0
+RS_GCF_002831685.1	0	99.66	0.67	548	f__Flavobacteriaceae (UID2845)	298	0	3154231	88.42045923131414	1	1093189	30.64463997932335	3567309	RS_GCF_002831685.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__Polaribacter sp002831685	not type material	none	f	1	1	3567309	3567309	3567309	6	2870	NZ_CP025119.1	3567309	6	104	NZ_CP025119.1	2870	5301	0	100	CP025119.32450.35336	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. ALD11	3567309	3567309	t	f	f	3567309	3567309	Complete Genome	ASM283168v1	na	PRJNA224116	SAMN08125741	none	none	USA: near Point Barrow; Alaska	2017-12-11	GCA_002831685.1	none	full	none	sea ice	71.3 N 157 W	1	0	Polaribacter sp. ALD11	3029	na	18	1	1	3567309	3567309	3567309	2017/12/11	0	2058137	6	ALD11	University of Alaska Fairbanks	2058137	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;x__unclassified Polaribacter;s__Polaribacter sp. ALD11	0	3567309	11	48	none	3567309	0	none	3068	1	3567309	6	1480	2728	0	99.932	315599	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Polaribacter;s__	1517	NZ_CP025119.1	1517	2802	0	100	CP025119.2747519.2749041	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Polaribacter;Polaribacter sp. ALD11	0	19	48	0
+RS_GCF_900103215.1	0	99.67	0.54	571	s__algicola (UID2846)	303	0	5420462	89.48729471267616	49	2397925	39.59970023509548	6057242	RS_GCF_900103215.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kriegella;s__Kriegella aquimaris	type strain of species	LPSN	t	5	5	1199544	1244864	546535	2	2821	NZ_FNGV01000003.1	546535	2	94	NZ_FNGV01000003.1	2821	5210	0	100	FNGV01000004.395310.398147	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Kriegella;Kriegella aquimaris	123579	126192	t	f	f	317933	317933	Scaffold	IMG-taxon 2622736525 annotated assembly	na	PRJNA224116	SAMN04488514	49	317933	none	2016-10-21	GCA_900103215.1	none	full	none	none	none	0	1	Kriegella aquimaris	4873	representative genome	5	48	5	317933	185574	112183	2016/10/21	1	192904	1	DSM 19886	DOE - JOINT GENOME INSTITUTE	192904	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kriegella;s__Kriegella aquimaris	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kriegella;s__Kriegella aquimaris	1830	6057242	11	39	assembly from type material	6055412	0	FNGV00000000.1	5019	48	1621	1	1260	2309	0	99.762	249383	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Kriegella;s__aquimaris	1324	NZ_FNGV01000042.1	1243	2296	0	100	AB084262.1.1382	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Kriegella;Kriegella aquimaris	1830	19	39	0
+RS_GCF_900110995.1	0	100	1.07	303	p__Bacteroidetes (UID2591)	203	0	7346977	91.07790737098651	10	3417362	42.36681035391198	8066695	RS_GCF_900110995.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga sp900110995	not type material	none	f	2	1	3119135	4830363	4830363	2	2874	NZ_FOJF01000001.1	4830363	2	97	NZ_FOJF01000001.1	2874	5308	0	100	FOJF01000006.275.3158	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;Chitinophaga sp. YR573	806613	1008336	t	f	f	1702103	4830363	Scaffold	IMG-taxon 2690315653 annotated assembly	na	PRJNA224116	SAMN05428988	10	1702103	none	2016-10-31	GCA_900110995.1	none	full	none	none	none	0	0	Chitinophaga sp. YR573	6424	na	6	8	1	4830363	1702103	1507611	2016/10/31	2	1881040	2	YR573	DOE - JOINT GENOME INSTITUTE	1881040	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;x__unclassified Chitinophaga;s__Chitinophaga sp. YR573	565	8066695	11	52	none	8066130	0	FOJF00000000.1	6539	8	4830363	2	1488	2612	0	98.522	1689895	k__Bacteria;p__Bacteroidetes;c__[Saprospirae];o__[Saprospirales];f__Chitinophagaceae;g__Chitinophaga;s__	1524	NZ_FOJF01000001.1	1526	2761	0	99.345	FOMK01000028.124.1656	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Chitinophaga;Chitinophaga sp. CF118	565	19	51	0
+RS_GCF_002530755.1	158	98.59	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	3013041	87.02292920450341	192	1135696	32.81148339514098	3462353	RS_GCF_002217205.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium branchiophilum	not type material	none	f	22	22	182754	182754	5533	1	2865	NZ_PCMW01000001.1	5533	1	103	NZ_PCMW01000001.1	2865	5275	0	99.895	FQ859183.2690789.2693666	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium branchiophilum	18028	19451	f	f	t	43793	43852	Scaffold	ASM253075v1	na	PRJNA224116	SAMN06049062	192	43793	USA: Oregon	2017-10-12	GCA_002530755.1	none	full	none	Oncorynchus tshawytscha	none	0	0	Flavobacterium branchiophilum	3049	na	3	178	22	43852	24734	12224	2017/10/12	14	55197	1	ATCC 35036	FDA	55197	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium branchiophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium branchiophilum	919	3462353	11	34	none	3461434	0	PCMW00000000.1	3109	178	5533	1	1508	2772	0	99.867	4481484	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1509	NZ_PCMW01000001.1	1501	2760	0	99.867	FQ859183.1179124.1180623	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium branchiophilum	919	17	34	0
+RS_GCF_900106795.1	0	98.25	0.95	496	s__algicola (UID2847)	263	0	3044995	86.12551095563553	77	1290680	36.60150588307358	3535532	RS_GCF_900106795.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita viscosa	type strain of species	LPSN	f	11	10	231644	231644	3072	1	2771	NZ_FNNS01000053.1	3072	2	107	NZ_FNNS01000053.1	2771	5118	0	100	FNNS01000053.297.3072	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aequorivita;Aequorivita viscosa	45796	57024	t	f	f	102451	119631	Scaffold	IMG-taxon 2667527447 annotated assembly	na	PRJNA224116	SAMN05216556	77	102451	none	2016-10-22	GCA_900106795.1	none	full	none	none	none	0	1	Aequorivita viscosa	3065	representative genome	4	62	10	119631	75003	30293	2016/10/22	15	797419	1	CGMCC 1.11023	DOE - JOINT GENOME INSTITUTE	797419	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita viscosa	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita viscosa	9229	3535532	11	34	assembly from type material	3526303	0	FNNS00000000.1	3133	62	1851	1	1488	2726	0	99.731	615050	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__	1521	NZ_FNNS01000062.1	1488	2726	0	99.731	HM485318.1.1488	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Aequorivita;Aequorivita viscosa	9229	19	35	0
+RS_GCF_900112255.1	0	99.39	0.91	474	o__Cytophagales (UID2937)	330	0	3780752	88.95941481053767	49	1801268	42.39147420364837	4249974	RS_GCF_900112255.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Catalimonadaceae;g__Flexibacter;s__Flexibacter flexilis	type strain of species	LPSN	t	5	4	912924	912924	5591	1	2867	NZ_FOLE01000025.1	5591	1	107	NZ_FOLE01000025.1	2867	5295	0	100	FOLE01000025.251.3128	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Flexibacter;Flexibacter flexilis DSM 6793	86716	88541	t	f	f	293136	321912	Scaffold	IMG-taxon 2675903165 annotated assembly	na	PRJNA224116	SAMN05421780	49	293136	none	2016-11-02	GCA_900112255.1	none	full	none	none	none	0	0	Flexibacter flexilis DSM 6793	3572	representative genome	3	48	4	321912	210381	82926	2016/11/02	1	998	1	DSM 6793	DOE - JOINT GENOME INSTITUTE	927664	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flexibacteraceae;g__Flexibacter;s__Flexibacter flexilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flexibacteraceae;g__Flexibacter;s__Flexibacter flexilis;x__Flexibacter flexilis DSM 6793	846	4249974	11	46	assembly from type material	4249128	0	FOLE00000000.1	3669	48	5591	1	1465	2656	0	99.386	58635	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__;g__;s__	1508	NZ_FOLE01000025.1	1466	2708	0	100	AB078051.1.1466	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Microscillaceae;Flexibacter;Flexibacter flexilis	846	19	44	0
+RS_GCF_900101815.1	0	98.9	0.88	571	s__algicola (UID2846)	303	0	4267473	87.95291917946363	53	2124077	43.78641907484959	4851997	RS_GCF_900101815.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Pricia;s__Pricia antarctica	type strain of species	LPSN	t	5	5	703343	703343	5084	1	2829	NZ_FNAO01000026.1	373231	2	102	NZ_FNAO01000008.1	2829	5225	0	100	FNAO01000026.5.2849	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Pricia;Pricia antarctica	91528	93307	t	f	f	450975	450975	Scaffold	IMG-taxon 2684622891 annotated assembly	na	PRJNA224116	SAMN05421636	53	450975	none	2016-10-21	GCA_900101815.1	none	full	none	none	none	0	1	Pricia antarctica	4087	representative genome	5	52	5	450975	419157	168068	2016/10/21	1	641691	1	DSM 23421	DOE - JOINT GENOME INSTITUTE	641691	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Pricia;s__Pricia antarctica	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Pricia;s__Pricia antarctica	1002	4851997	11	38	assembly from type material	4850995	0	FNAO00000000.1	4185	52	5084	1	1493	2752	0	99.933	564481	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	1526	NZ_FNAO01000026.1	1493	2752	0	99.933	FJ889677.1.1493	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Pricia;Pricia antarctica	1002	19	39	0
+RS_GCF_900107535.1	0	99.84	1.91	315	p__Bacteroidetes (UID2605)	209	50	4633944	89.3079857992034	43	2232853	43.03437985264814	5188723	RS_GCF_900107535.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter hartonius	type strain of species	LPSN	f	5	5	772052	772052	5927	1	2872	NZ_FNRA01000030.1	157934	2	107	NZ_FNRA01000013.1	2872	5304	0	100	FNRA01000030.2710.5593	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter hartonius	120663	123541	t	f	f	391998	391998	Scaffold	IMG-taxon 2693429882 annotated assembly	na	PRJNA224116	SAMN05443550	43	391998	none	2016-10-22	GCA_900107535.1	none	full	none	none	none	0	0	Pedobacter hartonius	4518	representative genome	4	42	5	391998	232371	152510	2016/10/22	1	425514	1	DSM 19033	DOE - JOINT GENOME INSTITUTE	425514	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter hartonius	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter hartonius	190	5188723	11	53	assembly from type material	5188533	0	FNRA00000000.1	4639	42	5927	1	1491	2748	0	99.933	4397089	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__cryoconitis	1519	NZ_FNRA01000030.1	1491	2748	0	99.933	AM491371.1.1492	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter hartonius	190	19	53	0
+RS_GCF_900109575.1	0	100	3.81	316	p__Bacteroidetes (UID2605)	210	91.67	6051128	89.24315997578348	25	2640173	38.94233931953901	6780495	RS_GCF_900109575.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pseudosphingobacterium;s__Pseudosphingobacterium domesticum	type strain of species	LPSN	f	3	2	1687902	2465563	none	0	none	none	242713	2	105	NZ_FOAF01000008.1	none	none	none	none	none	none	271187	294804	f	f	t	776874	946904	Scaffold	IMG-taxon 2599185177 annotated assembly	na	PRJNA224116	SAMN05661044	25	776874	none	2016-10-31	GCA_900109575.1	none	full	none	none	41.15 N 8.62 W	0	0	Olivibacter domesticus	5526	representative genome	3	23	2	946904	276675	202226	2016/10/31	2	407022	1	DSM 18733	DOE - JOINT GENOME INSTITUTE	407022	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Olivibacter;s__Olivibacter domesticus	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Olivibacter;s__Olivibacter domesticus	797	6780495	11	43	assembly from type material	6779698	0	FOAF00000000.1	5662	23	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	797	19	43	0
+RS_GCF_002744755.1	22	99.62	0.38	496	s__algicola (UID2847)	263	0	3982913	91.14138137929235	50	1839824	42.101081552104155	4370038	RS_GCF_002744755.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella nanhaiensis	type strain of species	LPSN	f	4	4	836881	836881	263520	2	2500	NZ_KZ319291.1	111346	1	103	NZ_KZ319296.1	1896	3230	0	97.468	FQXT01000012.341.3160	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Leeuwenhoekiella;Leeuwenhoekiella palythoae	87400	87400	t	f	f	423190	423190	Scaffold	ASM274475v1	na	PRJNA224116	SAMN07515617	60	262916	China: South China Sea	2017-10-26	GCA_002744755.1	none	full	none	seawater	none	0	1	Leeuwenhoekiella nanhaiensis	3810	representative genome	5	50	4	423190	152456	58292	2017/10/26	10	1655491	2	G18	Tongji University	1655491	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella nanhaiensis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__Leeuwenhoekiella nanhaiensis	22	4370038	11	35	assembly from type material	4370016	0	NQXA00000000.1	3809	50	263520	2	1525	2669	0	98.295	148201	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Leeuwenhoekiella;s__marinoflava	1524	NZ_KZ319291.1	1486	2723	0	99.731	KR809379.1.1495	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Leeuwenhoekiella;Leeuwenhoekiella nanhaiensis	0	19	35	0
+RS_GCF_900186605.1	10	96.64	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2234498	88.8629155572877	202	816169	32.45804890367404	2514545	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	37	37	86352	86352	2878	1	1188	NZ_FYCQ01000074.1	none	0	none	none	1188	2194	0	100	CP010277.1671470.1674361	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	12448	12448	f	f	t	21045	21045	Contig	KU061128-1_V1	na	PRJNA224116	SAMEA104125758	202	21045	none	2017-07-29	GCA_900186605.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2229	na	2	none	none	none	none	none	2017/07/29	0	96345	1	KU 061128-1	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2514545	11	24	none	2514545	0	FYCQ00000000.1	2241	202	2878	1	1047	1929	0	99.904	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1048	NZ_FYCQ01000074.1	1048	1936	0	100	CP010274.1714582.1716099	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	15	24	0
+RS_GCF_900186685.1	61	99.29	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2426887	88.05939550778203	47	891167	32.33663714823261	2755966	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	7	7	367663	367663	3028	1	2872	NZ_FYCW01000026.1	none	0	none	none	2872	5304	0	100	CP010278.2441608.2444499	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	58637	58637	f	f	t	144958	144958	Contig	LM-01-Fp_V1	na	PRJNA224116	SAMEA104126817	47	144958	none	2017-07-29	GCA_900186685.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2458	na	2	none	none	none	none	none	2017/07/29	0	96345	1	LM-01-Fp	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2755966	11	39	none	2755966	0	FYCW00000000.1	2466	47	2346	1	1507	2784	0	100	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1508	NZ_FYCW01000035.1	1508	2785	0	100	CP010278.992834.994351	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	19	39	0
+RS_GCF_900186555.1	5	97.35	0	511	f__Flavobacteriaceae (UID2817)	283	0	2288049	88.95694000900437	179	834808	32.456520615019514	2572086	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	32	32	77138	77138	4617	1	2874	NZ_FYCP01000070.1	none	0	none	none	2874	5302	0	99.965	MIJV01000030.30.2923	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	14369	14369	f	f	t	24031	24031	Contig	KU051128-10_V1	na	PRJNA224116	SAMEA104125755	179	24031	none	2017-07-29	GCA_900186555.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2302	na	2	none	none	none	none	none	2017/07/29	0	96345	1	KU 051128-10	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2572086	11	23	none	2572086	0	FYCP00000000.1	2321	179	4617	1	1047	1929	0	99.904	2234571	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	1048	NZ_FYCP01000070.1	1048	1936	0	100	CP010274.1714582.1716099	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	0	15	23	0
+RS_GCF_002754195.1	0	99.65	1.19	511	f__Flavobacteriaceae (UID2817)	283	14.29	5462370	86.3108998131374	1	2100094	33.18358200417968	6328714	RS_GCF_002754195.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp002754195	not type material	none	f	1	1	6328714	6328714	6328714	6	2868	NZ_PEEU01000001.1	6328714	6	104	NZ_PEEU01000001.1	2870	5132	0	98.955	MTQF01000024.2085.4975	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;[Flexibacter] sp. ATCC 35103	6328714	6328714	t	f	f	6328714	6328714	Contig	ASM275419v1	na	PRJNA224116	SAMN07626139	1	6328714	USA: Lake Washington	2017-11-03	GCA_002754195.1	none	full	none	none	none	0	0	Flavobacterium sp. 9	5230	na	18	none	none	none	none	none	2017/11/03	0	2035198	6	9	DOE Joint Genome Institute	2035198	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. 9	0	6328714	11	72	none	6328714	0	PEEU00000000.1	5298	1	6328714	6	1486	2706	0	99.529	273523	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__succinicans	1510	NZ_PEEU01000001.1	1510	2706	0	99.007	CP033068.3005443.3006959	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium sp. 140616W15	0	19	72	0
+RS_GCF_900186825.1	40	99.29	0.35	511	f__Flavobacteriaceae (UID2817)	283	0	2271364	87.94975547613424	73	838798	32.47970013901097	2582570	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	7	7	287207	287207	2950	1	2874	NZ_FYDA01000065.1	none	0	none	none	2874	5308	0	100	MIJV01000030.30.2923	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	35377	35377	f	f	t	129445	129445	Contig	NO042_V1	na	PRJNA224116	SAMEA104126822	73	129445	none	2017-07-29	GCA_900186825.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2295	na	1	none	none	none	none	none	2017/07/29	0	96345	0	NO042	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2582570	11	37	none	2582570	0	FYDA00000000.1	2291	73	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	37	0
+RS_GCF_900186405.1	50	99.29	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2388179	88.20556857487401	49	874527	32.30058375639205	2707515	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	6	6	365021	365021	3028	1	2872	NZ_FYCD01000016.1	none	0	none	none	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	55255	55255	f	f	t	136925	136925	Contig	FPDK001_V1	na	PRJNA224116	SAMEA104125234	49	136925	none	2017-07-29	GCA_900186405.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2414	na	1	none	none	none	none	none	2017/07/29	0	96345	0	DK001	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2707515	11	36	none	2707515	0	FYCD00000000.1	2417	49	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	36	0
+RS_GCF_900186595.1	0	94.64	1.8	511	f__Flavobacteriaceae (UID2817)	283	71.43	2271941	89.01198441152813	262	824956	32.32080877637078	2552399	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	57	57	56039	56039	3028	1	2872	NZ_FYCN01000220.1	none	0	none	none	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	9741	9741	f	f	t	13603	13603	Contig	JIP08_99	na	PRJNA224116	SAMEA104125753	262	13603	none	2017-07-29	GCA_900186595.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2379	na	1	none	none	none	none	none	2017/07/29	0	96345	0	99;JIP 08	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2552399	11	21	none	2552399	0	FYCN00000000.1	2392	262	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	15	23	0
+RS_GCF_900107705.1	0	99.14	1.91	487	o__Bacteroidales (UID2716)	270	0	3121846	92.6055754154182	36	1629889	48.348576037466465	3371121	RS_GCF_900107705.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp900107705	not type material	none	f	6	6	388325	388325	none	0	none	none	114183	4	107	NZ_FNRE01000012.1	none	none	none	none	none	none	93642	93642	f	f	t	191868	191868	Contig	IMG-taxon 2623620552 annotated assembly	na	PRJNA224116	SAMN04487851	36	191868	none	2016-10-22	GCA_900107705.1	none	full	none	none	none	0	0	Prevotella sp. tc2-28	2833	na	8	none	none	none	none	none	2016/10/22	0	1761888	4	TC2-28	DOE - JOINT GENOME INSTITUTE	1761888	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. tc2-28	0	3371121	11	44	none	3371121	0	FNRE00000000.1	2905	36	271784	1	404	686	0	97.277	69910	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	409	NZ_FNRE01000003.1	406	728	0	99.015	KC290756.1.1511	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured bacterium	0	18	44	0
+RS_GCF_002810985.1	0	98.88	0	492	o__Bacteroidales (UID2657)	269	0	4635387	88.99073920844594	121	2245643	43.13127109009819	5208842	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	12	9	319589	345402	987	14	982	NZ_PDCT01000050.1	117478	2	106	NZ_PDCT01000017.1	982	1814	0	100	AGXO01000016.696300.699186	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis CL05T00C42	43029	60567	f	f	t	142565	203425	Scaffold	Bfra_CM13_v1	na	PRJNA224116	SAMN07735201	121	142565	USA: Boston; MA	2017-12-05	GCA_002810985.1	none	full	none	none	none	0	0	Bacteroides fragilis	4615	na	26	86	9	203425	113668	53405	2017/12/05	35	817	6	CM13	Brigham & Women's Hospital	817	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	2311	5208842	11	65	none	5206531	0	PDCT00000000.1	4404	86	1263	4	1256	2292	0	99.602	2430157	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	1257	NZ_PDCT01000048.1	1257	2322	0	100	AP006841.5195504.5197040	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis YCH46	2311	19	64	0
+RS_GCF_900115205.1	0	98.35	0	571	s__algicola (UID2846)	303	0	2995870	93.41769562595378	5	1566253	48.87026821262309	3206962	RS_GCF_900115205.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Robiginitalea;s__Robiginitalea myxolifaciens	type strain of species	LPSN	f	2	1	1371375	1829996	5591	1	2835	NZ_FOYQ01000003.1	5591	1	106	NZ_FOYQ01000003.1	2835	5236	0	100	FOYQ01000003.2372.5222	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Robiginitalea;Robiginitalea myxolifaciens	640984	1068987	t	f	f	1368757	1829996	Scaffold	IMG-taxon 2636416043 annotated assembly	na	PRJNA224116	SAMN04490243	5	1368757	none	2016-11-02	GCA_900115205.1	none	full	none	none	none	0	1	Robiginitalea myxolifaciens	2811	representative genome	5	3	1	1829996	1371375	1371375	2016/11/02	2	400055	3	DSM 21019	DOE - JOINT GENOME INSTITUTE	400055	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Robiginitalea;s__Robiginitalea myxolifaciens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Robiginitalea;s__Robiginitalea myxolifaciens	2042	3206962	11	37	assembly from type material	3204920	0	FOYQ00000000.1	2835	3	5591	1	1465	2700	0	99.932	4347827	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Robiginitalea;s__	1521	NZ_FOYQ01000003.1	1465	2700	0	99.932	AB270585.1.1465	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Robiginitalea;Robiginitalea myxolifaciens	2042	19	37	0
+RS_GCF_900186565.1	45	99.29	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2413009	88.22024634305959	63	883939	32.317574990905484	2735210	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	7	7	438241	438241	3028	1	2872	NZ_FYCT01000021.1	none	0	none	none	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	43416	43416	f	f	t	131443	131443	Contig	FPFI1661_V1	na	PRJNA224116	SAMEA104125747	63	131443	none	2017-07-29	GCA_900186565.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2444	na	1	none	none	none	none	none	2017/07/29	0	96345	0	FI166	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2735210	11	37	none	2735210	0	FYCT00000000.1	2452	63	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	37	0
+RS_GCF_002811085.1	0	99.26	0	492	o__Bacteroidales (UID2657)	269	0	4517060	88.91817136904409	157	2198835	43.29910366689601	5080019	RS_GCF_000025985.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	not type material	none	f	12	8	483297	666618	597	21	593	NZ_PDCV01000054.1	60630	2	106	NZ_PDCV01000023.1	593	1096	0	100	CR626927.3202227.3205053	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis NCTC 9343	32345	44174	f	f	t	153952	192798	Scaffold	Bfra_078320_1_v1	na	PRJNA224116	SAMN07735199	157	153952	USA: Boston; MA	2017-12-05	GCA_002811085.1	none	full	none	none	none	0	0	Bacteroides fragilis	4432	na	38	115	8	192798	148379	60630	2017/12/05	42	817	13	078320-1	Brigham & Women's Hospital	817	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides fragilis	1773	5080019	11	67	none	5078246	0	PDCV00000000.1	4190	115	746	8	742	1371	0	100	4396623	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__fragilis	743	NZ_PDCV01000051.1	743	1373	0	100	CP012706.2340858.2342397	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides fragilis	1773	19	67	0
+RS_GCF_900186665.1	70	99.29	0.44	511	f__Flavobacteriaceae (UID2817)	283	0	2369702	88.13442450281471	44	870047	32.359802221622175	2688736	RS_GCF_002217405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	not type material	none	f	6	6	365120	365120	3028	1	2872	NZ_FYCZ01000015.1	none	0	none	none	2872	5304	0	100	CP010278.994972.997863	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium psychrophilum	61107	61107	f	f	t	155119	155119	Contig	LM-02-Fp_V1	na	PRJNA224116	SAMEA104126818	44	155119	none	2017-07-29	GCA_900186665.1	none	full	none	none	none	0	1	Flavobacterium psychrophilum	2378	na	1	none	none	none	none	none	2017/07/29	0	96345	0	LM-02-Fp	INRA	96345	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium psychrophilum	0	2688736	11	37	none	2688736	0	FYCZ00000000.1	2376	44	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	37	0
+RS_GCF_900110835.1	0	100	0.49	303	p__Bacteroidetes (UID2591)	203	0	7574295	91.07694716287841	8	3876890	46.62329867333289	8316369	RS_GCF_900110835.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga arvensicola	type strain of species	LPSN	f	3	1	1892301	4217799	none	0	none	none	3964220	1	375	NZ_FOJG01000002.1	none	none	none	none	none	none	1039418	2772123	f	f	t	1446452	4217799	Scaffold	IMG-taxon 2636416040 annotated assembly	na	PRJNA224116	SAMN04488122	8	1446452	none	2016-10-31	GCA_900110835.1	none	full	none	none	none	0	0	Chitinophaga arvensicola	6657	representative genome	4	3	1	4217799	3964220	3964220	2016/10/31	5	29529	1	DSM 3695	DOE - JOINT GENOME INSTITUTE	29529	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga arvensicola	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__Chitinophaga;s__Chitinophaga arvensicola	1020	8316369	11	68	assembly from type material	8315349	0	FOJG00000000.1	6730	3	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1020	19	67	0
+RS_GCF_900230225.1	0	100	0.1	454	o__Cytophagales (UID2936)	336	0	6932383	88.79367166139767	22	3921861	50.238867251449705	7807294	RS_GCF_900230225.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Spirosomaceae;g__Spirosoma;s__Spirosoma fluviale	type strain of species	LPSN	f	2	2	2635547	2635547	4524	1	2804	NZ_OCNH01000012.1	none	0	none	none	2812	4800	0	97.546	CP001769.1348739.1351570	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma linguale DSM 74	354837	433738	f	f	t	1277063	1431395	Scaffold	IMG-taxon 2728369216 annotated assembly	na	PRJNA224116	SAMN06269250	22	1277063	none	2017-09-28	GCA_900230225.1	none	full	none	none	none	0	0	Spirosoma fluviale	6185	representative genome	8	18	2	1431395	421864	401032	2017/09/28	4	1597977	4	DSM 29961	DOE - JOINT GENOME INSTITUTE	1597977	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma fluviale	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__Spirosoma fluviale	866	7807294	11	41	assembly from type material	7806428	0	OCNH00000000.1	6337	18	4524	1	1513	2545	0	97.158	3946733	k__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Cytophagaceae;g__Spirosoma;s__	1514	NZ_OCNH01000012.1	1457	2691	0	100	LC019141.1.1457	Bacteria;Bacteroidota;Bacteroidia;Cytophagales;Spirosomaceae;Spirosoma;Spirosoma fluviale	866	20	41	0
+RS_GCF_002251285.1	0	98.14	0.71	530	g__Prevotella (UID2721)	280	0	2773283	87.88396191048412	78	1624047	51.46524342767616	3155619	RS_GCF_002251385.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002251385	not type material	none	f	10	10	246193	246193	3335	1	2883	NZ_NPJK01000007.1	3335	4	107	NZ_NPJK01000007.1	2906	3816	0	90.571	CP012074.1211110.1214011	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella fusca JCM 17724	40456	40456	f	f	t	115813	115813	Contig	ASM225128v1	na	PRJNA224116	SAMN07431217	78	115813	Slovenia: pig farm Ihan	2017-08-14	GCA_002251285.1	none	full	none	feces from large intestine	none	0	0	Prevotella sp. P5-64	2696	na	8	none	none	none	none	none	2017/08/14	0	2024226	3	P5-64	University of Ljubljana	2024226	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. P5-64	0	3155619	11	54	none	3155619	0	NPJK00000000.1	2749	78	1205	3	983	1816	0	100	925131	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__copri	989	NZ_NPJK01000041.1	982	1814	0	100	HQ716707.1.1479	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;uncultured;uncultured bacterium	0	19	54	0
+RS_GCF_002833365.1	0	98.1	1.48	496	s__algicola (UID2847)	263	0	3850099	89.27184106960219	48	1604040	37.19270697955681	4312781	RS_GCF_900168115.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salinarum	type strain of species	LPSN	f	7	7	627711	627711	5995	2	2821	NZ_LKTS01000007.1	115868	2	102	NZ_LKTS01000006.1	2821	5140	0	99.575	CP012872.1703792.1706622	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter sp. T436	89849	89849	t	f	f	252283	252283	Contig	ASM283336v1	na	PRJNA224116	SAMN04145451	48	252283	none	2017-12-11	GCA_002833365.1	none	full	none	marine solar saltern	none	0	1	Salegentibacter salinarum	3723	representative genome	5	none	none	none	none	none	2017/12/11	0	447422	1	KCTC 12975	Xiamen University	447422	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salinarum	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salinarum	0	4312781	11	40	assembly from type material	4312781	0	LKTS00000000.1	3740	48	5995	1	1485	2732	0	99.798	4363420	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__	1526	NZ_LKTS01000007.1	1526	2741	0	99.083	CP012872.1701571.1703105	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter sp. T436	0	19	40	0
+RS_GCF_002302635.1	0	100	0	316	p__Bacteroidetes (UID2605)	210	0	2502599	88.38889575644127	1	1015563	35.868507955568894	2831350	RS_GCF_002302635.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga stomatis	not type material	none	f	1	1	2831350	2831350	2831350	3	2819	NZ_CP022387.1	2831350	3	103	NZ_CP022387.1	2819	5206	0	100	CP022387.2195286.2198122	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga stomatis	2831350	2831350	t	f	f	2831350	2831350	Complete Genome	ASM230263v1	na	PRJNA224116	SAMN06289146	none	none	USA: Rhode Island	2017-09-14	GCA_002302635.1	none	full	none	Peritoneal fluid	none	1	1	Capnocytophaga stomatis	2464	representative genome	9	1	1	2831350	2831350	2831350	2017/09/14	0	1848904	3	H2177	Centers for Disease Control and Prevention	1848904	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga stomatis	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__Capnocytophaga stomatis	0	2831350	11	45	none	2831350	0	none	2472	1	2831350	3	1477	2699	0	99.458	95610	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Capnocytophaga;s__	1512	NZ_CP022387.1	1512	2793	0	100	CP022387.652387.653909	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga stomatis	0	19	45	0
+RS_GCF_900198195.1	0	99.66	0.45	548	f__Flavobacteriaceae (UID2845)	298	0	4208611	91.19656225006116	1	1398627	30.306905121456058	4614879	RS_GCF_900198195.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum jejuense	type strain of species	LPSN	f	1	1	4614879	4614879	4614879	3	2771	NZ_LT899436.1	4614879	3	104	NZ_LT899436.1	2771	5118	0	100	LT899436.1155387.1158168	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum jejuense	4614879	4614879	t	f	f	4614879	4614879	Complete Genome	Tjejuense_V1	na	PRJNA224116	SAMEA104150437	none	none	none	2017-08-15	GCA_900198195.1	none	full	none	none	none	1	1	Tenacibaculum jejuense	3964	representative genome	9	1	1	4614879	4614879	4614879	2017/08/15	0	584609	3	KCTC 22618	INRA	584609	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum jejuense	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum jejuense	0	4614879	11	66	assembly from type material	4614879	0	none	4038	1	4614879	3	none	none	none	none	none	none	1517	NZ_LT899436.1	1508	2785	0	100	LT899436.1153382.1154889	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum jejuense	0	19	65	0
+RS_GCF_002833385.1	0	99.43	0.76	496	s__algicola (UID2847)	263	0	2982770	89.95599868508751	57	1227040	37.00573917082101	3315810	RS_GCF_900168265.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salarius	type strain of species	LPSN	f	11	11	305450	305450	3692	1	2818	NZ_LKTR01000041.1	3692	1	101	NZ_LKTR01000041.1	2818	5204	0	100	MJBR01000035.2835.5665	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter salarius	58172	58172	t	f	f	89596	89596	Contig	ASM283338v1	na	PRJNA224116	SAMN04145447	57	89596	none	2017-12-11	GCA_002833385.1	none	full	none	marine solar saltern	none	0	1	Salegentibacter salarius	2996	na	3	none	none	none	none	none	2017/12/11	0	435906	1	KCTC 12974	Xiamen University	435906	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salarius	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__Salegentibacter salarius	0	3315810	11	40	assembly from type material	3315810	0	LKTR00000000.1	3025	57	1687	1	1485	2743	0	100	1130765	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Salegentibacter;s__	1526	NZ_LKTR01000040.1	1485	2743	0	100	EF486353.1.1485	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter salarius	0	19	40	0
+RS_GCF_900113805.1	0	100	0	324	o__Flavobacteriales (UID2815)	204	0	2726362	90.24554053906441	11	1006625	33.32037977536942	3021049	RS_GCF_900113805.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Halpernia;s__Halpernia frigidisoli	type strain of species	LPSN	t	2	2	1079781	1079781	5920	1	2757	NZ_FOQT01000008.1	5920	1	101	NZ_FOQT01000008.1	2757	5092	0	100	FOQT01000008.458.3230	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium frigidisoli	274640	274640	t	f	f	690532	690532	Contig	IMG-taxon 2684622856 annotated assembly	na	PRJNA224116	SAMN05443292	11	690532	none	2016-11-02	GCA_900113805.1	none	full	none	none	none	0	0	Halpernia frigidisoli	2812	representative genome	3	none	none	none	none	none	2016/11/02	0	1125876	1	DSM 26000	DOE - JOINT GENOME INSTITUTE	1125876	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;g__Halpernia;s__Halpernia frigidisoli	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Weeksellaceae;x__Chryseobacterium group;g__Halpernia;s__Halpernia frigidisoli	0	3021049	11	35	assembly from type material	3021049	0	FOQT00000000.1	2831	11	5920	1	1471	2558	0	98.097	807860	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__[Weeksellaceae];g__Chryseobacterium;s__	1513	NZ_FOQT01000008.1	1471	2558	0	98.097	FR682716.1.1469	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Weeksellaceae;Chryseobacterium;Chryseobacterium sp. R-36517	0	19	35	0
+RS_GCF_900105985.1	0	99.66	0.67	548	f__Flavobacteriaceae (UID2845)	298	0	3781457	90.61914078226428	5	1223388	29.31736878227962	4172912	RS_GCF_900105985.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__Tenacibaculum sp900105985	not type material	none	f	1	1	3385295	3385295	113949	5	2876	NZ_FNUB01000002.1	113949	5	104	NZ_FNUB01000002.1	2876	5312	0	100	FNUB01000002.785.3676	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. MAR_2010_89	834582	834582	t	f	f	3385295	3385295	Contig	IMG-taxon 2634166900 annotated assembly	na	PRJNA224116	SAMN04487765	5	3385295	none	2016-10-22	GCA_900105985.1	none	full	none	none	55.0255 N 8.4563 E	0	1	Tenacibaculum sp. MAR_2010_89	3588	na	17	none	none	none	none	none	2016/10/22	0	1250198	7	Mar_2010_89	DOE - JOINT GENOME INSTITUTE	1250198	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;x__unclassified Tenacibaculum;s__Tenacibaculum sp. MAR_2010_89	0	4172912	11	65	none	4172912	0	FNUB00000000.1	3690	5	611974	7	1475	2713	0	99.864	4432819	k__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Tenacibaculum;s__	1517	NZ_FNUB01000004.1	1517	2802	0	100	FNUB01000005.2183140.2184663	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Tenacibaculum;Tenacibaculum sp. MAR_2010_89	0	19	65	0
+RS_GCF_900101435.1	0	98.09	0.64	315	p__Bacteroidetes (UID2605)	209	0	5299219	88.22591493768334	38	2428498	40.46060315254751	6006420	RS_GCF_900101435.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter soli	type strain of species	LPSN	f	5	5	939316	939316	802763	2	278	NZ_FMZH01000002.1	802763	3	106	NZ_FMZH01000002.1	278	514	2.18e-144	100	CP021237.3728491.3731370	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Sphingobacteriaceae bacterium GW460-11-11-14-LB5	157950	200214	f	f	t	441402	441402	Scaffold	IMG-taxon 2622736512 annotated assembly	na	PRJNA224116	SAMN04488024	38	441402	none	2016-10-21	GCA_900101435.1	none	full	none	none	none	0	0	Pedobacter soli	4955	representative genome	6	30	5	441402	249341	96658	2016/10/21	8	390242	1	DSM 18609	DOE - JOINT GENOME INSTITUTE	390242	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter soli	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter soli	4290	6006420	11	49	assembly from type material	6002130	0	FMZH00000000.1	5013	30	1334	1	1271	2342	0	99.921	160886	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	1302	NZ_FMZH01000029.1	1273	2346	0	99.921	AM279215.1.1487	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Pedobacter;Pedobacter soli	4290	19	48	0
+RS_GCF_002288635.1	5	98.1	0.71	316	p__Bacteroidetes (UID2605)	210	0	3895401	90.90508339303592	15	1876888	43.81128138955175	4285130	RS_GCF_002288635.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__Mucilaginibacter sp002288635	not type material	none	f	3	1	1423136	4280019	5111	1	2872	NZ_NRSW01000002.1	5111	1	108	NZ_NRSW01000002.1	2878	4628	0	95.761	CP014773.473676.476559	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Mucilaginibacter;Mucilaginibacter sp. PAMC 26640	285602	2142565	f	f	t	498124	4280019	Scaffold	ASM228863v1	na	PRJNA224116	SAMN07551489	15	498124	USA: Hawaii	2017-09-08	GCA_002288635.1	none	full	none	air conditioner condensate pipe	none	0	0	Mucilaginibacter sp. MD40	3828	na	3	2	1	4280019	4280019	4280019	2017/09/08	13	2029590	1	MD40	University of Hawaii at Manoa	2029590	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Mucilaginibacter;x__unclassified Mucilaginibacter;s__Mucilaginibacter sp. MD40	1096	4285130	11	41	none	4284034	0	NRSW00000000.1	3901	2	5111	1	1140	2067	0	99.386	4302627	k__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__;s__	1171	NZ_NRSW01000002.1	1134	2061	0	99.471	X89912.1.1281	Bacteria;Bacteroidota;Bacteroidia;Sphingobacteriales;Sphingobacteriaceae;Mucilaginibacter;Sphingobacterium-like sp. PC1.9	1096	19	42	0
+RS_GCF_002843385.1	0	99.19	2.42	278	k__Bacteria (UID2569)	186	0	4619564	86.8345300210791	97	1932383	36.32324817357718	5319962	RS_GCF_002843385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinifilaceae;g__Labilibaculum;s__Labilibaculum manganireducens	type strain of species	LPSN	t	14	14	304964	304964	1826	2	1560	NZ_MVDE01000080.1	1826	5	106	NZ_MVDE01000080.1	1560	2843	0	99.551	CEGC01000229.2266.5140	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Marinifilum;microbial mat metagenome	54844	54844	f	f	t	138994	138994	Contig	ASM284338v1	na	PRJNA224116	SAMN06266628	97	138994	Denmark: Little Belt	2017-12-15	GCA_002843385.1	none	full	none	marine sediment	55.0048 N 10.1082 E	0	0	Labilibaculum manganireducens	4185	representative genome	9	none	none	none	none	none	2017/12/15	0	1940525	1	59.10-2M	Aarhus University	1940525	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinifilaceae;g__Labilibaculum;s__Labilibaculum manganireducens	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinifilaceae;g__Labilibaculum;s__Labilibaculum manganireducens	0	5319962	11	74	assembly from type material	5319962	0	MVDE00000000.1	4253	97	2675	1	1464	2571	0	98.361	75791	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	1517	NZ_MVDE01000070.1	1500	2760	0	99.867	CEGC01000229.230.1729	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Marinifilaceae;Marinifilum;microbial mat metagenome	0	19	73	0
+RS_GCF_002632415.1	0	99.14	1.62	839	g__Bacteroides (UID2691)	309	0	5284540	90.62685803374562	199	2434537	41.750926112187805	5831097	GB_GCA_019412865.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__Bacteroides sp019412865	not type material	none	f	26	26	214370	214370	5334	1	2871	NZ_NQMG01000105.1	44765	6	106	NZ_NQMG01000054.1	2871	5208	0	99.408	LT622246.643303.646180	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus V975	29301	29301	t	f	f	76284	76284	Contig	ASM263241v1	na	PRJNA224116	SAMN07482654	199	76284	South Korea	2017-10-23	GCA_002632415.1	none	full	none	feces	none	0	0	Bacteroides sp. KFT8	4630	na	8	none	none	none	none	none	2017/10/23	0	2025659	1	KFT8	Kyung Hee University	2025659	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;x__unclassified Bacteroides;s__Bacteroides sp. KFT8	0	5831097	11	68	none	5831097	0	NQMG00000000.1	4682	199	5334	1	1527	2697	0	98.625	4313256	k__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Bacteroides;s__ovatus	1522	NZ_NQMG01000105.1	1523	2745	0	99.212	CP012938.3352663.3354184	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidaceae;Bacteroides;Bacteroides ovatus	0	19	65	0
+GB_GCA_002723115.1	178	81.74	3.23	278	k__Bacteria (UID2569)	186	25	1620158	95.48854720681982	56	698936	41.19807182442238	1696704	GB_GCA_002723115.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UA16;g__UBA974;s__UBA974 sp002723115	not type material	none	f	17	17	75011	75011	24744	1	371	PBNL01000007.1	24744	1	91	PBNL01000007.1	371	636	0	97.574	FQ032823.9025.11793	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;uncultured;uncultured Flavobacteriia bacterium	30298	30298	f	f	t	34215	34215	Contig	ASM272311v1	na	PRJNA391943	SAMN07618876	56	34215	Pacific Ocean: South Pacific Ocean	2017-10-25	GCA_002723115.1	derived from metagenome	full	SP189	marine water sample	none	0	0	Euryarchaeota archaeon	1478	na	2	none	none	none	none	none	2017/10/25	0	2026739	0	SP189	Tara Oceans Consortium	2026739	d__Archaea;p__Euryarchaeota;c__;o__;f__;g__;s__	d__Archaea;p__Euryarchaeota;x__unclassified Euryarchaeota;s__Euryarchaeota archaeon	0	1696704	11	20	none	1696704	0	PBNL00000000.1	1495	56	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	13	20	0
+GB_GCA_002477675.1	303	91.9	2.86	316	p__Bacteroidetes (UID2605)	210	57.14	4409166	86.18092347914673	486	2032847	40.00769512353527	5116174	RS_GCF_900457465.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__Sphingobacterium multivorum	not type material	none	f	75	36	104554	186686	none	0	none	none	none	0	none	none	none	none	none	none	none	none	10455	24247	f	f	t	19899	43522	Scaffold	ASM247767v1	na	PRJNA348753	SAMN06451962	486	19899	USA:New York City	2017-10-06	GCA_002477675.1	derived from metagenome	full	UBA7609	metal	none	0	none	Sphingobacterium sp. UBA7609	0	na	none	211	36	43522	22211	11125	2017/10/06	275	1947521	none	UBA7609	University of Queensland	1947521	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Sphingobacterium;x__unclassified Sphingobacterium;s__Sphingobacterium sp. UBA7609	34731	5116174	none	none	none	5081443	0	DLJT00000000.1	4480	211	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	34731	18	48	0
+GB_GCA_002491965.1	2	60.34	0	104	k__Bacteria (UID203)	58	0	1660157	86.46871717038611	61	915818	47.95325618096841	1919951	RS_GCF_002933775.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002933775	not type material	none	f	13	7	159344	235789	none	0	none	none	none	0	none	none	none	none	none	none	none	none	31308	68569	f	f	t	55770	90304	Scaffold	ASM249196v1	na	PRJNA348753	SAMN06450446	61	55770	none	2017-10-10	GCA_002491965.1	derived from metagenome	full	UBA7140	rat gut	none	0	none	Prevotella sp. UBA7140	0	na	none	28	7	90304	59539	36470	2017/10/10	33	1947205	none	UBA7140	University of Queensland	1947205	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA7140	10135	1919951	none	none	none	1909816	0	DKWY00000000.1	1587	28	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	10135	10	22	0
+GB_GCA_002491105.1	7	66.83	0.98	406	o__Bacteroidales (UID2617)	265	33.33	1363717	86.79572041395639	205	833531	54.11611256252174	1571180	GB_GCA_910573745.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp002361215	not type material	none	f	34	24	84550	109475	none	0	none	none	none	0	none	none	none	none	none	none	none	none	7513	15254	f	f	t	13786	19972	Scaffold	ASM249110v1	na	PRJNA348753	SAMN06454143	205	13786	none	2017-10-10	GCA_002491105.1	derived from metagenome	full	UBA7183	rat gut	none	0	none	Porphyromonadaceae bacterium UBA7183	0	na	none	103	24	19972	12871	7807	2017/10/10	102	1952666	none	UBA7183	University of Queensland	1952666	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA7183	30909	1571180	none	none	none	1540271	0	DKVH00000000.1	1347	103	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	30909	8	10	0
+GB_GCA_002369075.1	2	75.66	0	278	k__Bacteria (UID2569)	186	0	1635943	90.94377466505009	93	916566	51.06493219967876	1798851	GB_GCA_002369075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002369075	not type material	none	f	15	12	105951	110130	none	0	none	none	none	0	none	none	none	none	none	none	none	none	19300	37476	f	f	t	39469	51154	Scaffold	ASM236907v1	na	PRJNA348753	SAMN06456100	93	39469	none	2017-09-26	GCA_002369075.1	derived from metagenome	full	UBA3808	high methane producing sheep	none	0	none	Bacteroidales bacterium UBA3808	0	na	none	48	12	51154	34509	21401	2017/09/26	45	1950521	none	UBA3808	University of Queensland	1950521	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA3808	3946	1798851	none	none	none	1794905	0	DFEG00000000.1	1535	48	64262	1	none	none	none	none	none	none	566	DFEG01000010.1	315	501	4.08e-140	95.556	AF544208.1.1525	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidales RF16 group;rumen bacterium YS3	3946	18	36	0
+GB_GCA_002343035.1	8	96.13	0.54	278	k__Bacteria (UID2569)	186	0	3290400	91.44651071142017	225	1509691	42.11073764661581	3598169	GB_GCA_002351955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UBA2798;g__UBA2798;s__UBA2798 sp002351955	not type material	none	f	34	23	133733	151555	none	0	none	none	none	0	none	none	none	none	none	none	none	none	15933	29984	f	f	t	30379	42883	Scaffold	ASM234303v1	na	PRJNA348753	SAMN06453868	225	30379	Australia: Brisbane; Thorneside Wastewater Treatment Plant	2017-09-22	GCA_002343035.1	derived from metagenome	full	UBA2423	activated sludge	none	0	none	Flavobacteriales bacterium UBA2423	0	na	none	120	23	42883	23840	14263	2017/09/22	105	1950977	none	UBA2423	University of Queensland	1950977	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA2423	13111	3598169	none	none	none	3585058	0	DDRF00000000.1	3103	120	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	13111	16	26	0
+GB_GCA_002399735.1	6	99.45	0.74	301	p__Bacteroidetes (UID2591)	202	50	4078374	84.69684197803608	167	1822602	37.95721830916251	4815261	GB_GCA_002399735.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Terrimonas;s__Terrimonas sp002399735	not type material	none	f	25	11	206363	320185	12084	1	1354	DHEF01000038.1	12084	1	106	DHEF01000038.1	473	869	0	99.789	AUDS01000006.509.3290	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Chitinophagaceae;Terrimonas;Terrimonas ferruginea DSM 30193	28752	85986	f	f	t	52472	165698	Scaffold	ASM239973v1	na	PRJNA348753	SAMN06453582	167	52472	China: Luzhou	2017-09-28	GCA_002399735.1	derived from metagenome	full	UBA4857	mud	none	0	none	Chitinophagaceae bacterium UBA4857	0	na	none	56	11	165698	83473	41417	2017/09/28	111	1951561	none	UBA4857	University of Queensland	1951561	d__Bacteria;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Chitinophagia;o__Chitinophagales;f__Chitinophagaceae;x__unclassified Chitinophagaceae;s__Chitinophagaceae bacterium UBA4857	13528	4815261	none	none	none	4801733	0	DHEF00000000.1	3884	56	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	13528	18	44	0
+GB_GCA_002437205.1	6	85.81	0.93	492	o__Bacteroidales (UID2657)	269	33.33	2682866	86.32429955738488	482	1385092	44.85596201389568	3107892	GB_GCA_002314055.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002314055	not type material	none	f	87	63	52921	52921	none	0	none	none	none	0	none	none	none	none	none	none	none	none	6406	10904	f	f	t	10132	14440	Scaffold	ASM243720v1	na	PRJNA348753	SAMN06453286	482	10132	Kenya	2017-10-04	GCA_002437205.1	derived from metagenome	full	UBA6435	feces	none	0	none	Prevotella sp. UBA6435	0	na	none	285	63	14440	8302	5140	2017/10/04	197	1947188	none	UBA6435	University of Queensland	1947188	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA6435	20020	3107892	none	none	none	3087872	0	DJOP00000000.1	2612	285	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	20020	17	40	0
+GB_GCA_002293375.1	137	97.31	0	278	k__Bacteria (UID2569)	186	0	2290570	92.4949160645898	86	1255298	50.733890559633736	2476428	GB_GCA_002293375.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinifilaceae;g__Odoribacter;s__Odoribacter sp002293375	not type material	none	f	12	11	252725	253308	none	0	none	none	none	0	none	none	none	none	none	none	none	none	28772	48557	f	f	t	68848	73795	Scaffold	ASM229337v1	na	PRJNA348753	SAMN06454460	86	68848	none	2017-09-12	GCA_002293375.1	derived from metagenome	full	UBA944	termite gut	none	0	none	Odoribacter sp. UBA944	0	na	none	51	11	73795	45243	23068	2017/09/12	35	1947012	none	UBA944	University of Queensland	1947012	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Odoribacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Odoribacteraceae;g__Odoribacter;x__unclassified Odoribacter;s__Odoribacter sp. UBA944	2012	2476428	none	none	none	2474416	0	DBDA00000000.1	2074	51	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2012	17	31	0
+GB_GCA_002479035.1	19	73.84	1.61	278	k__Bacteria (UID2569)	186	0	1662090	87.0889044683306	422	962914	50.805575077613376	1908498	GB_GCA_002479035.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002479035	not type material	none	f	74	48	32657	51800	none	0	none	none	none	0	none	none	none	none	none	none	none	none	4491	9448	f	f	t	8117	11501	Scaffold	ASM247903v1	na	PRJNA348753	SAMN06457885	422	8117	Kenya	2017-10-06	GCA_002479035.1	derived from metagenome	full	UBA7574	feces	none	0	none	Bacteroidales bacterium UBA7574	0	na	none	202	48	11501	7414	4569	2017/10/06	220	1950741	none	UBA7574	University of Queensland	1950741	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA7574	13187	1908498	none	none	none	1895311	0	DLLA00000000.1	1722	202	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	13187	16	27	0
+GB_GCA_002395805.1	2	59.52	0	278	k__Bacteria (UID2569)	186	0	1397304	93.29958274713836	49	741428	49.54052795352694	1497653	GB_GCA_002395805.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002395805	not type material	none	f	8	8	161238	161238	none	0	none	none	none	0	none	none	none	none	none	none	none	none	30543	37441	f	f	t	65527	65527	Scaffold	ASM239580v1	na	PRJNA348753	SAMN06452657	49	65527	none	2017-09-28	GCA_002395805.1	derived from metagenome	full	UBA4295	low methane producing sheep	none	0	none	Bacteroidales bacterium UBA4295	0	na	none	40	8	65527	42304	19501	2017/09/28	9	1950562	none	UBA4295	University of Queensland	1950562	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA4295	1042	1497653	none	none	none	1496611	0	DGVB00000000.1	1248	40	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1042	15	27	0
+GB_GCA_002309295.1	174	88.6	1.08	278	k__Bacteria (UID2569)	186	0	2288132	87.6332758975286	232	1261184	48.47985362065917	2611031	GB_GCA_002309295.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__P3;g__UBA1219;s__UBA1219 sp002309295	not type material	none	f	30	19	81030	136558	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11213	27484	f	f	t	26285	45968	Scaffold	ASM230929v1	na	PRJNA348753	SAMN06457307	232	26285	none	2017-09-18	GCA_002309295.1	derived from metagenome	full	UBA1219	Switch grass fiber attached community in cow rumen; 72 hour post incubation	none	0	none	Bacteroidales bacterium UBA1219	0	na	none	95	19	45968	24766	13385	2017/09/18	137	1950397	none	UBA1219	University of Queensland	1950397	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1219	9397	2611031	none	none	none	2601634	0	DBXF00000000.1	2280	95	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	9397	14	23	0
+GB_GCA_002309835.1	88	82.66	0.63	278	k__Bacteria (UID2569)	186	83.33	1603411	92.91909649924462	159	855590	49.82578823326615	1725599	GB_GCA_002309835.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002309835	not type material	none	f	14	8	111011	187493	none	0	none	none	none	0	none	none	none	none	none	none	none	none	10800	38346	f	f	t	32572	65405	Scaffold	ASM230983v1	na	PRJNA348753	SAMN06452489	159	32572	none	2017-09-18	GCA_002309835.1	derived from metagenome	full	UBA1187	Switch grass fiber attached community in cow rumen; 72 hour post incubation	none	0	none	Bacteroidales bacterium UBA1187	0	na	none	45	8	65405	35635	18589	2017/09/18	114	1950385	none	UBA1187	University of Queensland	1950385	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1187	8348	1725599	none	none	none	1717251	0	DBYL00000000.1	1477	45	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	8348	12	25	0
+GB_GCA_002369455.1	0	94.77	8.44	278	k__Bacteria (UID2569)	186	4.55	3738314	88.47035580886423	161	1728908	40.95485558795849	4225499	GB_GCA_002371265.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__UBA1723;s__UBA1723 sp002371265	not type material	none	f	19	14	298986	298986	none	0	none	none	none	0	none	none	none	none	none	none	none	none	26220	37065	f	f	t	70106	104008	Scaffold	ASM236945v1	na	PRJNA348753	SAMN06457855	161	70106	none	2017-09-26	GCA_002369455.1	derived from metagenome	full	UBA3784	high methane producing sheep	none	0	none	Bacteroidales bacterium UBA3784	0	na	none	114	14	104008	40704	16149	2017/09/26	47	1950517	none	UBA3784	University of Queensland	1950517	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA3784	4002	4225499	none	none	none	4221497	0	DFFE00000000.1	3490	114	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4002	18	52	0
+GB_GCA_002490315.1	4	67.23	1.79	487	o__Bacteroidales (UID2716)	270	0	1886229	87.93960969996932	180	1122275	52.52151473868993	2144914	GB_GCA_002490315.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002490315	not type material	none	f	33	21	69800	73167	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11871	23063	f	f	t	20463	33241	Scaffold	ASM249031v1	na	PRJNA348753	SAMN06457637	180	20463	Kenya	2017-10-06	GCA_002490315.1	derived from metagenome	full	UBA7594	feces	none	0	none	Prevotella sp. UBA7594	0	na	none	93	21	33241	19921	12926	2017/10/06	87	1947225	none	UBA7594	University of Queensland	1947225	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA7594	8119	2144914	none	none	none	2136795	0	DLKG00000000.1	1600	93	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	8119	14	27	0
+GB_GCA_002389765.1	140	85.71	0	303	p__Bacteroidetes (UID2591)	203	0	2608132	91.67368771434406	31	1203018	42.287170939200536	2845017	GB_GCA_002389765.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Flavipsychrobacter;s__Flavipsychrobacter sp002389765	not type material	none	f	6	6	470925	470925	none	0	none	none	none	0	none	none	none	none	none	none	none	none	91774	91774	f	f	t	120105	120105	Contig	ASM238976v1	na	PRJNA348753	SAMN06456925	31	120105	Denmark: Ejby Moelle; Odense	2017-09-28	GCA_002389765.1	derived from metagenome	full	UBA4414	wastewater	none	0	none	Bacteroidetes bacterium UBA4414	0	na	none	none	none	none	none	none	2017/09/28	0	1953159	none	UBA4414	University of Queensland	1953159	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium UBA4414	0	2845017	none	none	none	2845017	0	DGQM00000000.1	2725	31	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	17	25	0
+GB_GCA_002395775.1	4	89.83	1.19	492	o__Bacteroidales (UID2657)	269	0	2864452	91.22842106738246	181	1668006	53.24673003047311	3139868	GB_GCA_002395775.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__UBA4372;s__UBA4372 sp002395775	not type material	none	f	19	15	125820	246415	none	0	none	none	none	0	none	none	none	none	none	none	none	none	17307	31715	f	f	t	48298	66544	Scaffold	ASM239577v1	na	PRJNA348753	SAMN06453879	181	48298	none	2017-09-28	GCA_002395775.1	derived from metagenome	full	UBA4301	low methane producing sheep	none	0	none	Prevotellaceae bacterium UBA4301	0	na	none	99	15	66544	33993	12611	2017/09/28	82	1952491	none	UBA4301	University of Queensland	1952491	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;x__unclassified Prevotellaceae;s__Prevotellaceae bacterium UBA4301	7266	3139868	none	none	none	3132602	0	DGUV00000000.1	2596	99	48298	1	none	none	none	none	none	none	283	DGUV01000037.1	280	472	1.52e-131	97.143	EU461552.1.1384	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotellaceae UCG-003;uncultured bacterium	7266	17	38	0
+GB_GCA_002428215.1	18	67.2	1.22	278	k__Bacteria (UID2569)	186	20	1621024	90.48725633415371	154	815998	45.570619834549206	1791439	GB_GCA_002428215.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Prolixibacteraceae;g__UBA1413;s__UBA1413 sp002428215	not type material	none	f	27	25	116151	116151	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11627	12440	f	f	t	16101	17806	Scaffold	ASM242821v1	na	PRJNA348753	SAMN06452718	154	16101	Canada: Near Fort McMurray in northeastern Alberta	2017-10-04	GCA_002428215.1	derived from metagenome	full	UBA6162	waste water	none	0	none	Prolixibacteraceae bacterium UBA6162	0	na	none	144	25	17806	9127	5307	2017/10/04	10	1952951	none	UBA6162	University of Queensland	1952951	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;x__unclassified Prolixibacteraceae;s__Prolixibacteraceae bacterium UBA6162	798	1791439	none	none	none	1790641	0	DIUI00000000.1	1614	144	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	798	11	19	0
+GB_GCA_002425005.1	4	87.81	0.54	278	k__Bacteria (UID2569)	186	0	3016190	89.46280023467675	499	1397052	42.004979073459374	3371446	GB_GCA_002351955.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UBA2798;g__UBA2798;s__UBA2798 sp002351955	not type material	none	f	78	70	41833	68439	none	0	none	none	none	0	none	none	none	none	none	none	none	none	6665	10981	f	f	t	12696	14118	Scaffold	ASM242500v1	na	PRJNA348753	SAMN06455922	499	12696	Australia: Brisbane; Thorneside Wastewater Treatment Plant	2017-10-04	GCA_002425005.1	derived from metagenome	full	UBA5594	activated sludge	none	0	none	Flavobacteriales bacterium UBA5594	0	na	none	307	70	14118	8827	5116	2017/10/04	192	1951038	none	UBA5594	University of Queensland	1951038	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA5594	45522	3371446	none	none	none	3325924	0	DILK00000000.1	3052	307	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	45522	14	25	0
+GB_GCA_002281875.1	8	98.4	0.74	303	p__Bacteroidetes (UID2591)	203	0	2892436	94.24099054115564	98	1110936	36.20221748912242	3069191	GB_GCA_002281875.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Chitinophagaceae;g__Sediminibacterium;s__Sediminibacterium sp002281875	not type material	none	f	15	13	187143	256168	none	0	none	none	none	0	none	none	none	none	none	none	none	none	31313	34485	f	f	t	73617	85623	Scaffold	ASM228187v1	na	PRJNA379596	SAMN06622267	98	73617	Canada: Ontario	2017-08-16	GCA_002281875.1	derived from metagenome	full	24-36-13	Mine wastewater	46.65 N 81.32 W	0	0	Sphingobacteriia bacterium 24-36-13	2801	na	0	89	13	85623	42162	18798	2017/08/16	9	1970572	0	24-36-13	None	1970572	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;x__unclassified Sphingobacteriia;s__Sphingobacteriia bacterium 24-36-13	487	3069191	11	31	none	3068704	0	NCHN00000000.1	2819	89	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	487	18	31	0
+GB_GCA_002406155.1	2	87.14	1.92	316	p__Bacteroidetes (UID2605)	210	60	2522846	90.05237134539244	246	1346288	48.21717009283938	2801532	GB_GCA_002297815.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Cryptobacteroides;s__Cryptobacteroides sp002297815	not type material	none	f	36	31	97004	117296	25530	1	1895	DHNE01000066.1	none	0	none	none	584	771	0	90.582	CDYI01049204.2910.5679	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Rikenellaceae RC9 gut group;gut metagenome	11350	18431	f	f	t	24727	29203	Scaffold	ASM240615v1	na	PRJNA348753	SAMN06455119	246	24727	Kenya	2017-09-28	GCA_002406155.1	derived from metagenome	full	UBA4624	feces	none	0	none	Bacteroidales bacterium UBA4624	0	na	none	152	31	29203	16414	9074	2017/09/28	94	1950580	none	UBA4624	University of Queensland	1950580	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA4624	9396	2801532	none	none	none	2792136	0	DHNE00000000.1	2412	152	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	9396	18	37	0
+GB_GCA_002353445.1	46	96.88	0.74	487	o__Bacteroidales (UID2716)	270	50	2903362	92.06112248563845	71	1478202	46.89036893046201	3153733	GB_GCA_002353225.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002353225	not type material	none	f	16	13	157300	226275	none	0	none	none	none	0	none	none	none	none	none	none	none	none	44401	67100	f	f	t	75058	87883	Scaffold	ASM235344v1	na	PRJNA348753	SAMN06454045	71	75058	USA: Wyoming	2017-09-25	GCA_002353445.1	derived from metagenome	full	UBA2743	Rumen fluid	none	0	none	Prevotella sp. UBA2743	0	na	none	47	13	87883	64449	40685	2017/09/25	24	1947105	none	UBA2743	University of Queensland	1947105	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA2743	1223	3153733	none	none	none	3152510	0	DEJR00000000.1	2678	47	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1223	16	39	0
+GB_GCA_002436705.1	12	87.87	2.23	492	o__Bacteroidales (UID2657)	269	20	2012415	90.31548250027151	252	1057590	47.649599124132976	2228206	GB_GCA_002439755.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__UBA6382;s__UBA6382 sp002439755	not type material	none	f	38	24	65744	92203	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8807	17009	f	f	t	16685	26358	Scaffold	ASM243670v1	na	PRJNA348753	SAMN06451846	252	16685	Kenya	2017-10-04	GCA_002436705.1	derived from metagenome	full	UBA6470	feces	none	0	none	Prevotellaceae bacterium UBA6470	0	na	none	131	24	26358	14105	7263	2017/10/04	121	1952513	none	UBA6470	University of Queensland	1952513	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;x__unclassified Prevotellaceae;s__Prevotellaceae bacterium UBA6470	8679	2228206	none	none	none	2219527	0	DJNG00000000.1	1920	131	18783	1	none	none	none	none	none	none	408	DJNG01000088.1	406	671	0	96.552	EU462371.1.1402	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotellaceae UCG-004;uncultured bacterium	8679	18	30	0
+GB_GCA_002353295.1	32	97.41	0.19	487	o__Bacteroidales (UID2716)	270	0	2707173	93.83963287373223	52	1324444	45.929381933263116	2884893	GB_GCA_002353295.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002353295	not type material	none	f	7	4	381807	579106	none	0	none	none	none	0	none	none	none	none	none	none	none	none	55455	103031	f	f	t	117068	224828	Scaffold	ASM235329v1	na	PRJNA348753	SAMN06451416	52	117068	USA: Wyoming	2017-09-25	GCA_002353295.1	derived from metagenome	full	UBA2754	Rumen fluid	none	0	none	Prevotella sp. UBA2754	0	na	none	28	4	224828	107178	57612	2017/09/25	24	1947110	none	UBA2754	University of Queensland	1947110	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA2754	1208	2884893	none	none	none	2883685	0	DEJG00000000.1	2469	28	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1208	18	41	0
+GB_GCA_002359825.1	1948	90.09	0.73	273	k__Bacteria (UID2570)	183	50	2329058	80.94542176241147	764	1053653	37.13348562841457	2877319	GB_GCA_002359825.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__UBA2632;s__UBA2632 sp002359825	not type material	none	f	112	64	37159	52589	none	0	none	none	2852	1	111	DENY01000100.1	none	none	none	none	none	none	3716	9687	f	f	t	7413	12711	Scaffold	ASM235982v1	na	PRJNA348753	SAMN06451732	764	7413	USA:New York City	2017-09-26	GCA_002359825.1	derived from metagenome	full	UBA2632	metal/plastic	none	0	none	Bacteroidales bacterium UBA2632	0	na	none	297	64	12711	7366	4425	2017/09/26	467	1950447	none	UBA2632	University of Queensland	1950447	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA2632	37897	2877319	none	none	none	2839422	0	DENY00000000.1	2915	297	20454	1	none	none	none	none	none	none	281	DENY01000055.1	276	505	1.49e-141	99.638	FJ672608.1.1402	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Proteiniphilum;uncultured bacterium	37897	17	26	0
+GB_GCA_002410055.1	12	87.42	1.09	273	k__Bacteria (UID2570)	183	50	2225972	85.59995323861075	301	956270	37.337334640551965	2600436	GB_GCA_002398875.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Fermentimonas;s__Fermentimonas sp002398875	not type material	none	f	35	17	122806	167936	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8508	26535	f	f	t	22123	50443	Scaffold	ASM241005v1	na	PRJNA348753	SAMN06451883	301	22123	China: Chengdu	2017-10-03	GCA_002410055.1	derived from metagenome	full	UBA5351	mud	none	0	none	Bacteroidales bacterium UBA5351	0	na	none	98	17	50443	26575	12429	2017/10/03	203	1950625	none	UBA5351	University of Queensland	1950625	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA5351	39261	2600436	none	none	none	2561175	0	DHPZ00000000.1	2166	98	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	39261	15	27	0
+GB_GCA_002393005.1	10	76.2	0.48	316	p__Bacteroidetes (UID2605)	210	100	1699774	91.94637407243525	309	1076143	58.574116619938785	1848658	GB_GCA_002361615.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Bact-11;s__Bact-11 sp002361615	not type material	none	f	69	51	28282	40517	12951	1	392	DGID01000025.1	none	0	none	none	285	243	1.65e-62	82.456	CP022022.1151486.1154330	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Capnocytophaga;Capnocytophaga sp. ChDC OS43	5945	9384	f	f	t	8754	11637	Scaffold	ASM239300v1	na	PRJNA348753	SAMN06451309	309	8754	none	2017-09-28	GCA_002393005.1	derived from metagenome	full	UBA3831	high methane producing sheep	none	0	none	Bacteroidales bacterium UBA3831	0	na	none	197	51	11637	8124	4440	2017/09/28	112	1950526	none	UBA3831	University of Queensland	1950526	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA3831	11415	1848658	none	none	none	1837243	0	DGID00000000.1	1716	197	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	11415	16	29	0
+GB_GCA_002491725.1	4	84.09	2.13	406	o__Bacteroidales (UID2617)	265	37.5	2030167	87.54312114281377	218	1259103	55.11921016561989	2319048	GB_GCA_002361235.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp002361235	not type material	none	f	36	25	59911	78652	none	0	none	none	none	0	none	none	none	none	none	none	none	none	10478	22735	f	f	t	20060	34238	Scaffold	ASM249172v1	na	PRJNA348753	SAMN06455433	218	20060	none	2017-10-10	GCA_002491725.1	derived from metagenome	full	UBA7151	rat gut	none	0	none	Porphyromonadaceae bacterium UBA7151	0	na	none	102	25	34238	23115	10675	2017/10/10	116	1952653	none	UBA7151	University of Queensland	1952653	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA7151	34717	2319048	none	none	none	2284331	0	DKWN00000000.1	1854	102	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	34717	9	13	0
+GB_GCA_002415135.1	4	100	1.47	323	o__Flavobacteriales (UID2815)	204	0	2904207	88.52616273753132	37	1170011	35.675167542122985	3280620	GB_GCA_002415135.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella sp002415135	not type material	none	f	7	5	370071	485594	none	0	none	none	none	0	none	none	none	none	none	none	none	none	88638	117165	f	f	t	207797	263631	Scaffold	ASM241513v1	na	PRJNA348753	SAMN06450489	37	207797	USA:New York City	2017-10-03	GCA_002415135.1	derived from metagenome	full	UBA5040	metal	none	0	none	Flavobacteriales bacterium UBA5040	0	na	none	28	5	263631	185966	80461	2017/10/03	9	1951029	none	UBA5040	University of Queensland	1951029	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA5040	993	3280620	none	none	none	3279627	0	DIBY00000000.1	3030	28	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	993	19	35	0
+GB_GCA_002305015.1	61	91.8	0.55	273	k__Bacteria (UID2570)	183	0	1996042	90.80925907391062	67	901182	41.021198806119074	2198060	GB_GCA_002305015.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__UBA4179;s__UBA4179 sp002305015	not type material	none	f	9	9	250812	267061	none	0	none	none	none	0	none	none	none	none	none	none	none	none	32790	45792	f	f	t	72247	77792	Scaffold	ASM230501v1	na	PRJNA348753	SAMN06452093	67	72247	Malaysia	2017-09-15	GCA_002305015.1	derived from metagenome	full	UBA1410	closed biodigester	none	0	none	Bacteroidales bacterium UBA1410	0	na	none	48	9	77792	51447	19882	2017/09/15	19	1950409	none	UBA1410	University of Queensland	1950409	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1410	1130	2198060	none	none	none	2196930	0	DBPW00000000.1	1834	48	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1130	16	33	0
+GB_GCA_002361155.1	0	77.14	1.13	406	o__Bacteroidales (UID2617)	265	0	1483471	88.26464799358365	160	879858	53.2158766160127	1680708	GB_GCA_002361155.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp002361155	not type material	none	f	23	16	76255	100277	none	0	none	none	none	0	none	none	none	none	none	none	none	none	10333	26261	f	f	t	25068	36422	Scaffold	ASM236115v1	na	PRJNA348753	SAMN06453123	160	25068	none	2017-09-26	GCA_002361155.1	derived from metagenome	full	UBA3327	rat gut	none	0	none	Porphyromonadaceae bacterium UBA3327	0	na	none	64	16	36422	24321	12943	2017/09/26	96	1952573	none	UBA3327	University of Queensland	1952573	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA3327	27333	1680708	none	none	none	1653375	0	DERZ00000000.1	1376	64	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	27333	5	5	0
+GB_GCA_002306655.1	0	58.51	1.16	278	k__Bacteria (UID2569)	186	7.69	793546	88.43216136401627	183	317846	36.26077512446438	897350	GB_GCA_002715345.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UBA7312;g__UBA7312;s__UBA7312 sp002715345	not type material	none	f	38	30	25669	34153	4862	1	964	DBSS01000080.1	none	0	none	none	195	124	1.6e-26	78.974	FUFK010036627.1.2465	Bacteria;Proteobacteria;Alphaproteobacteria;Rickettsiales;Mitochondria;metagenome	4789	7355	f	f	t	7273	9733	Scaffold	ASM230665v1	na	PRJNA348753	SAMN06453177	183	7273	none	2017-09-15	GCA_002306655.1	derived from metagenome	full	UBA1336	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriales bacterium UBA1336	0	na	none	122	30	9733	5402	3465	2017/09/15	61	1950950	none	UBA1336	University of Queensland	1950950	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA1336	20794	897350	none	none	none	876556	0	DBSS00000000.1	940	122	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	20794	13	14	0
+GB_GCA_002479685.1	883	76.4	3.4	406	o__Bacteroidales (UID2617)	265	10	1868164	88.9727737684806	326	983982	47.123791772246165	2099703	GB_GCA_001701105.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp001701105	not type material	none	f	48	30	52120	73634	none	0	none	none	none	0	none	none	none	none	none	none	none	none	6407	14381	f	f	t	13108	21695	Scaffold	ASM247968v1	na	PRJNA348753	SAMN06454501	326	13108	none	2017-10-06	GCA_002479685.1	derived from metagenome	full	UBA7479	guineaPig6	none	0	none	Porphyromonadaceae bacterium UBA7479	0	na	none	146	30	21695	11605	6393	2017/10/06	180	1952690	none	UBA7479	University of Queensland	1952690	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA7479	10741	2099703	none	none	none	2088962	0	DLOR00000000.1	2003	146	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	10741	12	17	0
+GB_GCA_002477085.1	0	100	0.41	323	o__Flavobacteriales (UID2815)	204	50	2217655	90.30628284190603	48	1106134	45.06191800376258	2455704	RS_GCF_022968825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Kaistella;s__Kaistella salipaludis	not type material	none	f	10	10	254803	254803	none	0	none	none	none	0	none	none	none	none	none	none	none	none	51139	57109	f	f	t	86170	86988	Scaffold	ASM247708v1	na	PRJNA348753	SAMN06457007	48	86170	USA:New York City	2017-10-06	GCA_002477085.1	derived from metagenome	full	UBA7496	metal	none	0	none	Flavobacteriales bacterium UBA7496	0	na	none	43	10	86988	50911	26850	2017/10/06	5	1951077	none	UBA7496	University of Queensland	1951077	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA7496	1006	2455704	none	none	none	2454698	0	DLOA00000000.1	2368	43	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1006	18	35	0
+GB_GCA_002428305.1	22	97.38	0.18	511	f__Flavobacteriaceae (UID2817)	283	0	2735156	90.89862539871812	55	1025874	34.09891362010075	3009018	GB_GCA_002428305.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp002428305	not type material	none	f	11	11	270649	270913	none	0	none	none	none	0	none	none	none	none	none	none	none	none	54700	60180	f	f	t	100283	100283	Scaffold	ASM242830v1	na	PRJNA348753	SAMN06453825	55	100283	Canada: Near Fort McMurray in northeastern Alberta	2017-10-04	GCA_002428305.1	derived from metagenome	full	UBA6135	waste water	none	0	none	Flavobacterium sp. UBA6135	0	na	none	50	11	100283	55529	34936	2017/10/04	5	1946553	none	UBA6135	University of Queensland	1946553	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;x__unclassified Flavobacterium;s__Flavobacterium sp. UBA6135	472	3009018	none	none	none	3008546	0	DIVJ00000000.1	2726	50	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	472	16	31	0
+GB_GCA_002342665.1	8	62.33	0.74	487	o__Bacteroidales (UID2716)	270	0	1839606	91.42571163323281	88	1053690	52.46665843418128	2012132	GB_GCA_002342665.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002342665	not type material	none	f	11	9	155490	199850	none	0	none	none	none	0	none	none	none	none	none	none	none	none	22821	47907	f	f	t	62110	72092	Scaffold	ASM234266v1	na	PRJNA348753	SAMN06456362	88	62110	USA: Wyoming	2017-09-22	GCA_002342665.1	derived from metagenome	full	UBA2444	Rumen fluid	none	0	none	Prevotella sp. UBA2444	0	na	none	42	9	72092	50869	34830	2017/09/22	46	1947087	none	UBA2444	University of Queensland	1947087	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA2444	3820	2012132	none	none	none	2008312	0	DDQK00000000.1	1745	42	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	3820	10	28	0
+GB_GCA_002690095.1	615	71.69	1.03	496	s__algicola (UID2847)	263	0	3261868	85.2369261724798	322	1386047	36.22506344398243	3826825	RS_GCF_000023465.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zunongwangia;s__Zunongwangia profunda	not type material	none	f	102	102	44016	44016	none	0	none	none	10583	1	99	NZDL01000043.1	none	none	none	none	none	none	11884	11884	f	f	t	12948	12948	Contig	ASM269009v1	na	PRJNA391943	SAMN07618941	322	12948	Indian Ocean: Northwest Arabian Sea Upwelling Province	2017-10-24	GCA_002690095.1	derived from metagenome	full	ARS104	marine water sample	none	0	1	Flavobacteriaceae bacterium	3449	na	2	none	none	none	none	none	2017/10/24	0	1871037	1	ARS104	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	3826825	11	24	none	3826825	0	NZDL00000000.1	3515	322	8398	1	none	none	none	none	none	none	335	NZDL01000277.1	337	514	3e-144	94.362	LT670848.3304473.3306002	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Salegentibacter;Salegentibacter salegens	0	13	23	0
+GB_GCA_002710605.1	321	84.27	0.98	496	s__algicola (UID2847)	263	50	2602218	92.02878894671937	111	1132346	40.05055013772896	2827613	GB_GCA_002375495.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Marinirhabdus;s__Marinirhabdus sp002375495	not type material	none	f	33	33	139366	139366	none	0	none	none	56775	1	81	PAKO01000071.1	none	none	none	none	none	none	25473	25473	f	f	t	27359	27359	Contig	ASM271060v1	na	PRJNA391943	SAMN07619019	111	27359	Pacific Ocean: South Pacific Ocean	2017-10-25	GCA_002710605.1	derived from metagenome	full	SAT67	marine water sample	none	0	0	Flavobacteriaceae bacterium	2635	na	1	none	none	none	none	none	2017/10/25	0	1871037	0	SAT67	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	2827613	11	30	none	2827613	0	PAKO00000000.1	2664	111	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	17	31	0
+GB_GCA_002781605.1	22	95.97	1.12	454	o__Cytophagales (UID2936)	336	50	3716098	91.32104348988565	138	1639076	40.295493137177054	4069268	GB_GCA_002786855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Roseivirga;s__Roseivirga sp002786855	not type material	none	f	20	17	235844	235844	none	0	none	none	none	0	none	none	none	none	none	none	none	none	29475	43755	f	f	t	57515	77379	Scaffold	ASM278160v1	na	PRJNA362739	SAMN06659589	138	57515	USA: Crystal Geyser near Green River; Utah	2017-11-16	GCA_002781605.1	derived from metagenome	full	CG17_big_fil_post_rev_8_21_14_2_50_40_13	groundwater	38.56 N 110.8 W	0	0	Cytophagales bacterium CG17_big_fil_post_rev_8_21_14_2_50_40_13	3664	na	0	93	17	77379	44986	21392	2017/11/16	45	1973955	0	CG17_big_fil_post_rev_8_21_14_2_50_40_13	None	1973955	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;x__unclassified Cytophagales;s__Cytophagales bacterium CG17_big_fil_post_rev_8_21_14_2_50_40_13	1605	4069268	11	33	none	4067663	0	PFFM00000000.1	3746	93	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1605	19	34	0
+GB_GCA_002702405.1	9507	77.43	3.68	208	k__Bacteria (UID2566)	136	28.57	1370991	95.0081252923546	79	446567	31.15182369527275	1443025	GB_GCA_002702405.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__GCA-002728855;s__GCA-002728855 sp002702405	not type material	none	f	25	25	49994	49994	16916	1	345	NZZH01000058.1	16916	1	104	NZZH01000058.1	339	549	7.57e-155	95.87	EU795293.28525.31347	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;uncultured;uncultured bacterium HF0010_31F02	18266	18266	f	f	t	21147	21147	Contig	ASM270240v1	na	PRJNA391943	SAMN07618988	79	21147	Atlantic Ocean: North Atlantic Ocean	2017-10-24	GCA_002702405.1	derived from metagenome	full	NAT252	marine water sample	none	0	1	Flavobacteriaceae bacterium	1363	na	2	none	none	none	none	none	2017/10/24	0	1871037	0	NAT252	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1443025	11	21	none	1443025	0	NZZH00000000.1	1377	79	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	12	21	0
+GB_GCA_002862645.1	0	80.08	2.59	571	s__algicola (UID2846)	303	42.86	1329118	94.32409550229686	35	565804	40.15365869063663	1409097	GB_GCA_002862645.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA7446;s__UBA7446 sp002862645	not type material	none	f	7	7	194249	194249	none	0	none	none	105673	1	83	PKDQ01000008.1	none	none	none	none	none	none	40259	40259	f	f	t	79146	79146	Contig	ASM286264v1	na	PRJNA421797	SAMN08158028	35	79146	Atlantic Ocean	2018-01-04	GCA_002862645.1	derived from metagenome	full	Bacter12	marine water	32 N 32 W	0	none	Flavobacteriaceae bacterium	0	na	none	none	none	none	none	none	2018/01/04	0	1871037	none	Bacter12	Max planck institute for marine microbiology	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1409097	none	none	none	1409097	0	PKDQ00000000.1	1311	35	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	14	26	0
+GB_GCA_002373315.1	9	90.24	6.18	278	k__Bacteria (UID2569)	186	17.65	2068232	93.37019567619888	159	1050844	47.491502459213834	2215088	GB_GCA_002449665.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002449665	not type material	none	f	28	25	88405	94302	none	0	none	none	24756	1	108	DFKG01000021.1	none	none	none	none	none	none	13916	18008	f	f	t	24530	28344	Scaffold	ASM237331v1	na	PRJNA348753	SAMN06453978	159	24530	none	2017-09-26	GCA_002373315.1	derived from metagenome	full	UBA3651	high methane producing sheep	none	0	none	Bacteroidales bacterium UBA3651	0	na	none	123	25	28344	16510	7851	2017/09/26	36	1950492	none	UBA3651	University of Queensland	1950492	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA3651	2380	2215088	none	none	none	2212708	0	DFKG00000000.1	1879	123	7470	1	none	none	none	none	none	none	635	DFKG01000089.1	312	486	1.29e-135	94.872	AB614857.1.1482	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidales RF16 group;uncultured rumen bacterium	2380	16	31	0
+GB_GCA_002411085.1	29	91.82	1.09	275	k__Bacteria (UID2569)	184	0	3288925	82.55822885090582	619	1649025	42.20479740212807	3983764	GB_GCA_002411085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Marinilabiliaceae;g__Marinilabilia;s__Marinilabilia sp002411085	not type material	none	f	80	46	75177	109321	none	0	none	none	none	0	none	none	none	none	none	none	none	none	6312	13458	f	f	t	13298	21707	Scaffold	ASM241108v1	na	PRJNA348753	SAMN06454384	619	13298	USA: Municipal Pensacola Beach; FL	2017-10-03	GCA_002411085.1	derived from metagenome	full	UBA5340	beach sand	none	0	none	Marinilabilia sp. UBA5340	0	na	none	296	46	21707	10499	5453	2017/10/03	323	1946809	none	UBA5340	University of Queensland	1946809	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Marinilabilia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Marinilabiliaceae;g__Marinilabilia;x__unclassified Marinilabilia;s__Marinilabilia sp. UBA5340	76537	3983764	none	none	none	3907227	0	DHQK00000000.1	3210	296	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	76537	18	41	0
+GB_GCA_002702885.1	13978	65.95	0.91	571	s__algicola (UID2846)	303	40	1094241	96.23457419863226	47	339656	30.243313465315858	1137056	GB_GCA_002691265.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__MED-G13;s__MED-G13 sp002691265	not type material	none	f	13	13	71271	71271	none	0	none	none	none	0	none	none	none	none	none	none	none	none	24192	24192	f	f	t	30636	30636	Contig	ASM270288v1	na	PRJNA391943	SAMN07618983	47	30636	Atlantic Ocean: North Atlantic Ocean	2017-10-24	GCA_002702885.1	derived from metagenome	full	NAT162	marine water sample	none	0	1	Flavobacteriaceae bacterium	1061	na	0	none	none	none	none	none	2017/10/24	0	1871037	0	NAT162	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1137056	11	15	none	1137056	0	PACW00000000.1	1080	47	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	9	15	0
+GB_GCA_002728635.1	7951	93.67	7.72	208	k__Bacteria (UID2566)	136	30.77	1464502	96.82017717836837	65	466838	31.02637226356446	1512600	GB_GCA_902614065.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__MED-G14;s__MED-G14 sp002697465	not type material	none	f	14	14	104936	104936	none	0	none	none	none	0	none	none	none	none	none	none	none	none	23270	23270	f	f	t	31708	31708	Contig	ASM272863v1	na	PRJNA391943	SAMN07619002	65	31708	Saudi Arabia: Red Sea	2017-10-26	GCA_002728635.1	derived from metagenome	full	RS428	marine water sample	none	0	1	Flavobacteriaceae bacterium	1433	na	2	none	none	none	none	none	2017/10/26	0	1871037	0	RS428	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1512600	11	35	none	1512600	0	PBVJ00000000.1	1456	65	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	35	0
+GB_GCA_002396965.1	4	98.09	6.28	273	k__Bacteria (UID2570)	183	7.14	2715824	85.79287260164793	240	1310112	41.80755298973441	3165559	RS_GCF_022267555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__Proteiniphilum sp002410345	not type material	none	f	36	18	108767	212890	none	0	none	none	none	0	none	none	none	none	none	none	none	none	13056	31034	f	f	t	28695	55098	Scaffold	ASM239696v1	na	PRJNA348753	SAMN06450878	240	28695	China: Luzhou	2017-09-28	GCA_002396965.1	derived from metagenome	full	UBA4988	mud	none	0	none	Proteiniphilum sp. UBA4988	0	na	none	102	18	55098	29855	14141	2017/09/28	138	1947264	none	UBA4988	University of Queensland	1947264	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Proteiniphilum;x__unclassified Proteiniphilum;s__Proteiniphilum sp. UBA4988	31882	3165559	none	none	none	3133677	0	DGZE00000000.1	2585	102	8970	1	none	none	none	none	none	none	872	DGZE01000019.1	872	1605	0	99.885	AP018040.2693570.2695105	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Petrimonas;Petrimonas sp. IBARAKI	31882	18	39	0
+GB_GCA_002491405.1	10	92.26	0.19	406	o__Bacteroidales (UID2617)	265	100	2110230	90.27362761609912	118	1173881	50.58907337624503	2337593	RS_GCF_004803695.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__Muribaculum;s__Muribaculum gordoncarteri	not type material	none	f	17	13	146359	157285	none	0	none	none	none	0	none	none	none	none	none	none	none	none	19664	40303	f	f	t	44046	61888	Scaffold	ASM249140v1	na	PRJNA348753	SAMN06457739	118	44046	none	2017-10-10	GCA_002491405.1	derived from metagenome	full	UBA7167	rat gut	none	0	none	Porphyromonadaceae bacterium UBA7167	0	na	none	58	13	61888	34017	22696	2017/10/10	60	1952658	none	UBA7167	University of Queensland	1952658	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA7167	17159	2337593	none	none	none	2320434	0	DKVX00000000.1	1962	58	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	17159	13	21	0
+GB_GCA_002299635.1	95	70.39	1.39	567	g__Prevotella (UID2724)	296	26.09	1457508	84.52281262540623	506	869559	51.04210996524441	1724396	GB_GCA_022769825.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp002299635	not type material	none	f	77	53	22427	29968	none	0	none	none	none	0	none	none	none	none	none	none	none	none	3367	8494	f	f	t	7080	10929	Scaffold	ASM229963v1	na	PRJNA348753	SAMN06457573	506	7080	none	2017-09-12	GCA_002299635.1	derived from metagenome	full	UBA641	gut of vertebrate mammal	none	0	none	Prevotella sp. UBA641	0	na	none	203	53	10929	6388	4275	2017/09/12	303	1947185	none	UBA641	University of Queensland	1947185	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA641	20690	1724396	none	none	none	1703706	0	DBOR00000000.1	1611	203	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	20690	14	18	0
+GB_GCA_002362555.1	0	88.58	1.53	406	o__Bacteroidales (UID2617)	265	0	1842723	90.78772530983566	150	1057337	52.82664892017175	2029705	GB_GCA_011959405.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__UBA3263;s__UBA3263 sp001689615	not type material	none	f	26	15	93930	118862	none	0	none	none	none	0	none	none	none	none	none	none	none	none	13343	35608	f	f	t	21800	47032	Scaffold	ASM236255v1	na	PRJNA348753	SAMN06455035	150	21800	none	2017-09-26	GCA_002362555.1	derived from metagenome	full	UBA3263	rat gut	none	0	none	Porphyromonadaceae bacterium UBA3263	0	na	none	57	15	47032	30780	19185	2017/09/26	93	1952553	none	UBA3263	University of Queensland	1952553	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA3263	28183	2029705	none	none	none	2001522	0	DEUL00000000.1	1727	57	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	28183	8	14	0
+GB_GCA_002293045.1	0	90.72	0.72	277	k__Bacteria (UID2569)	185	50	2246654	94.21528845976425	215	997560	41.92274072081764	2384596	GB_GCA_002293045.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Crocinitomicaceae;g__UBA952;s__UBA952 sp002293045	not type material	none	f	31	26	72409	83005	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11067	14540	f	f	t	23878	29336	Scaffold	ASM229304v1	na	PRJNA348753	SAMN06451659	215	23878	Spain: Alicante	2017-09-12	GCA_002293045.1	derived from metagenome	full	UBA958	0.22 micron fraction from Freshwater Reservoir Amadorio	none	0	none	Flavobacteriales bacterium UBA958	0	na	none	164	26	29336	11803	5428	2017/09/12	51	1951091	none	UBA958	University of Queensland	1951091	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA958	5076	2384596	none	none	none	2379520	0	DBCM00000000.1	2213	164	27013	1	none	none	none	none	none	none	429	DBCM01000069.1	426	697	0	96.244	EU703385.1.1490	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Crocinitomicaceae;Fluviicola;uncultured Fluviicola sp.	5076	17	28	0
+GB_GCA_002862715.1	0	89.91	1.13	208	k__Bacteria (UID2566)	136	33.33	1321920	96.48318667779964	112	418617	30.553665999077445	1370104	GB_GCA_002862715.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__GCA-2862715;s__GCA-2862715 sp002862715	not type material	none	f	24	24	59027	59027	none	0	none	none	9555	1	102	PKDV01000046.1	none	none	none	none	none	none	12233	12233	f	f	t	19317	19317	Contig	ASM286271v1	na	PRJNA421797	SAMN08158023	112	19317	Atlantic Ocean	2018-01-04	GCA_002862715.1	derived from metagenome	full	Bacter4	marine water	27 N 32 W	0	none	Flavobacteriaceae bacterium	0	na	none	none	none	none	none	none	2018/01/04	0	1871037	none	Bacter4	Max planck institute for marine microbiology	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1370104	none	none	none	1370104	0	PKDV00000000.1	1324	112	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	17	31	0
+GB_GCA_002429295.1	0	96.24	2.96	278	k__Bacteria (UID2569)	186	0	4218448	85.72365085445291	251	2011877	41.05398888780965	4920985	GB_GCA_002429385.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Prolixibacteraceae;g__UBA6024;s__UBA6024 sp002429385	not type material	none	f	42	31	145576	191048	41626	1	3042	DIZE01000053.1	41626	1	109	DIZE01000053.1	2622	3367	0	89.969	FONW01000022.258.3145	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;Sunxiuqinia;Sunxiuqinia elliptica	19524	30949	t	f	f	37384	50405	Scaffold	ASM242929v1	na	PRJNA348753	SAMN06456182	251	37384	Canada: Axel Heiberg Island;Nunavut	2017-10-04	GCA_002429295.1	derived from metagenome	full	UBA6036	soil	none	0	none	Prolixibacteraceae bacterium UBA6036	0	na	none	159	31	50405	25998	15694	2017/10/04	92	1952950	none	UBA6036	University of Queensland	1952950	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Marinilabiliales;f__Prolixibacteraceae;x__unclassified Prolixibacteraceae;s__Prolixibacteraceae bacterium UBA6036	20421	4920985	none	none	none	4900564	0	DIZE00000000.1	4224	159	41626	1	none	none	none	none	none	none	1665	DIZE01000053.1	1284	2309	0	99.143	DQ501308.1.1475	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prolixibacteraceae;WCHB1-32;uncultured Bacteroidetes bacterium	20421	19	50	0
+GB_GCA_002862805.1	0	98.09	0.67	511	f__Flavobacteriaceae (UID2817)	283	17.65	2471933	92.73165911638439	105	804022	30.161939674770156	2665684	GB_GCA_002862805.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp002862805	not type material	none	f	20	20	129875	129875	none	0	none	none	51296	2	102	PKEA01000061.1	none	none	none	none	none	none	25387	25387	f	f	t	43505	43505	Contig	ASM286280v1	na	PRJNA421797	SAMN08158018	105	43505	Atlantic Ocean	2018-01-04	GCA_002862805.1	derived from metagenome	full	Bacter2	marine water	22 N 32 W	0	none	Flavobacteriaceae bacterium	0	na	none	none	none	none	none	none	2018/01/04	0	1871037	none	Bacter2	Max planck institute for marine microbiology	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	2665684	none	none	none	2665684	0	PKEA00000000.1	2614	105	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	57	0
+GB_GCA_002369215.1	2	82.48	0.65	487	o__Bacteroidales (UID2716)	270	20	2724998	88.70372673112367	138	1533771	50.06296341267572	3072022	GB_GCA_900314655.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp900314655	not type material	none	f	20	8	175186	338703	none	0	none	none	33015	4	109	DFFA01000011.1	none	none	none	none	none	none	22200	71442	f	f	t	54097	125616	Scaffold	ASM236921v1	na	PRJNA348753	SAMN06457846	138	54097	none	2017-09-26	GCA_002369215.1	derived from metagenome	full	UBA3788	high methane producing sheep	none	0	none	Prevotella sp. UBA3788	0	na	none	43	8	125616	70622	43004	2017/09/26	95	1947147	none	UBA3788	University of Queensland	1947147	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA3788	8336	3072022	none	none	none	3063686	0	DFFA00000000.1	2532	43	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	8336	18	45	0
+GB_GCA_002723075.1	1903	88.65	2.72	571	s__algicola (UID2846)	303	46.67	1612467	95.44025938973806	28	678359	40.19664600815003	1689504	GB_GCA_002723075.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA724;s__UBA724 sp002723075	not type material	none	f	8	8	136942	136942	81428	1	235	PBNJ01000003.1	81428	1	104	PBNJ01000003.1	227	337	4.19e-91	93.392	CP003156.1350010.1352875	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Cryomorphaceae;Owenweeksia;Owenweeksia hongkongensis DSM 17368	60339	60339	f	f	t	85971	85971	Contig	ASM272307v1	na	PRJNA391943	SAMN07619024	28	85971	Pacific Ocean: South Pacific Ocean	2017-10-25	GCA_002723075.1	derived from metagenome	full	SP190	marine water sample	none	0	1	Flavobacteriaceae bacterium	1492	na	3	none	none	none	none	none	2017/10/25	0	1871037	1	SP190	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1689504	11	29	none	1689504	0	PBNJ00000000.1	1509	28	51176	1	none	none	none	none	none	none	517	PBNJ01000002.1	437	715	0	96.339	KU578741.1.1397	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;NS4 marine group;uncultured bacterium	0	16	31	0
+GB_GCA_002371315.1	4	88.67	3.76	278	k__Bacteria (UID2569)	186	45.45	2087762	85.89987080634941	259	1306411	54.02044522660774	2430460	GB_GCA_002371315.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__P3;g__UBA1217;s__UBA1217 sp002371315	not type material	none	f	49	33	77854	77854	none	0	none	none	23393	1	94	DFHL01000130.1	none	none	none	none	none	none	9337	17237	f	f	t	15980	24853	Scaffold	ASM237131v1	na	PRJNA348753	SAMN06452516	259	15980	none	2017-09-26	GCA_002371315.1	derived from metagenome	full	UBA3724	low methane producing sheep	none	0	none	Bacteroidales bacterium UBA3724	0	na	none	141	33	24853	14977	8771	2017/09/26	118	1950505	none	UBA3724	University of Queensland	1950505	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA3724	12092	2430460	none	none	none	2418368	0	DFHL00000000.1	2071	141	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	12092	17	35	0
+GB_GCA_002693805.1	8489	96.2	6.97	496	s__algicola (UID2847)	263	73.68	4539864	88.58881401977541	201	1900184	37.14083888730567	5124647	RS_GCF_000023465.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zunongwangia;s__Zunongwangia profunda	not type material	none	f	44	44	112858	112858	none	0	none	none	none	0	none	none	none	none	none	none	none	none	25495	25495	f	f	t	33807	33807	Contig	ASM269380v1	na	PRJNA391943	SAMN07620256	201	33807	Indian Ocean: Eastern Africa Coastal Province	2017-10-24	GCA_002693805.1	derived from metagenome	full	EAC3	marine water sample	none	0	1	Zunongwangia sp.	4485	na	1	none	none	none	none	none	2017/10/24	0	1965325	0	EAC3	Tara Oceans Consortium	1965325	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zunongwangia;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Zunongwangia;x__unclassified Zunongwangia;s__Zunongwangia sp.	0	5124647	11	37	none	5124647	0	NZRS00000000.1	4547	201	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	36	0
+GB_GCA_002375625.1	22	83.25	0	496	s__algicola (UID2847)	263	0	2431709	85.15937775785507	512	1081875	38.704245366044226	2855480	GB_GCA_002364215.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__Aequorivita sp002364215	not type material	none	f	71	40	68190	93185	none	0	none	none	none	0	none	none	none	none	none	none	none	none	5459	13406	f	f	t	11306	19336	Scaffold	ASM237562v1	na	PRJNA348753	SAMN06453357	512	11306	none	2017-09-27	GCA_002375625.1	derived from metagenome	full	UBA3599	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Aequorivita sp. UBA3599	0	na	none	213	40	19336	10896	5559	2017/09/27	299	1947775	none	UBA3599	University of Queensland	1947775	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__Aequorivita;x__unclassified Aequorivita;s__Aequorivita sp. UBA3599	60222	2855480	none	none	none	2795258	0	DFMG00000000.1	2764	213	43346	1	none	none	none	none	none	none	478	DFMG01000205.1	258	477	5.75e-133	100	KT851845.1.1486	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Vitellibacter;uncultured bacterium	60222	16	29	0
+GB_GCA_002728855.1	910	94.12	1.47	208	k__Bacteria (UID2566)	136	50	1540130	95.16703494436288	50	494440	30.5694080871306	1618344	GB_GCA_002728855.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__GCA-002728855;s__GCA-002728855 sp002728855	not type material	none	f	12	12	134265	134265	none	0	none	none	none	0	none	none	none	none	none	none	none	none	32366	32366	f	f	t	43647	43647	Contig	ASM272885v1	na	PRJNA391943	SAMN07619001	50	43647	Saudi Arabia: Red Sea	2017-10-26	GCA_002728855.1	derived from metagenome	full	RS408	marine water sample	none	0	1	Flavobacteriaceae bacterium	1475	na	0	none	none	none	none	none	2017/10/26	0	1871037	0	RS408	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1618344	11	29	none	1618344	0	PBWA00000000.1	1500	50	12249	1	none	none	none	none	none	none	339	PBWA01000037.1	335	619	6.26e-176	100	KU578819.1.1408	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;NS4 marine group;uncultured bacterium	0	20	29	0
+GB_GCA_002716845.1	17	70.12	0.74	208	k__Bacteria (UID2566)	136	0	1551860	93.03594317101333	52	648289	38.86613049721074	1668022	GB_GCA_002716845.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA8316;s__UBA8316 sp002716845	not type material	none	f	15	15	95113	95113	none	0	none	none	none	0	none	none	none	none	none	none	none	none	32077	32077	f	f	t	36538	36538	Contig	ASM271684v1	na	PRJNA391943	SAMN07619037	52	36538	Pacific Ocean	2017-10-25	GCA_002716845.1	derived from metagenome	full	SP4060	marine water sample	none	0	1	Flavobacteriaceae bacterium	1576	na	0	none	none	none	none	none	2017/10/25	0	1871037	0	SP4060	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1668022	11	15	none	1668022	0	PBCE00000000.1	1611	52	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	10	15	0
+GB_GCA_002493745.1	6	57.52	0	104	k__Bacteria (UID203)	58	0	1348164	80.92546338898383	440	832632	52.919753957388714	1665933	GB_GCA_002361155.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp002361155	not type material	none	f	53	27	49267	63817	none	0	none	none	none	0	none	none	none	none	none	none	none	none	3575	13768	f	f	t	8640	20155	Scaffold	ASM249374v1	na	PRJNA348753	SAMN06452337	440	8640	none	2017-10-10	GCA_002493745.1	derived from metagenome	full	UBA7068	rat gut	none	0	none	Porphyromonadaceae bacterium UBA7068	0	na	none	121	27	20155	11388	7092	2017/10/10	319	1952615	none	UBA7068	University of Queensland	1952615	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA7068	92541	1665933	none	none	none	1573392	0	DKZS00000000.1	1431	121	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	92541	1	1	0
+GB_GCA_002433125.1	6	92.37	4.16	571	s__algicola (UID2846)	303	8.11	3669224	90.97633792633722	352	1338120	33.397001577604755	4033163	GB_GCA_002722255.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Winogradskyella;s__Winogradskyella sp002722255	not type material	none	f	52	46	119142	119142	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11382	14666	f	f	t	22802	25448	Scaffold	ASM243312v1	na	PRJNA348753	SAMN06453389	352	22802	none	2017-10-04	GCA_002433125.1	derived from metagenome	full	UBA6619	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriaceae bacterium UBA6619	0	na	none	275	46	25448	12277	5671	2017/10/04	77	1951868	none	UBA6619	University of Queensland	1951868	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium UBA6619	26450	4033163	none	none	none	4006713	0	DJHN00000000.1	3932	275	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	26450	18	33	0
+GB_GCA_002721175.1	4325	82.88	2.86	571	s__algicola (UID2846)	303	100	1582879	95.00680944186585	27	533743	32.11944800161758	1666069	GB_GCA_002721175.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__SP29;s__SP29 sp002721175	not type material	none	f	5	5	246702	246702	none	0	none	none	29117	1	102	PBJR01000003.1	none	none	none	none	none	none	61706	61706	f	f	t	98688	98688	Contig	ASM272117v1	na	PRJNA391943	SAMN07619027	27	98688	Pacific Ocean: South Pacific Ocean	2017-10-25	GCA_002721175.1	derived from metagenome	full	SP29	marine water sample	none	0	0	Flavobacteriaceae bacterium	1474	na	4	none	none	none	none	none	2017/10/25	0	1871037	1	SP29	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1666069	11	37	none	1666069	0	PBJR00000000.1	1494	27	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	37	0
+GB_GCA_002690085.1	1206	68.64	2.85	571	s__algicola (UID2846)	303	11.11	1430414	93.80323678330969	111	562211	36.89767625318057	1524909	GB_GCA_002690085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA3537;s__UBA3537 sp002690085	not type material	none	f	29	29	57791	57791	none	0	none	none	29845	1	102	NZDM01000028.1	none	none	none	none	none	none	13737	13737	f	f	t	15711	15711	Contig	ASM269008v1	na	PRJNA391943	SAMN07618940	111	15711	Indian Ocean: Northwest Arabian Sea Upwelling Province	2017-10-24	GCA_002690085.1	derived from metagenome	full	ARS1039	marine water sample	none	0	1	Flavobacteriaceae bacterium	1381	na	1	none	none	none	none	none	2017/10/24	0	1871037	0	ARS1039	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1524909	11	37	none	1524909	0	NZDM00000000.1	1413	111	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	17	37	0
+GB_GCA_002280815.1	45	94	2.96	511	f__Flavobacteriaceae (UID2817)	283	53.85	3570009	88.34394860325352	625	1361662	33.70795918195578	4041034	GB_GCA_002280815.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp002280815	not type material	none	f	128	125	55405	55405	2344	1	302	NCET01000479.1	none	0	none	none	302	558	1.09e-157	100	FRCC01000023.2708.5591	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Flavobacterium;Flavobacterium flevense	6463	6814	f	f	t	9455	9725	Scaffold	ASM228081v1	na	PRJNA379596	SAMN06622339	625	9455	Canada: Ontario	2017-08-16	GCA_002280815.1	derived from metagenome	full	32-34-25	Mine wastewater	46.65 N 81.32 W	0	1	Flavobacteriales bacterium 32-34-25	3877	na	2	593	125	9725	5806	3221	2017/08/16	32	1970508	0	32-34-25	None	1970508	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium 32-34-25	1403	4041034	11	41	none	4039631	0	NCET00000000.1	4158	593	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1403	18	42	0
+GB_GCA_002350325.1	38	88.8	0.56	492	o__Bacteroidales (UID2657)	269	0	2455816	89.62635854689313	42	1317978	48.13494077988671	2740060	GB_GCA_900318775.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__UBA4334;s__UBA4334 sp900318775	not type material	none	f	7	5	289718	418186	none	0	none	none	none	0	none	none	none	none	none	none	none	none	65193	105386	f	f	t	131955	158794	Scaffold	ASM235032v1	na	PRJNA348753	SAMN06453482	42	131955	none	2017-09-22	GCA_002350325.1	derived from metagenome	full	UBA2876	rumen	none	0	none	Prevotellaceae bacterium UBA2876	0	na	none	26	5	158794	95462	57377	2017/09/22	16	1952478	none	UBA2876	University of Queensland	1952478	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;x__unclassified Prevotellaceae;s__Prevotellaceae bacterium UBA2876	1932	2740060	none	none	none	2738128	0	DEEO00000000.1	2218	26	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1932	17	43	0
+GB_GCA_002746415.1	2	98.02	1.1	571	s__algicola (UID2846)	303	0	3474952	90.91023726199175	36	1356796	35.4959466533696	3822399	GB_GCA_002746415.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Saonia;s__Saonia sp002746415	not type material	none	f	7	7	373274	373274	373274	1	905	NVXD01000001.1	none	0	none	none	905	1352	0	93.702	LDAS01000001.1712145.1714958	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Maribacter;Maribacter thermophilus	106177	106177	f	f	t	213672	213672	Contig	ASM274641v1	na	PRJNA391950	SAMN07568834	36	213672	Atlantic Ocean: North Pond	2017-09-28	GCA_002746415.1	derived from metagenome	full	NORP20	marine subsurface aquifer	none	0	1	Flavobacteriaceae bacterium	3373	na	2	none	none	none	none	none	2017/09/28	0	1871037	1	NORP20	University of Southern California	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	3822399	11	35	none	3822399	0	NVXD00000000.1	3454	36	373274	1	none	none	none	none	none	none	1516	NVXD01000001.1	1475	2571	0	98.169	KM051642.1.1518	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;uncultured;uncultured bacterium	0	18	35	0
+GB_GCA_002441475.1	57	95.3	1.23	324	o__Flavobacteriales (UID2815)	204	33.33	2134089	89.78118956377165	42	938344	39.48370211252937	2376989	RS_GCF_003336205.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Planobacterium;s__Planobacterium lacus	not type material	none	f	9	8	253823	335822	none	0	none	none	none	0	none	none	none	none	none	none	none	none	56585	67913	f	f	t	95642	101477	Scaffold	ASM244147v1	na	PRJNA348753	SAMN06450454	42	95642	Canada: Medicine Hat Glauconitic field	2017-10-04	GCA_002441475.1	derived from metagenome	full	UBA6239	waste water	none	0	none	Flavobacteriales bacterium UBA6239	0	na	none	35	8	101477	61011	38400	2017/10/04	7	1951050	none	UBA6239	University of Queensland	1951050	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA6239	397	2376989	none	none	none	2376592	0	DJWD00000000.1	2227	35	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	397	13	24	0
+GB_GCA_002449455.1	91	90.46	0.95	316	p__Bacteroidetes (UID2605)	210	0	1680473	92.47686802972954	147	744184	41.05620771952744	1817182	GB_GCA_002438635.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Cryptobacteroides;s__Cryptobacteroides sp002438635	not type material	none	f	18	15	84611	84611	17143	1	1948	DKEB01000072.1	none	0	none	none	1967	2185	0	87.087	FUZR01000004.199667.202523	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Rikenellaceae RC9 gut group;Bacteroidales bacterium WCE2004	12331	20649	f	f	t	28840	38564	Scaffold	ASM244945v1	na	PRJNA348753	SAMN06457269	147	28840	Kenya	2017-10-05	GCA_002449455.1	derived from metagenome	full	UBA6833	feces	none	0	none	Bacteroidales bacterium UBA6833	0	na	none	88	15	38564	19118	7790	2017/10/05	59	1950708	none	UBA6833	University of Queensland	1950708	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA6833	4493	1817182	none	none	none	1812689	0	DKEB00000000.1	1569	88	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4493	17	30	0
+GB_GCA_002729755.1	5057	75.37	0	208	k__Bacteria (UID2566)	136	0	1056355	95.45321879182016	30	326499	29.63818608299081	1106673	GB_GCA_002729755.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Marisimplicoccus;s__Marisimplicoccus sp002729755	not type material	none	f	7	7	138439	138439	none	0	none	none	none	0	none	none	none	none	none	none	none	none	36889	36889	f	f	t	63295	63295	Contig	ASM272975v1	na	PRJNA391943	SAMN07618998	30	63295	Pacific Ocean: North Pacific Ocean	2017-10-26	GCA_002729755.1	derived from metagenome	full	NP22	marine water sample	none	0	0	Flavobacteriaceae bacterium	1074	na	0	none	none	none	none	none	2017/10/26	0	1871037	0	NP22	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1106673	11	25	none	1106673	0	PBYT00000000.1	1091	30	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	15	25	0
+GB_GCA_002698745.1	470	78.11	2.92	571	s__algicola (UID2846)	303	18.18	1408115	94.65517542715709	65	562080	37.795631393075105	1487626	GB_GCA_002698745.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__UBA7446;s__UBA7446 sp002698745	not type material	none	f	17	17	74631	74631	none	0	none	none	none	0	none	none	none	none	none	none	none	none	22886	22886	f	f	t	26827	26827	Contig	ASM269874v1	na	PRJNA391943	SAMN07618987	65	26827	Atlantic Ocean: North Atlantic Ocean	2017-10-24	GCA_002698745.1	derived from metagenome	full	NAT231	marine water sample	none	0	1	Flavobacteriaceae bacterium	1324	na	0	none	none	none	none	none	2017/10/24	0	1871037	0	NAT231	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1487626	11	31	none	1487626	0	PAAD00000000.1	1353	65	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	17	31	0
+GB_GCA_002383545.1	0	97.08	0	278	k__Bacteria (UID2569)	186	0	1636502	94.57203965028326	55	844965	49.01953959173444	1730429	GB_GCA_001438205.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Schleiferiaceae;g__TMED14;s__TMED14 sp001438205	not type material	none	f	9	6	143821	227606	none	0	none	none	91701	1	105	DGAT01000016.1	none	none	none	none	none	none	31340	86521	f	f	t	78410	112723	Scaffold	ASM238354v1	na	PRJNA348753	SAMN06457597	55	78410	Baltic Sea	2017-09-27	GCA_002383545.1	derived from metagenome	full	UBA4023	water	none	0	none	Flavobacteriales bacterium UBA4023	0	na	none	20	6	112723	78410	52604	2017/09/27	35	1951001	none	UBA4023	University of Queensland	1951001	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA4023	6698	1730429	none	none	none	1723731	0	DGAT00000000.1	1559	20	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	6698	16	30	0
+GB_GCA_002707025.1	693	98.35	0.19	496	s__algicola (UID2847)	263	0	2845590	93.41822068786202	33	1209347	39.71083440079622	3046076	GB_GCA_002707025.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__PALG01;s__PALG01 sp002707025	not type material	none	f	6	6	443072	443072	none	0	none	none	none	0	none	none	none	none	none	none	none	none	92305	92305	f	f	t	217600	217600	Contig	ASM270702v1	na	PRJNA391943	SAMN07619018	33	217600	Atlantic Ocean: South Atlantic Ocean	2017-10-25	GCA_002707025.1	derived from metagenome	full	SAT49	marine water sample	none	0	1	Flavobacteriaceae bacterium	2814	na	0	none	none	none	none	none	2017/10/25	0	1871037	0	SAT49	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	3046076	11	34	none	3046076	0	PALG00000000.1	2848	33	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	19	34	0
+GB_GCA_002307185.1	2	91.8	2.19	273	k__Bacteria (UID2570)	183	0	3130234	87.32235552996524	87	1524113	42.624566934066586	3584688	GB_GCA_002307185.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__UBA1309;s__UBA1309 sp002307185	not type material	none	f	14	11	219686	248710	none	0	none	none	none	0	none	none	none	none	none	none	none	none	41099	65176	f	f	t	88337	129594	Scaffold	ASM230718v1	na	PRJNA348753	SAMN06453952	87	88337	none	2017-09-15	GCA_002307185.1	derived from metagenome	full	UBA1309	soil	none	0	none	Bacteroidales bacterium UBA1309	0	na	none	55	11	129594	64612	33081	2017/09/15	32	1950405	none	UBA1309	University of Queensland	1950405	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1309	9018	3584688	none	none	none	3575670	0	DBTT00000000.1	3068	55	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	9018	16	43	0
+GB_GCA_002684395.1	2090	80.48	6	511	f__Flavobacteriaceae (UID2817)	283	0	2263898	94.36521734780943	136	710203	29.628938948873817	2399081	GB_GCA_002690805.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Marivariicella;s__Marivariicella sp002690805	not type material	none	f	31	31	99253	99253	none	0	none	none	none	0	none	none	none	none	none	none	none	none	17640	17640	f	f	t	23410	23410	Contig	ASM268439v1	na	PRJNA391943	SAMN07618948	136	23410	Indian Ocean: Eastern Africa Coastal Province	2017-10-24	GCA_002684395.1	derived from metagenome	full	CPC319	marine water sample	none	0	1	Flavobacteriaceae bacterium	2270	na	0	none	none	none	none	none	2017/10/24	0	1871037	0	CPC319	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	2399081	11	30	none	2399081	0	NYVE00000000.1	2320	136	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	31	0
+GB_GCA_002356435.2	0	100	0.55	273	k__Bacteria (UID2570)	183	0	3389770	91.78326956355042	1	1624308	43.98065326503906	3693233	GB_GCA_002356435.2	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Petrimonas;s__Petrimonas sp002356435	not type material	none	f	1	1	3693233	3693233	3693233	2	2895	AP018040.2	3693233	2	107	AP018040.2	2895	5347	0	100	AP018040.2689899.2692796	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Petrimonas;Petrimonas sp. IBARAKI	3693233	3693233	t	f	f	3693233	3693233	Complete Genome	ASM235643v2	na	PRJDB4464	SAMD00078371	none	none	none	2018-03-27	GCA_002356435.2	derived from environmental sample	full	none	lotus field mud as the mixed culture	none	1	0	Petrimonas sp. IBARAKI	2992	na	6	1	1	3693233	3693233	3693233	2018/03/27	0	1978337	2	IBARAKI	Tokyo University of Agriculture and Technology	1978337	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Petrimonas;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__Petrimonas;x__unclassified Petrimonas;s__Petrimonas sp. IBARAKI	0	3693233	11	48	none	3693233	0	none	3072	1	3693233	2	none	none	none	none	none	none	1526	AP018040.2	1526	2819	0	100	AP018040.2693570.2695105	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Petrimonas;Petrimonas sp. IBARAKI	0	19	48	0
+GB_GCA_002452235.1	35	78.15	0	406	o__Bacteroidales (UID2617)	265	0	1581629	87.90246206858222	91	928172	51.66033833477488	1799300	GB_GCA_002478045.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-873;s__CAG-873 sp002478045	not type material	none	f	16	12	109700	172466	none	0	none	none	none	0	none	none	none	none	none	none	none	none	19744	30496	f	f	t	39719	51854	Scaffold	ASM245223v1	na	PRJNA348753	SAMN06452483	91	39719	Kenya	2017-10-05	GCA_002452235.1	derived from metagenome	full	UBA6831	feces	none	0	none	Porphyromonadaceae bacterium UBA6831	0	na	none	59	12	51854	25137	14350	2017/10/05	32	1952595	none	UBA6831	University of Queensland	1952595	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA6831	2583	1799300	none	none	none	1796717	0	DKED00000000.1	1509	59	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2583	16	32	0
+GB_GCA_002364385.1	2	96.03	2.78	496	s__algicola (UID2847)	263	12.5	3201223	88.86300200559346	274	1238031	34.64301934056229	3602425	RS_GCF_902499555.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Mesonia;s__Mesonia oceanica	not type material	none	f	43	37	94363	94363	none	0	none	none	2649	1	112	DEYC01000063.1	none	none	none	none	none	none	13042	19902	f	f	t	27869	32901	Scaffold	ASM236438v1	na	PRJNA348753	SAMN06455688	274	27869	none	2017-09-26	GCA_002364385.1	derived from metagenome	full	UBA3168	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriaceae bacterium UBA3168	0	na	none	181	37	32901	18996	9944	2017/09/26	93	1951823	none	UBA3168	University of Queensland	1951823	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium UBA3168	28742	3602425	none	none	none	3573683	0	DEYC00000000.1	3346	181	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	28742	18	28	0
+GB_GCA_002479185.1	9	79.51	0.37	492	o__Bacteroidales (UID2657)	269	0	1899776	87.87037683722777	136	1283035	59.52032473180632	2162021	GB_GCA_002316015.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__UBA4372;s__UBA4372 sp002316015	not type material	none	f	24	15	70072	133373	none	0	none	none	none	0	none	none	none	none	none	none	none	none	15850	31794	f	f	t	31742	54601	Scaffold	ASM247918v1	na	PRJNA348753	SAMN06455308	136	31742	Kenya	2017-10-06	GCA_002479185.1	derived from metagenome	full	UBA7548	feces	none	0	none	Prevotellaceae bacterium UBA7548	0	na	none	68	15	54601	32262	15911	2017/10/06	68	1952532	none	UBA7548	University of Queensland	1952532	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;x__unclassified Prevotellaceae;s__Prevotellaceae bacterium UBA7548	6387	2162021	none	none	none	2155634	0	DLMA00000000.1	1675	68	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	6387	14	32	0
+GB_GCA_002693085.1	7234	79.87	3.43	208	k__Bacteria (UID2566)	136	71.43	1136326	96.31668928385861	87	336187	28.67151593923314	1179781	GB_GCA_002693085.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__MED-G14;s__MED-G14 sp002693085	not type material	none	f	28	28	39835	39835	none	0	none	none	7441	1	103	NZOB01000069.1	none	none	none	none	none	none	13560	13560	f	f	t	14577	14577	Contig	ASM269308v1	na	PRJNA391943	SAMN07618956	87	14577	Indian Ocean: Indian Monsoon Gyres Province	2017-10-24	GCA_002693085.1	derived from metagenome	full	EAC714	marine water sample	none	0	1	Flavobacteriaceae bacterium	1174	na	2	none	none	none	none	none	2017/10/24	0	1871037	0	EAC714	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1179781	11	18	none	1179781	0	NZOB00000000.1	1201	87	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	11	20	0
+GB_GCA_002344975.1	4	97.73	1.52	298	p__Bacteroidetes (UID2591)	198	0	4941114	88.75592074194716	239	2909424	52.555469190165816	5567081	GB_GCA_002344975.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__UBA2329;s__UBA2329 sp002344975	not type material	none	f	36	25	191520	195357	none	0	none	none	none	0	none	none	none	none	none	none	none	none	23162	44183	f	f	t	44680	73908	Scaffold	ASM234497v1	na	PRJNA348753	SAMN06455417	239	44680	Australia: Brisbane; Thorneside Wastewater Treatment Plant	2017-09-22	GCA_002344975.1	derived from metagenome	full	UBA2329	activated sludge	none	0	none	Saprospiraceae bacterium UBA2329	0	na	none	126	25	73908	40834	24056	2017/09/22	113	1952866	none	UBA2329	University of Queensland	1952866	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;x__unclassified Saprospiraceae;s__Saprospiraceae bacterium UBA2329	31166	5567081	none	none	none	5535915	0	DDUV00000000.1	4283	126	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	31166	19	47	0
+GB_GCA_002353775.1	21	75.4	1.01	567	g__Prevotella (UID2724)	296	50	2305922	87.12237821156567	156	1373676	51.98129896864304	2646762	GB_GCA_900317685.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp900317685	not type material	none	f	23	21	125537	137220	none	0	none	none	15959	2	109	DEKI01000094.1	none	none	none	none	none	none	16940	24282	f	f	t	33386	36662	Scaffold	ASM235377v1	na	PRJNA348753	SAMN06457125	156	33386	USA: Wyoming	2017-09-25	GCA_002353775.1	derived from metagenome	full	UBA2726	Rumen fluid	none	0	none	Prevotella sp. UBA2726	0	na	none	109	21	36662	21745	12940	2017/09/25	47	1947097	none	UBA2726	University of Queensland	1947097	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA2726	4106	2646762	none	none	none	2642656	0	DEKI00000000.1	2097	109	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4106	15	28	0
+GB_GCA_002381125.1	4	99.45	0	273	k__Bacteria (UID2570)	183	0	1957761	90.6843147472642	51	893906	41.42298754167641	2158875	GB_GCA_002381125.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Dysgonomonadaceae;g__UBA4179;s__UBA4179 sp002381125	not type material	none	f	11	11	187194	187194	none	0	none	none	27456	2	109	DFUT01000029.1	none	none	none	none	none	none	42313	46932	f	f	t	64918	65137	Scaffold	ASM238112v1	na	PRJNA348753	SAMN06454254	51	64918	Luxembourg: Belvaux	2017-09-27	GCA_002381125.1	derived from metagenome	full	UBA4179	bioreactor	none	0	none	Bacteroidales bacterium UBA4179	0	na	none	46	11	65137	43205	29093	2017/09/27	5	1950544	none	UBA4179	University of Queensland	1950544	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA4179	876	2158875	none	none	none	2157999	0	DFUT00000000.1	1789	46	29733	2	none	none	none	none	none	none	1545	DFUT01000037.1	1511	2747	0	99.471	JF421647.1.1538	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Dysgonomonadaceae;Proteiniphilum;uncultured bacterium	876	19	42	0
+GB_GCA_002439095.1	0	93.71	0.4	316	p__Bacteroidetes (UID2605)	210	50	2224849	92.85986474512306	76	1277935	53.38712143555997	2395921	GB_GCA_002439095.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Cryptobacteroides;s__Cryptobacteroides sp002439095	not type material	none	f	11	10	159769	185541	25222	1	1904	DJOT01000029.1	none	0	none	none	1188	1552	0	90.404	MNQT01000014.182.2995	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Rikenellaceae RC9 gut group;Bacteroides sp. CAG:1060_57_27	31496	46075	f	f	t	68620	77253	Scaffold	ASM243909v1	na	PRJNA348753	SAMN06453290	76	68620	Kenya	2017-10-04	GCA_002439095.1	derived from metagenome	full	UBA6431	feces	none	0	none	Bacteroidales bacterium UBA6431	0	na	none	52	10	77253	46321	25073	2017/10/04	24	1950699	none	UBA6431	University of Queensland	1950699	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA6431	2207	2395921	none	none	none	2393714	0	DJOT00000000.1	1955	52	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2207	19	39	0
+GB_GCA_002321485.1	8	74.66	0.81	278	k__Bacteria (UID2569)	186	50	1618829	86.92786802322117	276	948640	51.235796789445196	1862267	GB_GCA_002440265.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002440265	not type material	none	f	50	31	39682	72689	none	0	none	none	none	0	none	none	none	none	none	none	none	none	6708	13301	f	f	t	10896	20723	Scaffold	ASM232148v1	na	PRJNA348753	SAMN06452197	276	10896	Kenya	2017-09-21	GCA_002321485.1	derived from metagenome	full	UBA1621	feces	none	0	none	Bacteroidales bacterium UBA1621	0	na	none	140	31	20723	11525	6277	2017/09/21	136	1950412	none	UBA1621	University of Queensland	1950412	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1621	10741	1862267	none	none	none	1851526	0	DCMN00000000.1	1643	140	24071	1	none	none	none	none	none	none	214	DCMN01000069.1	185	289	1.2e-76	95.135	EU774425.1.1396	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Bacteroidales RF16 group;uncultured bacterium	10741	14	22	0
+GB_GCA_002331425.1	0	98.39	0	278	k__Bacteria (UID2569)	186	0	3898206	92.50693112726957	52	1939797	46.08938189096487	4213961	GB_GCA_002695025.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Schleiferiaceae;g__Owenweeksia;s__Owenweeksia sp002695025	not type material	none	f	10	8	392659	452309	none	0	none	none	none	0	none	none	none	none	none	none	none	none	80937	117054	f	f	t	150601	181621	Scaffold	ASM233142v1	na	PRJNA348753	SAMN06455331	52	150601	none	2017-09-21	GCA_002331425.1	derived from metagenome	full	UBA2113	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriales bacterium UBA2113	0	na	none	36	8	181621	131346	58541	2017/09/21	16	1950973	none	UBA2113	University of Queensland	1950973	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA2113	5189	4213961	none	none	none	4208772	0	DCYJ00000000.1	3661	36	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	5189	16	28	0
+GB_GCA_002723295.1	0	77.31	0	208	k__Bacteria (UID2566)	136	0	1210366	95.63975103255747	35	372738	29.452718863858866	1265547	GB_GCA_002723295.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Marivariicella;s__Marivariicella sp002723295	not type material	none	f	8	8	123512	123512	none	0	none	none	18498	1	104	PBNP01000021.1	none	none	none	none	none	none	36158	36158	f	f	t	39843	39843	Contig	ASM272329v1	na	PRJNA391943	SAMN07619023	35	39843	Pacific Ocean: South Pacific Ocean	2017-10-25	GCA_002723295.1	derived from metagenome	full	SP185	marine water sample	none	0	1	Flavobacteriaceae bacterium	1172	na	3	none	none	none	none	none	2017/10/25	0	1871037	1	SP185	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1265547	11	24	none	1265547	0	PBNP00000000.1	1191	35	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	16	24	0
+GB_GCA_002862755.1	0	96.86	0.63	511	f__Flavobacteriaceae (UID2817)	283	0	3395634	91.82250818744302	62	1164675	31.49437769889517	3698041	GB_GCA_002862755.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Flavobacterium;s__Flavobacterium sp002862755	not type material	none	f	12	12	333723	333723	none	0	none	none	none	0	none	none	none	none	none	none	none	none	59645	59645	f	f	t	94889	94889	Contig	ASM286275v1	na	PRJNA421797	SAMN08158020	62	94889	Atlantic Ocean	2018-01-04	GCA_002862755.1	derived from metagenome	full	Bacter4	marine water	24 N 32 W	0	none	Flavobacteriaceae bacterium	0	na	none	none	none	none	none	none	2018/01/04	0	1871037	none	Bacter4	Max planck institute for marine microbiology	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	3698041	none	none	none	3698041	0	PKDY00000000.1	3386	62	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	18	41	0
+GB_GCA_002702385.1	8397	67.55	2.21	208	k__Bacteria (UID2566)	136	66.67	1147191	96.61532112718758	65	338412	28.70372176698052	1187380	GB_GCA_002702385.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__MED-G14;s__MED-G14 sp002702385	not type material	none	f	20	20	51150	51150	none	0	none	none	none	0	none	none	none	none	none	none	none	none	18267	18267	f	f	t	21564	21564	Contig	ASM270238v1	na	PRJNA391943	SAMN07618989	65	21564	Atlantic Ocean: North Atlantic Ocean	2017-10-24	GCA_002702385.1	derived from metagenome	full	NAT254	marine water sample	none	0	1	Flavobacteriaceae bacterium	1174	na	0	none	none	none	none	none	2017/10/24	0	1871037	0	NAT254	Tara Oceans Consortium	1871037	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium	0	1187380	11	26	none	1187380	0	NZZF00000000.1	1198	65	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	0	14	26	0
+GB_GCA_002362535.1	4	89.9	4.15	406	o__Bacteroidales (UID2617)	265	14.29	2383874	90.2204424441495	212	1521032	58.16227890386486	2642277	GB_GCA_002493945.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-873;s__CAG-873 sp002493945	not type material	none	f	35	24	73074	116057	none	0	none	none	none	0	none	none	none	none	none	none	none	none	12335	22778	f	f	t	22349	32772	Scaffold	ASM236253v1	na	PRJNA348753	SAMN06455036	212	22349	none	2017-09-26	GCA_002362535.1	derived from metagenome	full	UBA3264	rat gut	none	0	none	Porphyromonadaceae bacterium UBA3264	0	na	none	116	24	32772	18961	10205	2017/09/26	96	1952554	none	UBA3264	University of Queensland	1952554	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA3264	27121	2642277	none	none	none	2615156	0	DEUK00000000.1	2096	116	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	27121	13	18	0
+GB_GCA_002379965.1	2	96.49	1.6	571	s__algicola (UID2846)	303	16.67	4007552	90.90913627800255	166	1764304	40.1755395893146	4408305	RS_GCF_014855515.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Euzebyella;s__Euzebyella marina	not type material	none	f	28	24	154665	198598	none	0	none	none	none	0	none	none	none	none	none	none	none	none	26454	39011	f	f	t	52415	57715	Scaffold	ASM237996v1	na	PRJNA348753	SAMN06451758	166	52415	none	2017-09-27	GCA_002379965.1	derived from metagenome	full	UBA4167	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriaceae bacterium UBA4167	0	na	none	113	24	57715	35387	20120	2017/09/27	53	1951842	none	UBA4167	University of Queensland	1951842	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium UBA4167	16815	4408305	none	none	none	4391490	0	DFVF00000000.1	3833	113	41618	1	none	none	none	none	none	none	327	DFVF01000009.1	327	593	3.65e-168	99.388	CP032050.3467203.3468734	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;Flavobacteriaceae;Euzebyella;Euzebyella marina	16815	16	23	0
+GB_GCA_002449495.1	0	75.81	0.54	278	k__Bacteria (UID2569)	186	0	1663338	91.28285899307423	94	908380	49.974280613634306	1822180	GB_GCA_002394335.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002394335	not type material	none	f	16	10	97386	153733	none	0	none	none	none	0	none	none	none	none	none	none	none	none	19337	39612	f	f	t	37804	61337	Scaffold	ASM244949v1	na	PRJNA348753	SAMN06452834	94	37804	none	2017-10-05	GCA_002449495.1	derived from metagenome	full	UBA7021	high methane producing sheep	none	0	none	Bacteroidales bacterium UBA7021	0	na	none	46	10	61337	38340	17961	2017/10/05	48	1950724	none	UBA7021	University of Queensland	1950724	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA7021	4485	1822180	none	none	none	1817695	0	DJWV00000000.1	1523	46	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4485	18	25	0
+GB_GCA_002297505.1	29	89.72	0	324	o__Flavobacteriales (UID2815)	204	0	2773307	87.34299763384313	276	1273897	40.3693811830516	3175191	GB_GCA_002297505.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Weeksellaceae;g__Epilithonimonas;s__Epilithonimonas sp002297505	not type material	none	f	31	20	149096	183659	none	0	none	none	none	0	none	none	none	none	none	none	none	none	11433	24238	f	f	t	27346	43171	Scaffold	ASM229750v1	na	PRJNA348753	SAMN06452890	276	27346	USA:New York City	2017-09-12	GCA_002297505.1	derived from metagenome	full	UBA720	metal	none	0	none	Flavobacteriales bacterium UBA720	0	na	none	131	20	43171	22041	10451	2017/09/12	145	1951062	none	UBA720	University of Queensland	1951062	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA720	19560	3175191	none	none	none	3155631	0	DBLQ00000000.1	3046	131	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	19560	18	33	0
+GB_GCA_002491945.1	2	88.74	0.75	406	o__Bacteroidales (UID2617)	265	0	1858076	85.72916873329491	125	1132127	52.64061651428019	2167379	GB_GCA_002491945.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Muribaculaceae;g__CAG-485;s__CAG-485 sp002491945	not type material	none	f	26	18	117054	127244	none	0	none	none	none	0	none	none	none	none	none	none	none	none	17205	31411	f	f	t	28919	40085	Scaffold	ASM249194v1	na	PRJNA348753	SAMN06450445	125	28919	none	2017-10-10	GCA_002491945.1	derived from metagenome	full	UBA7141	rat gut	none	0	none	Porphyromonadaceae bacterium UBA7141	0	na	none	69	18	40085	30053	18307	2017/10/10	56	1952647	none	UBA7141	University of Queensland	1952647	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Porphyromonadaceae;x__unclassified Porphyromonadaceae;s__Porphyromonadaceae bacterium UBA7141	16705	2167379	none	none	none	2150674	0	DKWX00000000.1	1676	69	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	16705	11	19	0
+GB_GCA_002394445.1	8	61.36	1.72	104	k__Bacteria (UID203)	58	0	1429713	93.73513786748435	179	733204	48.13472397197277	1525269	GB_GCA_002449665.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002449665	not type material	none	f	37	34	64154	64154	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8509	10101	f	f	t	14444	15411	Scaffold	ASM239444v1	na	PRJNA348753	SAMN06453631	179	14444	none	2017-09-28	GCA_002394445.1	derived from metagenome	full	UBA4325	low methane producing sheep	none	0	none	Bacteroidales bacterium UBA4325	0	na	none	151	34	15411	7523	4659	2017/09/28	28	1950566	none	UBA4325	University of Queensland	1950566	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA4325	2028	1525269	none	none	none	1523241	0	DGTX00000000.1	1334	151	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	2028	10	11	0
+GB_GCA_002392915.1	0	99.19	0	278	k__Bacteria (UID2569)	186	0	3368247	89.0073187824438	86	1540971	40.74038921155156	3784236	GB_GCA_002392915.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__UBA1723;s__UBA1723 sp002392915	not type material	none	f	16	13	230763	265233	none	0	none	none	none	0	none	none	none	none	none	none	none	none	43981	63070	f	f	t	78319	89712	Scaffold	ASM239291v1	na	PRJNA348753	SAMN06453333	86	78319	none	2017-09-28	GCA_002392915.1	derived from metagenome	full	UBA3844	high methane producing sheep	none	0	none	Bacteroidales bacterium UBA3844	0	na	none	60	13	89712	57001	42034	2017/09/28	26	1950530	none	UBA3844	University of Queensland	1950530	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA3844	1820	3784236	none	none	none	3782416	0	DGHQ00000000.1	3050	60	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1820	18	54	0
+GB_GCA_002424135.1	4	96.24	0.54	278	k__Bacteria (UID2569)	186	50	1832498	88.03200573397636	125	678194	32.75536807371424	2081627	GB_GCA_002407855.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__P3;g__UBA10566;s__UBA10566 sp002407855	not type material	none	f	22	13	84684	133222	none	0	none	none	none	0	none	none	none	none	none	none	none	none	16563	35281	f	f	t	32811	48368	Scaffold	ASM242413v1	na	PRJNA348753	SAMN06456603	125	32811	China: Mianyang	2017-10-04	GCA_002424135.1	derived from metagenome	full	UBA5479	mud	none	0	none	Bacteroidales bacterium UBA5479	0	na	none	59	13	48368	32811	18798	2017/10/04	66	1950639	none	UBA5479	University of Queensland	1950639	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA5479	11141	2081627	none	none	none	2070486	0	DIPV00000000.1	1785	59	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	11141	19	36	0
+GB_GCA_002842465.1	0	92.46	1.19	316	p__Bacteroidetes (UID2605)	210	0	2241475	93.64138063567394	44	948293	39.61726010136879	2393680	GB_GCA_002842465.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Bact-08;s__Bact-08 sp002842465	not type material	none	f	12	12	158471	158471	none	0	none	none	none	0	none	none	none	none	none	none	none	none	54400	56992	f	f	t	75049	76199	Scaffold	ASM284246v1	na	PRJNA321556	SAMN06767598	44	75049	Japan: Horonobe URL	2017-12-13	GCA_002842465.1	derived from metagenome	full	HGW-Bacteroidetes-7	groundwater	45.045278 N 141.859444 E	0	0	Bacteroidetes bacterium HGW-Bacteroidetes-7	2094	na	0	42	12	76199	55173	28383	2017/12/13	2	2013697	0	HGW-Bacteroidetes-7	UC Berkeley	2013697	d__Bacteria;p__Bacteroidetes;c__;o__;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;x__unclassified Bacteroidetes;s__Bacteroidetes bacterium HGW-Bacteroidetes-7	44	2393680	11	33	none	2393636	0	PHDA00000000.1	2112	42	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	44	19	34	0
+GB_GCA_002336465.1	141	80.67	2.2	315	p__Bacteroidetes (UID2605)	209	12.5	2517140	91.1432977555084	311	1010552	36.63597209936339	2761739	GB_GCA_002336465.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__Pedobacter sp002336465	not type material	none	f	66	56	42758	42758	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8869	10959	f	f	t	13398	15786	Scaffold	ASM233646v1	na	PRJNA348753	SAMN06456073	311	13398	Denmark: Ejby Moelle; Odense	2017-09-22	GCA_002336465.1	derived from metagenome	full	UBA1951	wastewater	none	0	none	Pedobacter sp. UBA1951	0	na	none	252	56	15786	8831	5192	2017/09/22	59	1947058	none	UBA1951	University of Queensland	1947058	d__Bacteria;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Sphingobacteriia;o__Sphingobacteriales;f__Sphingobacteriaceae;g__Pedobacter;x__unclassified Pedobacter;s__Pedobacter sp. UBA1951	3238	2761739	none	none	none	2758501	0	DDEP00000000.1	2593	252	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	3238	12	17	0
+GB_GCA_002387615.1	58	87.71	1.08	278	k__Bacteria (UID2569)	186	50	1535940	90.52817829089561	299	745797	44.26394426685248	1696643	GB_GCA_905478295.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Schleiferiaceae;g__UBA10364;s__UBA10364 sp002387615	not type material	none	f	50	36	55194	55194	none	0	none	none	none	0	none	none	none	none	none	none	none	none	5635	10039	f	f	t	9808	13450	Scaffold	ASM238761v1	na	PRJNA348753	SAMN06453610	299	9808	North Sea	2017-09-28	GCA_002387615.1	derived from metagenome	full	UBA4585	Subsurface seawater	none	0	none	Flavobacteriales bacterium UBA4585	0	na	none	169	36	13450	7353	4723	2017/09/28	130	1951023	none	UBA4585	University of Queensland	1951023	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA4585	11699	1696643	none	none	none	1684944	0	DGJX00000000.1	1657	169	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	11699	11	12	0
+GB_GCA_002310195.1	84	78.49	0.54	278	k__Bacteria (UID2569)	186	50	1825471	92.96538047660347	76	1026049	52.35064070348554	1963603	GB_GCA_002310195.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Paludibacteraceae;g__RF16;s__RF16 sp002310195	not type material	none	f	9	6	216582	267526	none	0	none	none	none	0	none	none	none	none	none	none	none	none	25789	85374	f	f	t	56181	147257	Scaffold	ASM231019v1	na	PRJNA348753	SAMN06452496	76	56181	none	2017-09-18	GCA_002310195.1	derived from metagenome	full	UBA1180	Switch grass fiber attached community in cow rumen; 72 hour post incubation	none	0	none	Bacteroidales bacterium UBA1180	0	na	none	23	6	147257	60300	40366	2017/09/18	53	1950381	none	UBA1180	University of Queensland	1950381	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1180	3564	1963603	none	none	none	1960039	0	DBYS00000000.1	1629	23	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	3564	16	34	0
+GB_GCA_002480545.1	0	98.02	0.39	571	s__algicola (UID2846)	303	66.67	2929988	92.18608072576228	105	1425973	44.92205749439172	3178341	RS_GCF_000963865.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__Flavobacteriaceae;g__Muricauda_A;s__Muricauda_A lutaonensis	not type material	none	f	17	15	190800	190800	none	0	none	none	none	0	none	none	none	none	none	none	none	none	30231	34175	f	f	t	56512	63541	Scaffold	ASM248054v1	na	PRJNA348753	SAMN06457156	105	56512	none	2017-10-06	GCA_002480545.1	derived from metagenome	full	UBA7802	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriaceae bacterium UBA7802	0	na	none	93	15	63541	39646	16152	2017/10/06	12	1951887	none	UBA7802	University of Queensland	1951887	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__Flavobacteriaceae;x__unclassified Flavobacteriaceae;s__Flavobacteriaceae bacterium UBA7802	4014	3178341	none	none	none	3174327	0	DLCI00000000.1	2966	93	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	4014	18	31	0
+GB_GCA_002336475.1	112	90.32	1.61	278	k__Bacteria (UID2569)	186	100	2328176	93.35759591888127	305	1381852	55.64720564327932	2493826	GB_GCA_002336475.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UA16;g__UBA8752;s__UBA8752 sp002336475	not type material	none	f	54	30	68243	76347	none	0	none	none	none	0	none	none	none	none	none	none	none	none	8142	17198	f	f	t	15422	25365	Scaffold	ASM233647v1	na	PRJNA348753	SAMN06456608	305	15422	North Sea	2017-09-22	GCA_002336475.1	derived from metagenome	full	UBA1995	Subsurface seawater	none	0	none	Flavobacteriales bacterium UBA1995	0	na	none	145	30	25365	15664	7837	2017/09/22	160	1950966	none	UBA1995	University of Queensland	1950966	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA1995	10477	2493826	none	none	none	2483349	0	DDCX00000000.1	2201	145	8013	1	none	none	none	none	none	none	503	DDCX01000105.1	499	917	0	99.8	JX016051.1.1475	Bacteria;Bacteroidota;Bacteroidia;Flavobacteriales;NS9 marine group;uncultured bacterium	10477	16	30	0
+GB_GCA_002432545.1	1431	93.08	0.99	454	o__Cytophagales (UID2936)	336	25	6008012	88.28486565606559	623	2949013	43.46649439330386	6805257	GB_GCA_002432545.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Cytophagales;f__Cyclobacteriaceae;g__Ohtaekwangia;s__Ohtaekwangia sp002432545	not type material	none	f	106	60	82029	96547	none	0	none	none	none	0	none	none	none	none	none	none	none	none	10892	24304	f	f	t	19623	37972	Scaffold	ASM243254v1	na	PRJNA348753	SAMN06455186	623	19623	Israel	2017-10-04	GCA_002432545.1	derived from metagenome	full	UBA5867	soil	none	0	none	Flammeovirgaceae bacterium UBA5867	0	na	none	280	60	37972	21520	12103	2017/10/04	343	1951788	none	UBA5867	University of Queensland	1951788	d__Bacteria;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flammeovirgaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Flammeovirgaceae;x__unclassified Flammeovirgaceae;s__Flammeovirgaceae bacterium UBA5867	19260	6805257	none	none	none	6785997	0	DJFR00000000.1	6095	280	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	19260	12	22	0
+GB_GCA_002439945.1	6	95.81	0	492	o__Bacteroidales (UID2657)	269	0	2249458	91.9216165103214	55	1158130	47.347798819790306	2447148	GB_GCA_002439755.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__UBA6382;s__UBA6382 sp002439755	not type material	none	f	12	10	126118	196511	none	0	none	none	none	0	none	none	none	none	none	none	none	none	44472	62747	f	f	t	76408	99519	Scaffold	ASM243994v1	na	PRJNA348753	SAMN06456140	55	76408	Kenya	2017-10-04	GCA_002439945.1	derived from metagenome	full	UBA6382	feces	none	0	none	Prevotellaceae bacterium UBA6382	0	na	none	39	10	99519	66837	39027	2017/10/04	16	1952508	none	UBA6382	University of Queensland	1952508	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;x__unclassified Prevotellaceae;s__Prevotellaceae bacterium UBA6382	1136	2447148	none	none	none	2446012	0	DJQQ00000000.1	2038	39	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	1136	17	38	0
+GB_GCA_002448555.1	0	88.68	0	278	k__Bacteria (UID2569)	186	0	1894160	92.44016542170921	271	1130490	56.03031264249321	2049066	GB_GCA_002448555.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Flavobacteriales;f__UA16;g__UA16;s__UA16 sp002448555	not type material	none	f	61	47	38573	55856	none	0	none	none	none	0	none	none	none	none	none	none	none	none	7445	11197	f	f	t	11076	14632	Scaffold	ASM244855v1	na	PRJNA348753	SAMN06455095	271	11076	none	2017-10-05	GCA_002448555.1	derived from metagenome	full	UBA6969	saline water (ENVO:00002010); including plankton (ENVO:xxxxxxxx)	none	0	none	Flavobacteriales bacterium UBA6969	0	na	none	183	47	14632	9432	5558	2017/10/05	88	1951060	none	UBA6969	University of Queensland	1951060	d__Bacteria;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Flavobacteriia;o__Flavobacteriales;x__unclassified Flavobacteriales;s__Flavobacteriales bacterium UBA6969	31426	2049066	none	none	none	2017640	0	DJYV00000000.1	1917	183	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	31426	14	19	0
+GB_GCA_002373285.1	0	98.8	0.49	487	o__Bacteroidales (UID2716)	270	0	3342933	90.31746563517713	25	1833032	49.5290632982808	3701314	GB_GCA_900314655.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__Bacteroidaceae;g__Prevotella;s__Prevotella sp900314655	not type material	none	f	7	6	340025	397649	297941	1	300	DFKF01000002.1	297941	4	109	DFKF01000002.1	301	427	3.18e-118	92.359	FNUV01000014.1.2381	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;Prevotella ruminicola	148036	185065	f	f	t	203313	283256	Scaffold	ASM237328v1	na	PRJNA348753	SAMN06453981	25	203313	none	2017-09-26	GCA_002373285.1	derived from metagenome	full	UBA3652	low methane producing sheep	none	0	none	Prevotella sp. UBA3652	0	na	none	20	6	283256	249422	95781	2017/09/26	5	1947138	none	UBA3652	University of Queensland	1947138	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__Prevotellaceae;g__Prevotella;x__unclassified Prevotella;s__Prevotella sp. UBA3652	392	3701314	none	none	none	3700922	0	DFKF00000000.1	3064	20	167963	1	none	none	none	none	none	none	240	DFKF01000013.1	236	340	3.73e-92	92.797	FJ172841.1.1487	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Prevotellaceae;Prevotella;uncultured bacterium	392	19	46	0
+GB_GCA_002313435.1	16	84.08	2.3	316	p__Bacteroidetes (UID2605)	210	33.33	2539257	89.01019394826994	407	1447093	50.930109867523356	2852771	GB_GCA_002314195.1	f	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Bacteroidales;f__UBA932;g__Cryptobacteroides;s__Cryptobacteroides sp002314195	not type material	none	f	78	55	35093	78440	25328	1	1036	DCBI01000141.1	none	0	none	none	539	809	0	93.878	CDYK01020309.1522.4386	Bacteria;Bacteroidota;Bacteroidia;Bacteroidales;Rikenellaceae;Rikenellaceae RC9 gut group;gut metagenome	6981	12512	f	f	t	12489	16866	Scaffold	ASM231343v1	na	PRJNA348753	SAMN06454814	407	12489	Kenya	2017-09-20	GCA_002313435.1	derived from metagenome	full	UBA1111	feces	none	0	none	Bacteroidales bacterium UBA1111	0	na	none	228	55	16866	10520	5851	2017/09/20	179	1950376	none	UBA1111	University of Queensland	1950376	d__Bacteria;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;f__;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Bacteroidia;o__Bacteroidales;x__unclassified Bacteroidales;s__Bacteroidales bacterium UBA1111	11424	2852771	none	none	none	2841347	0	DCBI00000000.1	2394	228	none	0	none	none	none	none	none	none	none	none	none	none	none	none	none	none	11424	14	23	0
+GB_GCA_002344345.1	183	96.66	0.25	302	p__Bacteroidetes (UID2591)	202	0	3615675	83.29783565122254	231	1697428	39.12102449575527	4340659	GB_GCA_002344345.1	t	d__Bacteria;p__Bacteroidota;c__Bacteroidia;o__Chitinophagales;f__Saprospiraceae;g__UBA2365;s__UBA2365 sp002344345	not type material	none	f	48	46	95773	106491	19765	1	1964	DDTL01000034.1	none	0	none	none	1996	2039	0	85.621	AATN01000936.161.2994	Bacteria;Bacteroidota;Ignavibacteria;SJA-28;metagenome	18783	20969	f	f	t	29093	31568	Scaffold	ASM234434v1	na	PRJNA348753	SAMN06455966	231	29093	Australia: Brisbane; Thorneside Wastewater Treatment Plant	2017-09-22	GCA_002344345.1	derived from metagenome	full	UBA2365	activated sludge	none	0	none	Saprospiraceae bacterium UBA2365	0	na	none	207	46	31568	18246	9750	2017/09/22	24	1952870	none	UBA2365	University of Queensland	1952870	d__Bacteria;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;g__;s__	d__Bacteria;x__FCB group;x__Bacteroidetes/Chlorobi group;p__Bacteroidetes;c__Saprospiria;o__Saprospirales;f__Saprospiraceae;x__unclassified Saprospiraceae;s__Saprospiraceae bacterium UBA2365	1561	4340659	none	none	none	4339098	0	DDTL00000000.1	3382	207	19765	1	none	none	none	none	none	none	1525	DDTL01000034.1	1493	2612	0	98.326	FJ716291.1.1496	Bacteria;Bacteroidota;Bacteroidia;Chitinophagales;Saprospiraceae;uncultured;uncultured bacterium	1561	19	34	0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool-data/gtdbtk_database_metadata_versioned.loc.sample	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,2 @@
+#value	name	version	path
+#test-gtdb	Test bac	214	test-db
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.sample	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,8 @@
+<?xml version="1.0"?>
+<tables>
+    <!-- Locations of taxonomy data downloaded from NCBI -->
+    <table name="gtdbtk_database_metadata_versioned" comment_char="#">
+        <columns>value, name, version, path</columns>
+        <file path="tool-data/gtdbtk_database_metadata_versioned.loc" />
+    </table>
+</tables>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.test	Sun Aug 25 14:55:35 2024 +0000
@@ -0,0 +1,8 @@
+<?xml version="1.0"?>
+<tables>
+        <!-- Locations of taxonomy data downloaded from NCBI -->
+    <table name="gtdbtk_database_metadata_versioned" comment_char="#">
+        <columns>value, name, version, path</columns>
+        <file path="${__HERE__}/test-data/gtdbtk_database_metadata_versioned.loc.test" />
+    </table>
+</tables>