# HG changeset patch # User clairetn # Date 1364204369 14400 # Node ID a53eb951b164fb8dc58ef5bb15932651d14e8c23 Uploaded diff -r 000000000000 -r a53eb951b164 detrprok_scripts/colorGff.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/colorGff.pl Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,69 @@ +#!/usr/bin/perl -w +### +# But : ajout ou modif de couleur d'un gff +# +# Entrees : fichier gff +# +# Sortie : gff affiche a l'ecran +# +###------------------------------------------------------ +use vars qw($USAGE); +use strict; + +=head1 NAME + +colorGff.pl - add or change color of a gff file + +=head1 SYNOPSIS + +% colorGff.pl -i file.gff -c color [-h] + +=head1 DESCRIPTION +This script will add or replace the 'color' tag of a gff formated file. + + -i|--input fileName gff input file name + -c|--color RGBcode RGB code for color + [-h|--help] help mode then die + +=head1 AUTHOR - Claire Toffano-Nioche - jan.11 + +=cut +#----------------------- +my ($fileName, $colorGff) = ("", "") ; + # command line check + foreach my $num (0 .. $#ARGV) { + SWITCH: for ($ARGV[$num]) { + /--input|-i/ && do { + $fileName=$ARGV[$num+1]; + open ( fichierGff, "< $fileName" ) or die "Can't open gff file: \"$fileName\"\n" ; + last }; + /--color|-c/ && do { + $colorGff =$ARGV[$num+1]." ".$ARGV[$num+2]." ".$ARGV[$num+3]; + last }; + /--help|-h/ && do { exec("pod2text $0\n") ; die }; + } + } + + # informations retrieval + my @lines = ; + close fichierGff ; + # treatment + #print "gff file read ; number of lines : $#lines\n"; + for (my $i=0 ; $i <= $#lines ; $i++) { + if (defined ($lines[$i])) { + if (!($lines[$i] =~ m/^\s*$|^#/)) { # skip both null and comment lines + if ($lines[$i] =~ /;/) { + if ($lines[$i] =~ /color=/) { # replace value + $lines[$i] =~ s/color=.*;*/color=$colorGff;/ ; + } else { # add color tag and value + $lines[$i] =~ s/;/;color=$colorGff;/ ; + } + } else { # only one tag so no coma: add color tag + chomp($lines[$i]) ; + $lines[$i] .= "; color=".$colorGff.";\n"; + } + } + print $lines[$i]; + } + } +exit(0); diff -r 000000000000 -r a53eb951b164 detrprok_scripts/colorGff.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/colorGff.xml Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,27 @@ + + Add or replace a "color" tag to a gff format file. This tag is use by Artemis (the genome browser and annotation tool of Sanger Institute). + + colorGff.pl -i $referenciesFile -c $RGBcolor > $outputFile + + + + + + + + + + + + + + + + + + + + + + + diff -r 000000000000 -r a53eb951b164 detrprok_scripts/listGff.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/listGff.sh Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,3 @@ +#!/bin/bash +awk '!/^\s*$|^#/{print $3}' $1 | grep "[[:alpha:]]" | sort -n | uniq -c + diff -r 000000000000 -r a53eb951b164 detrprok_scripts/listGff.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/listGff.xml Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,21 @@ + + List and count features (column 3) of a gff file + + listGff.sh $referenciesFile > $outputFile + + + + + + + + + + + + + + + + + diff -r 000000000000 -r a53eb951b164 detrprok_scripts/splitTranscriptGff.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/splitTranscriptGff.pl Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,197 @@ +#!/usr/bin/perl -w +### +# But : croiser +# +# Entrees : 2 fichiers gff à croiser +# +# Sortie : gff affiche a l'ecran +# +###------------------------------------------------------ +use vars qw($USAGE); +use strict; + +=head1 NAME + +splitTranscriptGff.pl - compare 2 input gff files and define intervalls by couple of overlapping elements + +=head1 SYNOPSIS + +% intervallsExtractorGff.pl -i file1.gff -j file2.gff -s strand [-h] + +=head1 DESCRIPTION +This script will sort 2 gff files and compute distance between 2 successives lines. + + -i|--input1 fileName gff input file name: included elements + -j|--input2 fileName gff input file name: extended elements + [-s|--strand] [s|d] s for single strand (colinear) or d for double strands (antisense) [default d] + [-h|--help] help mode then die + +=head1 USECASE +Compare 2 input gff files: an annotations file (included elements) and transcription units file (extended elements). +For each couple of overlapping elements, split the transcription unit in 5'utr, CDS, 3'utr or "operon" in case of successives genes included in the transcription unit. + +=head1 KWON BUG +Fisrt and last elements on the genome sequence can be misclassified in the result file. + +=head1 AUTHOR +Claire Toffano-Nioche - sep.11 + +=cut +#----------------------- +sub feedPositionTab { my ($val, $pF, $pB, @info) = @_ ; + #print "feedPositionTab::$#info, ", ($#info+1)/4," \n"; + for (my $i=0 ; $i <= $#info ; $i+=4) { # for each extended element + #print "....$info[$i+2]\n"; + if ($info[$i+3] =~ /\+/) { + for (my $c = $info[$i+1] ; $c <= $info[$i+2] ; $c++) { @$pF[$c]=$val } ; # Forward sequence + } else { + for (my $c = $info[$i+1] ; $c <= $info[$i+2] ; $c++) { @$pB[$c]=$val } ; # Backward sequence + } + } + #print "feedPos...:: ", join(".", @$pF[0..100]), "\n"; + #print "feedPos...:: ", join(".", @$pB[0..100]), "\n"; +} +#----------------------- +sub recupInfo { my ($pInfo, @lines) = @_ ; + my $i=0 ; + while ($i<=$#lines){ + chomp($lines[$i]); + my @line = split("\t",$lines[$i]); + if (defined ($line[0])) { + if (!($line[0] =~ m/^\s*$|^#/)) { # skip both null and comment lines + push(@$pInfo, $line[0], $line[3], $line[4], $line[6]) ; # 0=name, 3=begin, 4=end, 6=strand + } + } + $i=$i+1 ; + } + #print "recupInfo::end=", $i, "\n" ; +} +#----------------------- +sub tagName { my ($seqN, $posB, $posE, $strand) = @_ ; + my $tagN=$seqN.$strand.$posB."..".$posE; + #print "tagName::",join("_",@_)," and tagName:$tagN\n"; +return $tagN; +} +#----------------------- +sub transitionAnalysis { +my ($pos, $seq, $s, $pdebAmont, $pfinAmont, $pdebIn, $pfinIn, $pdebAval, $pfinAval, $ptag) = @_ ; + my $enCours = @$ptag[$pos] ; + my $precedant = ($s =~ /\+/?@$ptag[$pos-1]:@$ptag[$pos+1]) ; + if ($enCours ne $precedant) { + #print "transi...:: $s, $pos, $precedant, $enCours\n"; + #print "transition::$$pdebAmont, $$pfinAmont, $$pdebIn, $$pfinIn, $$pdebAval, $$pfinAval\n"; + SWITCH: for ($precedant.$enCours) { + /01/ && do { $$pdebAmont = $pos ; last SWITCH ;}; + /02/ && do { $$pdebIn = $pos ; last SWITCH ;}; + /10/ && do { $$pfinAval = ($s =~/\+/?$pos-1:$pos+1) ; + if (($s =~ /\+/)and ($$pdebAval!=$$pfinAval)) { + printf "%s\tsplit\tutr3\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $$pdebAval, $$pfinAval, $s, &tagName($seq, $$pdebAval, $$pfinAval, $s) ; + #if ($$pdebAval==$$pfinAval) { print "transition 10 +\n"}; + } elsif ($$pfinAval!=$$pdebAval) { + printf "%s\tsplit\tutr3\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $$pfinAval, $$pdebAval, $s, &tagName($seq, $$pfinAval, $$pdebAval, $s) ; + #if ($$pfinAval==$$pdebAval){ print "transition 10 -\n"}; + } + $$pdebAval = 0 ; $$pfinAval = 0 ; + last SWITCH ; + }; + /12/ && do { $$pdebIn = $pos ; $$pfinAmont=($s =~/\+/?$pos-1:$pos+1) ; + my $type="utr5"; + if ($$pdebAmont == 0) { # in case of interOperon : utr5-CDS-interOperon-CDS-utr3 + $$pdebAmont=($s =~/\+/?$$pfinIn+1:$$pfinIn-1) ; + $type="operon" ; + } + if (($s =~ /\+/) and ($$pdebAmont!=$$pfinAmont)) { + printf "%s\tsplit\t%s\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $type, $$pdebAmont, $$pfinAmont, $s, &tagName($seq, $$pdebAmont, $$pfinAmont, $s) ; + # if ($$pdebAmont==$$pfinAmont) { print "transition 12 +\n"}; + } elsif ($$pfinAmont!=$$pdebAmont) { + printf "%s\tsplit\t%s\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $type, $$pfinAmont, $$pdebAmont, $s, &tagName($seq, $$pfinAmont, $$pdebAmont, $s) ; + #if ($$pfinAmont==$$pdebAmont) { print "transition 12 -\n"} ; + } + $$pdebAmont = 0 ; $$pfinAmont = 0 ; + last SWITCH ; + }; + /20/ && do { $$pfinIn=($s =~/\+/?$pos-1:$pos+1) ; + if (($s =~ /\+/) and ($$pdebIn!=$$pfinIn)) { + printf "%s\tsplit\tgene\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $$pdebIn, $$pfinIn, $s, &tagName($seq, $$pdebIn, $$pfinIn, $s) ; + } elsif ($$pfinIn!=$$pdebIn) { + printf "%s\tsplit\tgene\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $$pfinIn, $$pdebIn, $s, &tagName($seq, $$pfinIn, $$pdebIn, $s) ; + } + $$pdebIn = 0 ; $$pfinIn = 0 ; + last SWITCH ; + }; + /21/ && do { $$pdebAval=$pos ; $$pfinIn=($s =~/\+/?$pos-1:$pos+1) ; + if (($s =~ /\+/) and ($$pdebIn!=$$pfinIn)) { + printf "%s\tsplit\tgene\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $$pdebIn, $$pfinIn, $s, &tagName($seq, $$pdebIn, $$pfinIn, $s) ; + } elsif ($$pfinIn!=$$pdebIn) { + printf "%s\tsplit\tgene\t%s\t%s\t.\t%s\t.\tName=%s;\n", + $seq, $$pfinIn, $$pdebIn, $s, &tagName($seq, $$pfinIn, $$pdebIn, $s) ; + } + #$$pdebIn = 0 ; $$pfinIn = 0 ; + last SWITCH ; + }; + } + } + } +#----------------------- +my ($fileNameI, $fileNameE, $strand) = ("", "", 0) ; +# command line check +foreach my $num (0 .. $#ARGV) { + SWITCH: for ($ARGV[$num]) { + /--input1|-i/ && do { + $fileNameI=$ARGV[$num+1]; + open ( fichierGffI, "< $fileNameI" ) or die "Can't open gff file: \"$fileNameI\"\n" ; + last }; + /--input2|-j/ && do { + $fileNameE=$ARGV[$num+1]; + open ( fichierGffE, "< $fileNameE" ) or die "Can't open gff file: \"$fileNameE\"\n" ; + last }; + /--strand|-s/ && do { + if ($ARGV[$num+1] eq "s") { $strand=1}; + last }; + /--help|-h/ && do { exec("pod2text $0\n") ; die }; + } +} +# memory declarations: +my @infoI ; my @infoE ; +my $seqName ; +my @tagF ; my @tagB ; # for Forward and Backward sequences +# data retrieval: +my @linesI = ; my @linesE = ; +close fichierGffI ; close fichierGffE ; + #print "gff files read ; number of lines : ",$#linesI+1," + ",$#linesE+1,"\n"; +# positions management: +&recupInfo(\@infoI, @linesI) ; + #print "number of treated elements:",($#infoI+1)/4,"\n"; +&recupInfo(\@infoE, @linesE) ; + #print "number of treated elements:",($#infoE+1)/4,"\n"; +# treatement: +# transform gff lines into chromosomal position tags : 0 for nothing, 1 resp. 2 for extended resp. included elements +if (($#infoI) and ($#infoE)) { + $seqName=$infoI[0] ; + #print "end : $infoE[$#infoE-1]\n"; + for (my $i=0 ; $i <= $infoE[$#infoE-1] ; $i++) { $tagF[$i] = 0 ; $tagB[$i] = 0 ; } ; # "O" tag in all chr. positions + #print "seqName : $seqName\n" ; + &feedPositionTab(1, \@tagF, \@tagB, @infoE) ; # "1" tag for all extended elements + &feedPositionTab(2, \@tagF, \@tagB, @infoI) ; # "2" tag for all included elements + #print join("", @tagF), "\n"; + #print join("", @tagB), "\n"; + # transition management: + my ($beginUpstream, $endUpstream, $beginIncluded, $endIncluded, $beginDownstream, $endDownstream) + = (0, 0, 0, 0, 0, 0) ; + for (my $i=1 ; $i <= $#tagF-1 ; $i+=1) { + &transitionAnalysis($i, $seqName, "+", \$beginUpstream, \$endUpstream, \$beginIncluded, \$endIncluded, \$beginDownstream, \$endDownstream, \@tagF) ; + } + ($beginUpstream, $endUpstream, $beginIncluded, $endIncluded, $beginDownstream, $endDownstream) + = ($infoE[$#infoE-1], $infoE[$#infoE-1], $infoE[$#infoE-1], $infoE[$#infoE-1], $infoE[$#infoE-1], $infoE[$#infoE-1]) ; + for (my $i=$#tagB-1 ; $i >= 1 ; $i-=1) { + &transitionAnalysis($i, $seqName, "-", \$beginUpstream, \$endUpstream, \$beginIncluded, \$endIncluded, \$beginDownstream, \$endDownstream, \@tagB) ; + } +} +exit(0) ; diff -r 000000000000 -r a53eb951b164 detrprok_scripts/splitTranscriptGff.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/splitTranscriptGff.xml Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,27 @@ + + Define UTRs and intergenic operonic regions from a transcript file and following a reference file + + splitTranscriptGff.pl -i $referenciesFile -j $transcriptsFile > $outputFile + + + + + + + + + + + + + + + + + + + + + Note that inputs files should be sorted by increasing positions and that referencies should be included in transcripts. + + diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/colorGff_Reference.gff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/colorGff_Reference.gff Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,10 @@ +##gff-version 3 +#!gff-spec-version 1.20 +#!processor NCBI annotwriter +##sequence-region NC_007795.1 1 28213 +##species http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=93061 +NC_007795.1 RefSeq region 1 28213 . + . ID=id0;Dbxref=taxon:93061;Is_circular=true;gbkey=Src;genome=chromosome;mol_type=genomic DNA;strain=NCTC 8325;sub-species=aureus +NC_007795.1 RefSeq gene 517 1878 . + . ID=gene0;Name=dnaA;Dbxref=GeneID:3919798;gbkey=Gene;gene=dnaA;locus_tag=SAOUHSC_00001;color=127 255 312 +NC_007795.1 RefSeq CDS 517 1878 . + 0 ID=cds0;Name=YP_498609.1;Parent=gene0;Note=binds to the dnaA-box as an ATP-bound complex at the origin of replication during the initiation of chromosomal replication%3B can also affect transcription of multiple genes including itself.;Dbxref=Genbank:YP_498609.1,GeneID:3919798;gbkey=CDS;product=chromosomal replication initiation protein;protein_id=YP_498609.1;transl_table=11 +NC_007795.1 RefSeq gene 2156 3289 . + . ID=gene1;Name=SAOUHSC_00002;Dbxref=GeneID:3919799;gbkey=Gene;locus_tag=SAOUHSC_00002;color=127 255 312; +NC_007795.1 RefSeq CDS 2156 3289 . + 0 ID=cds1;Name=YP_498610.1;Parent=gene1;Note=binds the polymerase to DNA and acts as a sliding clamp;Dbxref=Genbank:YP_498610.1,GeneID:3919799;gbkey=CDS;color=127 255 312;product=DNA polymerase III subunit beta;protein_id=YP_498610.1;transl_table=11 diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/colorGff_Result.gff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/colorGff_Result.gff Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,10 @@ +##gff-version 3 +#!gff-spec-version 1.20 +#!processor NCBI annotwriter +##sequence-region NC_007795.1 1 28213 +##species http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=93061 +NC_007795.1 RefSeq region 1 28213 . + . ID=id0;color=255 0 100;Dbxref=taxon:93061;Is_circular=true;gbkey=Src;genome=chromosome;mol_type=genomic DNA;strain=NCTC 8325;sub-species=aureus +NC_007795.1 RefSeq gene 517 1878 . + . ID=gene0;Name=dnaA;Dbxref=GeneID:3919798;gbkey=Gene;gene=dnaA;locus_tag=SAOUHSC_00001;color=255 0 100; +NC_007795.1 RefSeq CDS 517 1878 . + 0 ID=cds0;color=255 0 100;Name=YP_498609.1;Parent=gene0;Note=binds to the dnaA-box as an ATP-bound complex at the origin of replication during the initiation of chromosomal replication%3B can also affect transcription of multiple genes including itself.;Dbxref=Genbank:YP_498609.1,GeneID:3919798;gbkey=CDS;product=chromosomal replication initiation protein;protein_id=YP_498609.1;transl_table=11 +NC_007795.1 RefSeq gene 2156 3289 . + . ID=gene1;Name=SAOUHSC_00002;Dbxref=GeneID:3919799;gbkey=Gene;locus_tag=SAOUHSC_00002;color=255 0 100; +NC_007795.1 RefSeq CDS 2156 3289 . + 0 ID=cds1;Name=YP_498610.1;Parent=gene1;Note=binds the polymerase to DNA and acts as a sliding clamp;Dbxref=Genbank:YP_498610.1,GeneID:3919799;gbkey=CDS;color=255 0 100; diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/listGff_Reference.gff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/listGff_Reference.gff Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,1581 @@ +NC_011744 S-MART CDS 409 4831 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394608.1;Dbxref=Genbank:YP_002394608.1,GeneID:7137318;ID=cds2;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1 +NC_011744 S-MART exon 409 1626 . + . ID=cds2-exon1;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1-exon1;Parent=cds2 +NC_011744 S-MART exon 1632 2606 . + . ID=cds2-exon2;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1-exon2;Parent=cds2 +NC_011744 S-MART exon 2699 4831 . + . ID=cds2-exon3;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1-exon3;Parent=cds2 +NC_011744 S-MART CDS 5362 7032 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394609.1;Dbxref=Genbank:YP_002394609.1,GeneID:7137319;ID=cds3;Name=YP_002394609.1 +NC_011744 S-MART CDS 7180 16787 . - . product=Signal transduction histidine kinase regulating C4-dicarboxylate transport system;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394615.1;Dbxref=Genbank:YP_002394615.1,GeneID:7137325;ID=cds9;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1 +NC_011744 S-MART exon 7180 9294 . - . ID=cds9-exon1;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon1;Parent=cds9 +NC_011744 S-MART exon 9312 11222 . - . ID=cds9-exon2;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon2;Parent=cds9 +NC_011744 S-MART exon 11228 11896 . - . ID=cds9-exon3;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon3;Parent=cds9 +NC_011744 S-MART exon 11956 13347 . - . ID=cds9-exon4;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon4;Parent=cds9 +NC_011744 S-MART exon 13460 14773 . - . ID=cds9-exon5;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon5;Parent=cds9 +NC_011744 S-MART exon 14865 16787 . - . ID=cds9-exon6;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon6;Parent=cds9 +NC_011744 S-MART CDS 16954 17589 . + . product=pyridoxamine 5%27-phosphate oxidase;transl_table=11;Note=catalyzes the formation of pyridoxal 5%27-phosphate from pyridoxamine 5%27-phosphate;gbkey=CDS;protein_id=YP_002394616.1;Dbxref=Genbank:YP_002394616.1,GeneID:7137326;ID=cds10;Name=YP_002394616.1 +NC_011744 S-MART CDS 17694 18476 . - . product=LuxR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394617.1;Dbxref=Genbank:YP_002394617.1,GeneID:7137327;ID=cds11;Name=YP_002394617.1 +NC_011744 S-MART CDS 18853 20682 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394618.1;Dbxref=Genbank:YP_002394618.1,GeneID:7137328;ID=cds12;Name=YP_002394618.1 +NC_011744 S-MART CDS 20840 21961 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394619.1;Dbxref=Genbank:YP_002394619.1,GeneID:7137329;ID=cds13;Name=YP_002394619.1 +NC_011744 S-MART CDS 22321 22524 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394620.1;Dbxref=Genbank:YP_002394620.1,GeneID:7137330;ID=cds14;Name=YP_002394620.1 +NC_011744 S-MART CDS 22448 23272 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394621.1;Dbxref=Genbank:YP_002394621.1,GeneID:7137331;ID=cds15;Name=YP_002394621.1 +NC_011744 S-MART CDS 23454 27325 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394623.1;Dbxref=Genbank:YP_002394623.1,GeneID:7137333;ID=cds17;Name=YP_002394623.1--YP_002394622.1 +NC_011744 S-MART exon 23454 26609 . + . ID=cds17-exon1;Name=YP_002394623.1--YP_002394622.1-exon1;Parent=cds17 +NC_011744 S-MART exon 26621 27325 . + . ID=cds17-exon2;Name=YP_002394623.1--YP_002394622.1-exon2;Parent=cds17 +NC_011744 S-MART CDS 27509 29002 . + . product=Sodium%2Fproline symporter;transl_table=11;gbkey=CDS;protein_id=YP_002394624.1;Dbxref=Genbank:YP_002394624.1,GeneID:7137334;ID=cds18;Name=YP_002394624.1 +NC_011744 S-MART CDS 29390 29614 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394625.1;Dbxref=Genbank:YP_002394625.1,GeneID:7137335;ID=cds19;Name=YP_002394625.1 +NC_011744 S-MART CDS 29677 29847 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394626.1;Dbxref=Genbank:YP_002394626.1,GeneID:7137336;ID=cds20;Name=YP_002394626.1 +NC_011744 S-MART CDS 30127 30615 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394627.1;Dbxref=Genbank:YP_002394627.1,GeneID:7137337;ID=cds21;Name=YP_002394627.1 +NC_011744 S-MART CDS 30726 31430 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394628.1;Dbxref=Genbank:YP_002394628.1,GeneID:7137338;ID=cds22;Name=YP_002394628.1 +NC_011744 S-MART CDS 31728 33578 . - . product=ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002394629.1;Dbxref=Genbank:YP_002394629.1,GeneID:7137339;ID=cds23;Name=YP_002394629.1 +NC_011744 S-MART CDS 34145 35119 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394630.1;Dbxref=Genbank:YP_002394630.1,GeneID:7137340;ID=cds24;Name=YP_002394630.1 +NC_011744 S-MART CDS 35271 36858 . - . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394632.1;Dbxref=Genbank:YP_002394632.1,GeneID:7137342;ID=cds26;Name=YP_002394632.1--YP_002394631.1 +NC_011744 S-MART exon 35271 35903 . - . ID=cds26-exon1;Name=YP_002394632.1--YP_002394631.1-exon1;Parent=cds26 +NC_011744 S-MART exon 36019 36858 . - . ID=cds26-exon2;Name=YP_002394632.1--YP_002394631.1-exon2;Parent=cds26 +NC_011744 S-MART CDS 37057 37881 . - . product=transferase;transl_table=11;gbkey=CDS;protein_id=YP_002394633.1;Dbxref=Genbank:YP_002394633.1,GeneID:7137343;ID=cds27;Name=YP_002394633.1 +NC_011744 S-MART CDS 38102 39724 . - . product=membrane-associated%2C metal-dependent hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394634.1;Dbxref=Genbank:YP_002394634.1,GeneID:7137344;ID=cds28;Name=YP_002394634.1 +NC_011744 S-MART CDS 39954 40544 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394635.1;Dbxref=Genbank:YP_002394635.1,GeneID:7137345;ID=cds29;Name=YP_002394635.1 +NC_011744 S-MART CDS 40887 41426 . + . product=amidase;transl_table=11;gbkey=CDS;protein_id=YP_002394636.1;Dbxref=Genbank:YP_002394636.1,GeneID:7137346;ID=cds30;Name=YP_002394636.1 +NC_011744 S-MART CDS 41423 43678 . - . product=amino acid aldolase or racemase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394638.1;Dbxref=Genbank:YP_002394638.1,GeneID:7137348;ID=cds32;Name=YP_002394638.1--YP_002394637.1 +NC_011744 S-MART exon 41423 42286 . - . ID=cds32-exon1;Name=YP_002394638.1--YP_002394637.1-exon1;Parent=cds32 +NC_011744 S-MART exon 42404 43678 . - . ID=cds32-exon2;Name=YP_002394638.1--YP_002394637.1-exon2;Parent=cds32 +NC_011744 S-MART CDS 43855 45801 . + . product=translation initiationinhibitor%2C yjgF family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394640.1;Dbxref=Genbank:YP_002394640.1,GeneID:7137350;ID=cds34;Name=YP_002394640.1--YP_002394639.1 +NC_011744 S-MART exon 43855 45288 . + . ID=cds34-exon1;Name=YP_002394640.1--YP_002394639.1-exon1;Parent=cds34 +NC_011744 S-MART exon 45409 45801 . + . ID=cds34-exon2;Name=YP_002394640.1--YP_002394639.1-exon2;Parent=cds34 +NC_011744 S-MART CDS 46007 49254 . + . product=keto-hydroxyglutarate-aldolase%2Fketo-deoxy-phosphogluconate aldolase;nbElements=3.000000;transl_table=11;Note=catalyzes the formation of pyruvate and glyoxylate from 4-hydroxy-2-oxoglutarate%3B or pyruvate and D-glyceraldehyde 3-phosphate from 2-dehydro-3-deoxy-D-glyconate 6-phosphate;gbkey=CDS;protein_id=YP_002394643.1;Dbxref=Genbank:YP_002394643.1,GeneID:7137353;ID=cds37;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1 +NC_011744 S-MART exon 46007 47521 . + . ID=cds37-exon1;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1-exon1;Parent=cds37 +NC_011744 S-MART exon 47652 48593 . + . ID=cds37-exon2;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1-exon2;Parent=cds37 +NC_011744 S-MART exon 48619 49254 . + . ID=cds37-exon3;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1-exon3;Parent=cds37 +NC_011744 S-MART CDS 49412 51862 . + . product=N-acetyl-beta-hexosaminidase;transl_table=11;gbkey=CDS;protein_id=YP_002394644.1;Dbxref=Genbank:YP_002394644.1,GeneID:7137354;ID=cds38;Name=YP_002394644.1 +NC_011744 S-MART CDS 52087 54567 . - . product=DNA-binding response regulator;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394647.1;Dbxref=Genbank:YP_002394647.1,GeneID:7137357;ID=cds41;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1 +NC_011744 S-MART exon 52087 52383 . - . ID=cds41-exon1;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1-exon1;Parent=cds41 +NC_011744 S-MART exon 52507 53826 . - . ID=cds41-exon2;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1-exon2;Parent=cds41 +NC_011744 S-MART exon 53863 54567 . - . ID=cds41-exon3;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1-exon3;Parent=cds41 +NC_011744 S-MART CDS 54927 57177 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394649.1;Dbxref=Genbank:YP_002394649.1,GeneID:7137359;ID=cds43;Name=YP_002394649.1--YP_002394648.1 +NC_011744 S-MART CDS 57403 58506 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394650.1;Dbxref=Genbank:YP_002394650.1,GeneID:7137360;ID=cds44;Name=YP_002394650.1 +NC_011744 S-MART CDS 58866 60065 . + . product=diaminopropionate ammonia-lyase;transl_table=11;Note=catalyzes the formation of pyruvate from 2%2C3-diaminopropionate;gbkey=CDS;protein_id=YP_002394651.1;Dbxref=Genbank:YP_002394651.1,GeneID:7137361;ID=cds45;Name=YP_002394651.1 +NC_011744 S-MART CDS 60250 60756 . - . product=Hypothetical transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394652.1;Dbxref=Genbank:YP_002394652.1,GeneID:7137362;ID=cds46;Name=YP_002394652.1 +NC_011744 S-MART CDS 61052 63159 . + . product=amidohydrolase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394654.1;Dbxref=Genbank:YP_002394654.1,GeneID:7137364;ID=cds48;Name=YP_002394654.1--YP_002394653.1 +NC_011744 S-MART exon 61052 61846 . + . ID=cds48-exon1;Name=YP_002394654.1--YP_002394653.1-exon1;Parent=cds48 +NC_011744 S-MART exon 61948 63159 . + . ID=cds48-exon2;Name=YP_002394654.1--YP_002394653.1-exon2;Parent=cds48 +NC_011744 S-MART CDS 63377 67642 . + . product=Metallopeptidase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394658.1;Dbxref=Genbank:YP_002394658.1,GeneID:7137368;ID=cds52;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1 +NC_011744 S-MART exon 63377 64420 . + . ID=cds52-exon1;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1-exon1;Parent=cds52 +NC_011744 S-MART exon 64541 66423 . + . ID=cds52-exon2;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1-exon2;Parent=cds52 +NC_011744 S-MART exon 66461 67642 . + . ID=cds52-exon3;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1-exon3;Parent=cds52 +NC_011744 S-MART CDS 68078 75324 . + . product=ABC transporter ATP-binding protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394664.1;Dbxref=Genbank:YP_002394664.1,GeneID:7137374;ID=cds58;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1 +NC_011744 S-MART exon 68078 68680 . + . ID=cds58-exon1;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon1;Parent=cds58 +NC_011744 S-MART exon 68797 70257 . + . ID=cds58-exon2;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon2;Parent=cds58 +NC_011744 S-MART exon 70330 72042 . + . ID=cds58-exon3;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon3;Parent=cds58 +NC_011744 S-MART exon 72186 73157 . + . ID=cds58-exon4;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon4;Parent=cds58 +NC_011744 S-MART exon 73265 74107 . + . ID=cds58-exon5;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon5;Parent=cds58 +NC_011744 S-MART exon 74137 75324 . + . ID=cds58-exon6;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon6;Parent=cds58 +NC_011744 S-MART CDS 75688 76170 . + . product=MarR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394665.1;Dbxref=Genbank:YP_002394665.1,GeneID:7137375;ID=cds59;Name=YP_002394665.1 +NC_011744 S-MART CDS 76628 77284 . + . product=quinolone resistance determinant;transl_table=11;gbkey=CDS;protein_id=YP_002394666.1;Dbxref=Genbank:YP_002394666.1,GeneID:7137376;ID=cds60;Name=YP_002394666.1 +NC_011744 S-MART CDS 77461 77685 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394667.1;Dbxref=Genbank:YP_002394667.1,GeneID:7137377;ID=cds61;Name=YP_002394667.1 +NC_011744 S-MART CDS 78060 78320 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394668.1;Dbxref=Genbank:YP_002394668.1,GeneID:7137378;ID=cds62;Name=YP_002394668.1 +NC_011744 S-MART CDS 78790 82528 . + . product=aspartate kinase;nbElements=4.000000;transl_table=11;Note=catalyzes the formation of 4-phospho-L-aspartate from L-aspartate and ATP;gbkey=CDS;protein_id=YP_002394672.1;Dbxref=Genbank:YP_002394672.1,GeneID:7137382;ID=cds66;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1 +NC_011744 S-MART exon 78790 79323 . + . ID=cds66-exon1;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon1;Parent=cds66 +NC_011744 S-MART exon 79359 80624 . + . ID=cds66-exon2;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon2;Parent=cds66 +NC_011744 S-MART exon 80638 81024 . + . ID=cds66-exon3;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon3;Parent=cds66 +NC_011744 S-MART exon 81104 82528 . + . ID=cds66-exon4;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon4;Parent=cds66 +NC_011744 S-MART CDS 82754 84273 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394674.1;Dbxref=Genbank:YP_002394674.1,GeneID:7137384;ID=cds68;Name=YP_002394674.1--YP_002394673.1 +NC_011744 S-MART exon 82754 83377 . + . ID=cds68-exon1;Name=YP_002394674.1--YP_002394673.1-exon1;Parent=cds68 +NC_011744 S-MART exon 83458 84273 . + . ID=cds68-exon2;Name=YP_002394674.1--YP_002394673.1-exon2;Parent=cds68 +NC_011744 S-MART CDS 84373 84948 . - . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394675.1;Dbxref=Genbank:YP_002394675.1,GeneID:7137385;ID=cds69;Name=YP_002394675.1 +NC_011744 S-MART CDS 85279 86277 . - . product=adenosine deaminase;transl_table=11;Note=catalyzes the formation of inosine from adenosine;gbkey=CDS;protein_id=YP_002394676.1;Dbxref=Genbank:YP_002394676.1,GeneID:7137386;ID=cds70;Name=YP_002394676.1 +NC_011744 S-MART CDS 86398 88921 . + . product=Glutathione synthetase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394678.1;Dbxref=Genbank:YP_002394678.1,GeneID:7137388;ID=cds72;Name=YP_002394678.1--YP_002394677.1 +NC_011744 S-MART exon 86398 87333 . + . ID=cds72-exon1;Name=YP_002394678.1--YP_002394677.1-exon1;Parent=cds72 +NC_011744 S-MART exon 87470 88921 . + . ID=cds72-exon2;Name=YP_002394678.1--YP_002394677.1-exon2;Parent=cds72 +NC_011744 S-MART CDS 88922 92825 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394682.1;Dbxref=Genbank:YP_002394682.1,GeneID:7137392;ID=cds76;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1 +NC_011744 S-MART exon 88922 90430 . - . ID=cds76-exon1;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon1;Parent=cds76 +NC_011744 S-MART exon 90441 91505 . - . ID=cds76-exon2;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon2;Parent=cds76 +NC_011744 S-MART exon 91565 92470 . - . ID=cds76-exon3;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon3;Parent=cds76 +NC_011744 S-MART exon 92598 92825 . - . ID=cds76-exon4;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon4;Parent=cds76 +NC_011744 S-MART CDS 92897 93433 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394683.1;Dbxref=Genbank:YP_002394683.1,GeneID:7137393;ID=cds77;Name=YP_002394683.1 +NC_011744 S-MART CDS 93618 93836 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394684.1;Dbxref=Genbank:YP_002394684.1,GeneID:7137394;ID=cds78;Name=YP_002394684.1 +NC_011744 S-MART CDS 93893 94486 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394685.1;Dbxref=Genbank:YP_002394685.1,GeneID:7137395;ID=cds79;Name=YP_002394685.1 +NC_011744 S-MART CDS 94865 96993 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394687.1;Dbxref=Genbank:YP_002394687.1,GeneID:7137397;ID=cds81;Name=YP_002394687.1--YP_002394686.1 +NC_011744 S-MART CDS 97330 98777 . + . product=lipoate-protein ligase A;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394690.1;Dbxref=Genbank:YP_002394690.1,GeneID:7137400;ID=cds84;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1 +NC_011744 S-MART exon 97330 97895 . + . ID=cds84-exon1;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1-exon1;Parent=cds84 +NC_011744 S-MART exon 98040 98777 . + . ID=cds84-exon2;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1-exon2;Parent=cds84 +NC_011744 S-MART CDS 98945 99784 . - . product=oxidoreductase;transl_table=11;gbkey=CDS;protein_id=YP_002394691.1;Dbxref=Genbank:YP_002394691.1,GeneID:7137401;ID=cds85;Name=YP_002394691.1 +NC_011744 S-MART CDS 99962 103402 . - . product=hydrolase%2C metallo-beta-lactamase superfamily;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394694.1;Dbxref=Genbank:YP_002394694.1,GeneID:7137404;ID=cds88;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1 +NC_011744 S-MART exon 99962 101184 . - . ID=cds88-exon1;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1-exon1;Parent=cds88 +NC_011744 S-MART exon 101330 103402 . - . ID=cds88-exon2;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1-exon2;Parent=cds88 +NC_011744 S-MART CDS 103591 104505 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394695.1;Dbxref=Genbank:YP_002394695.1,GeneID:7137405;ID=cds89;Name=YP_002394695.1 +NC_011744 S-MART CDS 104593 105597 . - . product=Transporter%2C drug%2Fmetabolite exporter family;transl_table=11;gbkey=CDS;protein_id=YP_002394696.1;Dbxref=Genbank:YP_002394696.1,GeneID:7137406;ID=cds90;Name=YP_002394696.1 +NC_011744 S-MART CDS 105690 106655 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394698.1;Dbxref=Genbank:YP_002394698.1,GeneID:7137408;ID=cds92;Name=YP_002394698.1--YP_002394697.1 +NC_011744 S-MART exon 105690 106079 . + . ID=cds92-exon1;Name=YP_002394698.1--YP_002394697.1-exon1;Parent=cds92 +NC_011744 S-MART exon 106131 106655 . + . ID=cds92-exon2;Name=YP_002394698.1--YP_002394697.1-exon2;Parent=cds92 +NC_011744 S-MART CDS 106826 109364 . + . product=LacI-family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394700.1;Dbxref=Genbank:YP_002394700.1,GeneID:7137410;ID=cds94;Name=YP_002394700.1--YP_002394699.1 +NC_011744 S-MART exon 106826 108265 . + . ID=cds94-exon1;Name=YP_002394700.1--YP_002394699.1-exon1;Parent=cds94 +NC_011744 S-MART exon 108366 109364 . + . ID=cds94-exon2;Name=YP_002394700.1--YP_002394699.1-exon2;Parent=cds94 +NC_011744 S-MART CDS 109568 110131 . + . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394701.1;Dbxref=Genbank:YP_002394701.1,GeneID:7137411;ID=cds95;Name=YP_002394701.1 +NC_011744 S-MART CDS 110231 111424 . - . product=transmembrane efflux transmembrane protein;transl_table=11;gbkey=CDS;protein_id=YP_002394702.1;Dbxref=Genbank:YP_002394702.1,GeneID:7137412;ID=cds96;Name=YP_002394702.1 +NC_011744 S-MART CDS 111700 112581 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394703.1;Dbxref=Genbank:YP_002394703.1,GeneID:7137413;ID=cds97;Name=YP_002394703.1 +NC_011744 S-MART CDS 112703 113697 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394705.1;Dbxref=Genbank:YP_002394705.1,GeneID:7137415;ID=cds99;Name=YP_002394705.1--YP_002394704.1 +NC_011744 S-MART exon 112703 113062 . - . ID=cds99-exon1;Name=YP_002394705.1--YP_002394704.1-exon1;Parent=cds99 +NC_011744 S-MART exon 113200 113697 . - . ID=cds99-exon2;Name=YP_002394705.1--YP_002394704.1-exon2;Parent=cds99 +NC_011744 S-MART CDS 113921 114712 . - . product=plasmid-related protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type h : extrachromosomal origin;gbkey=CDS;protein_id=YP_002394706.1;Dbxref=Genbank:YP_002394706.1,GeneID:7137416;ID=cds100;Name=YP_002394706.1 +NC_011744 S-MART CDS 114873 115439 . - . product=dihydrofolate reductase;transl_table=11;gbkey=CDS;protein_id=YP_002394707.1;Dbxref=Genbank:YP_002394707.1,GeneID:7137417;ID=cds101;Name=YP_002394707.1 +NC_011744 S-MART CDS 115500 116063 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394708.1;Dbxref=Genbank:YP_002394708.1,GeneID:7137418;ID=cds102;Name=YP_002394708.1 +NC_011744 S-MART CDS 116223 117755 . + . product=phospholipase D;transl_table=11;gbkey=CDS;protein_id=YP_002394709.1;Dbxref=Genbank:YP_002394709.1,GeneID:7137419;ID=cds103;Name=YP_002394709.1 +NC_011744 S-MART CDS 117879 118601 . - . product=nitroreductase A;transl_table=11;Note=NADPH-dependent%3B oxygen-insensitive%3B catalyzes the reduction of nitroaromatic compounds;gbkey=CDS;protein_id=YP_002394710.1;Dbxref=Genbank:YP_002394710.1,GeneID:7137420;ID=cds104;Name=YP_002394710.1 +NC_011744 S-MART CDS 118880 120124 . + . product=NADH oxidase;transl_table=11;gbkey=CDS;protein_id=YP_002394711.1;Dbxref=Genbank:YP_002394711.1,GeneID:7137421;ID=cds105;Name=YP_002394711.1 +NC_011744 S-MART CDS 120342 121256 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394712.1;Dbxref=Genbank:YP_002394712.1,GeneID:7137422;ID=cds106;Name=YP_002394712.1 +NC_011744 S-MART CDS 121363 122403 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394713.1;Dbxref=Genbank:YP_002394713.1,GeneID:7137423;ID=cds107;Name=YP_002394713.1 +NC_011744 S-MART CDS 123070 123306 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394714.1;Dbxref=Genbank:YP_002394714.1,GeneID:7137424;ID=cds108;Name=YP_002394714.1 +NC_011744 S-MART CDS 123588 125222 . - . product=glycerol-3-phosphate dehydrogenase;transl_table=11;Note=in Escherichia coli this homodimeric enzyme is expressed under aerobic conditions%3B anaerobic expression is repressed by the arcAB system%3B converts sn-glycerol-3-phosphate and ubiquinone-8 to dihydroxy acetone phosphate and ubiquinol-8%3B associates with the cytoplasmic membrane;gbkey=CDS;protein_id=YP_002394715.1;Dbxref=Genbank:YP_002394715.1,GeneID:7137425;ID=cds109;Name=YP_002394715.1 +NC_011744 S-MART CDS 125434 126219 . - . product=Transcriptional regulator%2C DeoR family;transl_table=11;gbkey=CDS;protein_id=YP_002394716.1;Dbxref=Genbank:YP_002394716.1,GeneID:7137426;ID=cds110;Name=YP_002394716.1 +NC_011744 S-MART CDS 126512 128949 . - . product=Glycerol uptake facilitator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394718.1;Dbxref=Genbank:YP_002394718.1,GeneID:7137428;ID=cds112;Name=YP_002394718.1--YP_002394717.1 +NC_011744 S-MART exon 126512 128035 . - . ID=cds112-exon1;Name=YP_002394718.1--YP_002394717.1-exon1;Parent=cds112 +NC_011744 S-MART exon 128095 128949 . - . ID=cds112-exon2;Name=YP_002394718.1--YP_002394717.1-exon2;Parent=cds112 +NC_011744 S-MART CDS 129398 129829 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394719.1;Dbxref=Genbank:YP_002394719.1,GeneID:7137429;ID=cds113;Name=YP_002394719.1 +NC_011744 S-MART CDS 129984 130850 . + . product=Hypothetical transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394720.1;Dbxref=Genbank:YP_002394720.1,GeneID:7137430;ID=cds114;Name=YP_002394720.1 +NC_011744 S-MART CDS 130935 132437 . - . product=regulatory protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394722.1;Dbxref=Genbank:YP_002394722.1,GeneID:7137432;ID=cds116;Name=YP_002394722.1--YP_002394721.1 +NC_011744 S-MART exon 130935 131990 . - . ID=cds116-exon1;Name=YP_002394722.1--YP_002394721.1-exon1;Parent=cds116 +NC_011744 S-MART exon 132096 132437 . - . ID=cds116-exon2;Name=YP_002394722.1--YP_002394721.1-exon2;Parent=cds116 +NC_011744 S-MART CDS 132757 133554 . + . product=hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394723.1;Dbxref=Genbank:YP_002394723.1,GeneID:7137433;ID=cds117;Name=YP_002394723.1 +NC_011744 S-MART CDS 133736 135626 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394725.1;Dbxref=Genbank:YP_002394725.1,GeneID:7137435;ID=cds119;Name=YP_002394725.1--YP_002394724.1 +NC_011744 S-MART exon 133736 134383 . + . ID=cds119-exon1;Name=YP_002394725.1--YP_002394724.1-exon1;Parent=cds119 +NC_011744 S-MART exon 134418 135626 . + . ID=cds119-exon2;Name=YP_002394725.1--YP_002394724.1-exon2;Parent=cds119 +NC_011744 S-MART CDS 135655 136593 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394726.1;Dbxref=Genbank:YP_002394726.1,GeneID:7137436;ID=cds120;Name=YP_002394726.1 +NC_011744 S-MART CDS 136700 138001 . + . product=oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394728.1;Dbxref=Genbank:YP_002394728.1,GeneID:7137438;ID=cds122;Name=YP_002394728.1--YP_002394727.1 +NC_011744 S-MART exon 136700 137023 . + . ID=cds122-exon1;Name=YP_002394728.1--YP_002394727.1-exon1;Parent=cds122 +NC_011744 S-MART exon 137027 138001 . + . ID=cds122-exon2;Name=YP_002394728.1--YP_002394727.1-exon2;Parent=cds122 +NC_011744 S-MART CDS 138201 138539 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394729.1;Dbxref=Genbank:YP_002394729.1,GeneID:7137439;ID=cds123;Name=YP_002394729.1 +NC_011744 S-MART CDS 138848 140416 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394730.1;Dbxref=Genbank:YP_002394730.1,GeneID:7137440;ID=cds124;Name=YP_002394730.1 +NC_011744 S-MART CDS 140862 143009 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394731.1;Dbxref=Genbank:YP_002394731.1,GeneID:7137441;ID=cds125;Name=YP_002394731.1 +NC_011744 S-MART CDS 143382 144595 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394735.1;Dbxref=Genbank:YP_002394735.1,GeneID:7137445;ID=cds129;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1 +NC_011744 S-MART exon 143382 144219 . + . ID=cds129-exon1;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1-exon1;Parent=cds129 +NC_011744 S-MART exon 144281 144427 . + . ID=cds129-exon2;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1-exon2;Parent=cds129 +NC_011744 S-MART exon 144458 144595 . + . ID=cds129-exon3;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1-exon3;Parent=cds129 +NC_011744 S-MART CDS 144807 156233 . - . product=2%2C3-diketo-L-gulonate reductase;nbElements=13.000000;transl_table=11;Note=NAD%28P%29H-dependent%3B catalyzes the reduction of 2%2C3-diketo-L-gulonate to 3-keto-L-gulonate;gbkey=CDS;protein_id=YP_002394748.1;Dbxref=Genbank:YP_002394748.1,GeneID:7137458;ID=cds142;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0 +NC_011744 S-MART exon 144807 146006 . - . ID=cds142-exon1;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon1;Parent=cds142 +NC_011744 S-MART exon 146096 147299 . - . ID=cds142-exon2;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon2;Parent=cds142 +NC_011744 S-MART exon 147309 148067 . - . ID=cds142-exon3;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon3;Parent=cds142 +NC_011744 S-MART exon 148075 150714 . - . ID=cds142-exon4;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon4;Parent=cds142 +NC_011744 S-MART exon 150763 151626 . - . ID=cds142-exon5;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon5;Parent=cds142 +NC_011744 S-MART exon 151637 152347 . - . ID=cds142-exon6;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon6;Parent=cds142 +NC_011744 S-MART exon 152443 153417 . - . ID=cds142-exon7;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon7;Parent=cds142 +NC_011744 S-MART exon 153439 155207 . - . ID=cds142-exon8;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon8;Parent=cds142 +NC_011744 S-MART exon 155232 156233 . - . ID=cds142-exon9;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon9;Parent=cds142 +NC_011744 S-MART CDS 156656 157825 . + . product=glycerate kinase;transl_table=11;gbkey=CDS;protein_id=YP_002394749.1;Dbxref=Genbank:YP_002394749.1,GeneID:7137459;ID=cds143;Name=YP_002394749.1 +NC_011744 S-MART CDS 158027 159478 . + . product=catalase;transl_table=11;gbkey=CDS;protein_id=YP_002394750.1;Dbxref=Genbank:YP_002394750.1,GeneID:7137460;ID=cds144;Name=YP_002394750.1 +NC_011744 S-MART CDS 159709 160581 . + . product=Phospholipase;transl_table=11;gbkey=CDS;protein_id=YP_002394751.1;Dbxref=Genbank:YP_002394751.1,GeneID:7137461;ID=cds145;Name=YP_002394751.1 +NC_011744 S-MART CDS 160700 161692 . - . product=D-lactate dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002394752.1;Dbxref=Genbank:YP_002394752.1,GeneID:7137462;ID=cds146;Name=YP_002394752.1 +NC_011744 S-MART CDS 162181 163424 . - . product=ferredoxin-NADP reductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394754.1;Dbxref=Genbank:YP_002394754.1,GeneID:7137464;ID=cds148;Name=YP_002394754.1--YP_002394753.1 +NC_011744 S-MART exon 162181 162513 . - . ID=cds148-exon1;Name=YP_002394754.1--YP_002394753.1-exon1;Parent=cds148 +NC_011744 S-MART exon 162576 163424 . - . ID=cds148-exon2;Name=YP_002394754.1--YP_002394753.1-exon2;Parent=cds148 +NC_011744 S-MART CDS 163858 164139 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394756.1;Dbxref=Genbank:YP_002394756.1,GeneID:7137466;ID=cds150;Name=YP_002394756.1 +NC_011744 S-MART CDS 163720 164664 . + . product=acyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394755.1;Dbxref=Genbank:YP_002394755.1,GeneID:7137465;ID=cds149;Name=YP_002394755.1 +NC_011744 S-MART CDS 164814 165557 . - . product=SAM-dependent methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394757.1;Dbxref=Genbank:YP_002394757.1,GeneID:7137467;ID=cds151;Name=YP_002394757.1 +NC_011744 S-MART CDS 165711 167525 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394758.1;Dbxref=Genbank:YP_002394758.1,GeneID:7137468;ID=cds152;Name=YP_002394758.1 +NC_011744 S-MART CDS 167706 169679 . - . product=Type II secretory pathway%2C pullulanase PulA and related glycosidases;transl_table=11;gbkey=CDS;protein_id=YP_002394759.1;Dbxref=Genbank:YP_002394759.1,GeneID:7137469;ID=cds153;Name=YP_002394759.1 +NC_011744 S-MART CDS 170112 172475 . + . product=Maltose operon periplasmic protein precursor;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394761.1;Dbxref=Genbank:YP_002394761.1,GeneID:7137471;ID=cds155;Name=YP_002394761.1--YP_002394760.1 +NC_011744 S-MART exon 170112 171515 . + . ID=cds155-exon1;Name=YP_002394761.1--YP_002394760.1-exon1;Parent=cds155 +NC_011744 S-MART exon 171594 172475 . + . ID=cds155-exon2;Name=YP_002394761.1--YP_002394760.1-exon2;Parent=cds155 +NC_011744 S-MART CDS 172685 173512 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394762.1;Dbxref=Genbank:YP_002394762.1,GeneID:7137472;ID=cds156;Name=YP_002394762.1 +NC_011744 S-MART CDS 173629 177705 . - . product=maltose ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;Note=functions in the MalKFGE ABC transporter complex to transport maltose into the cell by using ATP hydrolysis;gbkey=CDS;protein_id=YP_002394764.1;Dbxref=Genbank:YP_002394764.1,GeneID:7137474;ID=cds158;Name=YP_002394764.1--YP_002394763.1 +NC_011744 S-MART exon 173629 176496 . - . ID=cds158-exon1;Name=YP_002394764.1--YP_002394763.1-exon1;Parent=cds158 +NC_011744 S-MART exon 176527 177705 . - . ID=cds158-exon2;Name=YP_002394764.1--YP_002394763.1-exon2;Parent=cds158 +NC_011744 S-MART CDS 178073 179716 . - . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002394765.1;Dbxref=Genbank:YP_002394765.1,GeneID:7137475;ID=cds159;Name=YP_002394765.1 +NC_011744 S-MART CDS 179899 180816 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394766.1;Dbxref=Genbank:YP_002394766.1,GeneID:7137476;ID=cds160;Name=YP_002394766.1 +NC_011744 S-MART CDS 180946 181239 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394767.1;Dbxref=Genbank:YP_002394767.1,GeneID:7137477;ID=cds161;Name=YP_002394767.1 +NC_011744 S-MART CDS 181650 186638 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394768.1;Dbxref=Genbank:YP_002394768.1,GeneID:7137478;ID=cds162;Name=YP_002394768.1 +NC_011744 S-MART CDS 187101 188867 . - . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002394769.1;Dbxref=Genbank:YP_002394769.1,GeneID:7137479;ID=cds163;Name=YP_002394769.1 +NC_011744 S-MART CDS 189145 192858 . - . product=pullulanase;transl_table=11;gbkey=CDS;protein_id=YP_002394770.1;Dbxref=Genbank:YP_002394770.1,GeneID:7137480;ID=cds164;Name=YP_002394770.1 +NC_011744 S-MART CDS 193236 193625 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394771.1;Dbxref=Genbank:YP_002394771.1,GeneID:7137481;ID=cds165;Name=YP_002394771.1 +NC_011744 S-MART CDS 193680 194318 . - . product=threonine efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002394772.1;Dbxref=Genbank:YP_002394772.1,GeneID:7137482;ID=cds166;Name=YP_002394772.1 +NC_011744 S-MART CDS 194406 195846 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394775.1;Dbxref=Genbank:YP_002394775.1,GeneID:7137485;ID=cds169;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1 +NC_011744 S-MART exon 194406 194846 . + . ID=cds169-exon1;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1-exon1;Parent=cds169 +NC_011744 S-MART exon 194873 195846 . + . ID=cds169-exon2;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1-exon2;Parent=cds169 +NC_011744 S-MART CDS 196083 197327 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394776.1;Dbxref=Genbank:YP_002394776.1,GeneID:7137486;ID=cds170;Name=YP_002394776.1 +NC_011744 S-MART CDS 197624 198841 . - . product=serine%2Fthreonine transporter SstT;transl_table=11;Note=involved in the import of serine and threonine coupled with the import of sodium;gbkey=CDS;protein_id=YP_002394777.1;Dbxref=Genbank:YP_002394777.1,GeneID:7137487;ID=cds171;Name=YP_002394777.1 +NC_011744 S-MART CDS 199011 200347 . - . product=ribosome-associated GTPase;nbElements=2.000000;transl_table=11;Note=EngC%3B RsgA%3B CpgA%3B circularly permuted GTPase%3B ribosome small subunit-dependent GTPase A%3B has the pattern G4-G1-G3 as opposed to other GTPases%3B interacts strongly with 30S ribosome which stimulates GTPase activity;gbkey=CDS;protein_id=YP_002394779.1;Dbxref=Genbank:YP_002394779.1,GeneID:7137489;ID=cds173;Name=YP_002394779.1--YP_002394778.1 +NC_011744 S-MART exon 199011 199193 . - . ID=cds173-exon1;Name=YP_002394779.1--YP_002394778.1-exon1;Parent=cds173 +NC_011744 S-MART exon 199283 200347 . - . ID=cds173-exon2;Name=YP_002394779.1--YP_002394778.1-exon2;Parent=cds173 +NC_011744 S-MART CDS 200868 202474 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394782.1;Dbxref=Genbank:YP_002394782.1,GeneID:7137492;ID=cds176;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1 +NC_011744 S-MART exon 200868 201326 . - . ID=cds176-exon1;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1-exon1;Parent=cds176 +NC_011744 S-MART exon 201441 202474 . - . ID=cds176-exon2;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1-exon2;Parent=cds176 +NC_011744 S-MART CDS 202677 203636 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394783.1;Dbxref=Genbank:YP_002394783.1,GeneID:7137493;ID=cds177;Name=YP_002394783.1 +NC_011744 S-MART ncRNA 203925 204035 . + . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137494;ID=rna0;Name=rna0 +NC_011744 S-MART CDS 204183 206906 . - . product=transcriptional regulator MalT;transl_table=11;Note=Positively regulates the transcription of the maltose regulon whose gene products are responsible for uptake and catabolism of malto-oligosaccharides;gbkey=CDS;protein_id=YP_002394784.1;Dbxref=Genbank:YP_002394784.1,GeneID:7138798;ID=cds178;Name=YP_002394784.1 +NC_011744 S-MART CDS 207458 209911 . + . product=maltodextrin phosphorylase;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394785.1;Dbxref=Genbank:YP_002394785.1,GeneID:7137495;ID=cds179;Name=YP_002394785.1 +NC_011744 S-MART CDS 210088 212268 . + . product=4-alpha-glucanotransferase;transl_table=11;Note=amylomaltase%3B acts to release glucose from maltodextrins;gbkey=CDS;protein_id=YP_002394786.1;Dbxref=Genbank:YP_002394786.1,GeneID:7137496;ID=cds180;Name=YP_002394786.1 +NC_011744 S-MART CDS 212444 214624 . + . product=glycogen branching protein;transl_table=11;Note=catalyzes the transfer of a segment of a 1%2C4-alpha-D-glucan chain to a primary hydroxy group in a similar glucan chain;gbkey=CDS;protein_id=YP_002394787.1;Dbxref=Genbank:YP_002394787.1,GeneID:7137497;ID=cds181;Name=YP_002394787.1 +NC_011744 S-MART CDS 214777 217985 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394790.1;Dbxref=Genbank:YP_002394790.1,GeneID:7137500;ID=cds184;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1 +NC_011744 S-MART exon 214777 217307 . - . ID=cds184-exon1;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1-exon1;Parent=cds184 +NC_011744 S-MART exon 217314 217985 . - . ID=cds184-exon2;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1-exon2;Parent=cds184 +NC_011744 S-MART CDS 218171 219696 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394792.1;Dbxref=Genbank:YP_002394792.1,GeneID:7137502;ID=cds186;Name=YP_002394792.1--YP_002394791.1 +NC_011744 S-MART CDS 219953 220867 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394793.1;Dbxref=Genbank:YP_002394793.1,GeneID:7137503;ID=cds187;Name=YP_002394793.1 +NC_011744 S-MART CDS 220939 226435 . - . product=purine nucleoside phosphorylase;nbElements=5.000000;transl_table=11;Note=catalyzes the reversible phosphorolysis of ribonucleosides and 2%27- deoxyribonucleosides to the free base and %282%27-deoxy%29ribose-1- phosphate;gbkey=CDS;protein_id=YP_002394798.1;Dbxref=Genbank:YP_002394798.1,GeneID:7137508;ID=cds192;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1 +NC_011744 S-MART exon 220939 224140 . - . ID=cds192-exon1;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1-exon1;Parent=cds192 +NC_011744 S-MART exon 224175 225707 . - . ID=cds192-exon2;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1-exon2;Parent=cds192 +NC_011744 S-MART exon 225725 226435 . - . ID=cds192-exon3;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1-exon3;Parent=cds192 +NC_011744 S-MART CDS 226854 227756 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394799.1;Dbxref=Genbank:YP_002394799.1,GeneID:7137509;ID=cds193;Name=YP_002394799.1 +NC_011744 S-MART CDS 227951 228283 . - . product=outer membrane lipoprotein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pm : membrane component;gbkey=CDS;protein_id=YP_002394800.1;Dbxref=Genbank:YP_002394800.1,GeneID:7137510;ID=cds194;Name=YP_002394800.1 +NC_011744 S-MART CDS 228566 229909 . + . product=ATP-dependent RNA helicase%2C DEAD box family;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 2461520%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394801.1;Dbxref=Genbank:YP_002394801.1,GeneID:7137511;ID=cds195;Name=YP_002394801.1 +NC_011744 S-MART CDS 230062 231345 . - . product=Thermolabile hemolysin %28TL%29-%28Lecithin-dependent hemolysin%29 %28LDH%29;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 1791426%2C 3508495%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394802.1;Dbxref=Genbank:YP_002394802.1,GeneID:7137512;ID=cds196;Name=YP_002394802.1 +NC_011744 S-MART CDS 231825 233699 . + . product=lipase chaperone;nbElements=2.000000;transl_table=11;Note=acts as a molecular chaperone to fold and export lipase A;gbkey=CDS;protein_id=YP_002394804.1;Dbxref=Genbank:YP_002394804.1,GeneID:7137514;ID=cds198;Name=YP_002394804.1--YP_002394803.1 +NC_011744 S-MART exon 231825 232766 . + . ID=cds198-exon1;Name=YP_002394804.1--YP_002394803.1-exon1;Parent=cds198 +NC_011744 S-MART exon 232806 233699 . + . ID=cds198-exon2;Name=YP_002394804.1--YP_002394803.1-exon2;Parent=cds198 +NC_011744 S-MART CDS 233889 235571 . - . product=methyl-accepting chemotaxis protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pf : factor;gbkey=CDS;protein_id=YP_002394805.1;Dbxref=Genbank:YP_002394805.1,GeneID:7137515;ID=cds199;Name=YP_002394805.1 +NC_011744 S-MART CDS 235997 239625 . + . product=phosphate ABC transporter ATP-binding protein;nbElements=4.000000;transl_table=11;Note=ATP-binding protein%3B PstABCS is an ATP dependent phosphate uptake system which is responsible for inorganic phosphate uptake during phosphate starvation;gbkey=CDS;protein_id=YP_002394809.1;Dbxref=Genbank:YP_002394809.1,GeneID:7137519;ID=cds203;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1 +NC_011744 S-MART exon 235997 236818 . + . ID=cds203-exon1;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon1;Parent=cds203 +NC_011744 S-MART exon 236943 237872 . + . ID=cds203-exon2;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon2;Parent=cds203 +NC_011744 S-MART exon 237937 238800 . + . ID=cds203-exon3;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon3;Parent=cds203 +NC_011744 S-MART exon 238876 239625 . + . ID=cds203-exon4;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon4;Parent=cds203 +NC_011744 S-MART CDS 239945 242089 . + . product=GGDEF family protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type f : factor;gbkey=CDS;protein_id=YP_002394810.1;Dbxref=Genbank:YP_002394810.1,GeneID:7137520;ID=cds204;Name=YP_002394810.1 +NC_011744 S-MART CDS 242225 249098 . - . product=MoxR-ATPase;nbElements=6.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 165787%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394816.1;Dbxref=Genbank:YP_002394816.1,GeneID:7137526;ID=cds210;Name=YP_002394816.1--YP_002394815.1--YP_002394814.1--YP_002394813.1--YP_002394812.1--YP_002394811.1 +NC_011744 S-MART CDS 249562 251478 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B PubMedId : 8188684%3B Product type f : factor;gbkey=CDS;protein_id=YP_002394817.1;Dbxref=Genbank:YP_002394817.1,GeneID:7137527;ID=cds211;Name=YP_002394817.1 +NC_011744 S-MART CDS 251798 252053 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394819.1;Dbxref=Genbank:YP_002394819.1,GeneID:7137529;ID=cds213;Name=YP_002394819.1--YP_002394818.1 +NC_011744 S-MART CDS 252277 253389 . - . product=maltose ABC transporter ATP-binding protein;transl_table=11;Note=with malEFG is involved in import of maltose%2Fmaltodextrin;gbkey=CDS;protein_id=YP_002394820.1;Dbxref=Genbank:YP_002394820.1,GeneID:7137530;ID=cds214;Name=YP_002394820.1 +NC_011744 S-MART CDS 254055 257791 . + . product=maltose ABC transporter permease;nbElements=3.000000;transl_table=11;Note=with MalKFE is involved in the transport of maltose into the cell;gbkey=CDS;protein_id=YP_002394823.1;Dbxref=Genbank:YP_002394823.1,GeneID:7137533;ID=cds217;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1 +NC_011744 S-MART exon 254055 255239 . + . ID=cds217-exon1;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1-exon1;Parent=cds217 +NC_011744 S-MART exon 255318 256889 . + . ID=cds217-exon2;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1-exon2;Parent=cds217 +NC_011744 S-MART exon 256901 257791 . + . ID=cds217-exon3;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1-exon3;Parent=cds217 +NC_011744 S-MART CDS 258382 258654 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394824.1;Dbxref=Genbank:YP_002394824.1,GeneID:7137534;ID=cds218;Name=YP_002394824.1 +NC_011744 S-MART CDS 258885 259388 . - . product=hydrolase;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 9139899%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394825.1;Dbxref=Genbank:YP_002394825.1,GeneID:7137535;ID=cds219;Name=YP_002394825.1 +NC_011744 S-MART CDS 260282 261175 . - . product=transport protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pt : transporter;gbkey=CDS;protein_id=YP_002394826.1;Dbxref=Genbank:YP_002394826.1,GeneID:7137536;ID=cds220;Name=YP_002394826.1 +NC_011744 S-MART CDS 261274 262062 . + . product=HTH-type transcriptional regulator;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002394827.1;Dbxref=Genbank:YP_002394827.1,GeneID:7137537;ID=cds221;Name=YP_002394827.1 +NC_011744 S-MART CDS 262176 262564 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394829.1;Dbxref=Genbank:YP_002394829.1,GeneID:7137539;ID=cds223;Name=YP_002394829.1--YP_002394828.1 +NC_011744 S-MART CDS 262770 264620 . - . product=Alkyl sulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002394830.1;Dbxref=Genbank:YP_002394830.1,GeneID:7137540;ID=cds224;Name=YP_002394830.1 +NC_011744 S-MART CDS 265017 266057 . + . product=esterase;transl_table=11;gbkey=CDS;protein_id=YP_002394831.1;Dbxref=Genbank:YP_002394831.1,GeneID:7137541;ID=cds225;Name=YP_002394831.1 +NC_011744 S-MART CDS 266265 268079 . + . product=mechanosensitive ion channel;transl_table=11;gbkey=CDS;protein_id=YP_002394832.1;Dbxref=Genbank:YP_002394832.1,GeneID:7137542;ID=cds226;Name=YP_002394832.1 +NC_011744 S-MART CDS 268214 269146 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394833.1;Dbxref=Genbank:YP_002394833.1,GeneID:7137543;ID=cds227;Name=YP_002394833.1 +NC_011744 S-MART CDS 269443 270897 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394835.1;Dbxref=Genbank:YP_002394835.1,GeneID:7137545;ID=cds229;Name=YP_002394835.1--YP_002394834.1 +NC_011744 S-MART exon 269443 270144 . - . ID=cds229-exon1;Name=YP_002394835.1--YP_002394834.1-exon1;Parent=cds229 +NC_011744 S-MART exon 270220 270897 . - . ID=cds229-exon2;Name=YP_002394835.1--YP_002394834.1-exon2;Parent=cds229 +NC_011744 S-MART CDS 271085 275014 . - . product=Calcium%2Fproton antiporter;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394840.1;Dbxref=Genbank:YP_002394840.1,GeneID:7137550;ID=cds234;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1 +NC_011744 S-MART exon 271085 271747 . - . ID=cds234-exon1;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1-exon1;Parent=cds234 +NC_011744 S-MART exon 271772 273865 . - . ID=cds234-exon2;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1-exon2;Parent=cds234 +NC_011744 S-MART exon 273923 275014 . - . ID=cds234-exon3;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1-exon3;Parent=cds234 +NC_011744 S-MART CDS 275309 277998 . - . product=protein-export membrane protein SecD;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394842.1;Dbxref=Genbank:YP_002394842.1,GeneID:7137552;ID=cds236;Name=YP_002394842.1--YP_002394841.1 +NC_011744 S-MART CDS 278312 278647 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394843.1;Dbxref=Genbank:YP_002394843.1,GeneID:7137553;ID=cds237;Name=YP_002394843.1 +NC_011744 S-MART CDS 278912 279706 . + . product=ribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002394844.1;Dbxref=Genbank:YP_002394844.1,GeneID:7137554;ID=cds238;Name=YP_002394844.1 +NC_011744 S-MART CDS 279767 284156 . - . product=ABC transporter-ATP binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394847.1;Dbxref=Genbank:YP_002394847.1,GeneID:7137557;ID=cds241;Name=YP_002394847.1--YP_002394846.1--YP_002394845.1 +NC_011744 S-MART CDS 284606 287767 . + . product=diguanylate cyclase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394849.1;Dbxref=Genbank:YP_002394849.1,GeneID:7137559;ID=cds243;Name=YP_002394849.1--YP_002394848.1 +NC_011744 S-MART exon 284606 285568 . + . ID=cds243-exon1;Name=YP_002394849.1--YP_002394848.1-exon1;Parent=cds243 +NC_011744 S-MART exon 285581 287767 . + . ID=cds243-exon2;Name=YP_002394849.1--YP_002394848.1-exon2;Parent=cds243 +NC_011744 S-MART CDS 287851 288837 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394850.1;Dbxref=Genbank:YP_002394850.1,GeneID:7137560;ID=cds244;Name=YP_002394850.1 +NC_011744 S-MART CDS 289034 290551 . + . product=radical SAM protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394852.1;Dbxref=Genbank:YP_002394852.1,GeneID:7137562;ID=cds246;Name=YP_002394852.1--YP_002394851.1 +NC_011744 S-MART exon 289034 289309 . + . ID=cds246-exon1;Name=YP_002394852.1--YP_002394851.1-exon1;Parent=cds246 +NC_011744 S-MART exon 289340 290551 . + . ID=cds246-exon2;Name=YP_002394852.1--YP_002394851.1-exon2;Parent=cds246 +NC_011744 S-MART CDS 290698 291947 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394854.1;Dbxref=Genbank:YP_002394854.1,GeneID:7137564;ID=cds248;Name=YP_002394854.1--YP_002394853.1 +NC_011744 S-MART exon 290698 291039 . - . ID=cds248-exon1;Name=YP_002394854.1--YP_002394853.1-exon1;Parent=cds248 +NC_011744 S-MART exon 291159 291947 . - . ID=cds248-exon2;Name=YP_002394854.1--YP_002394853.1-exon2;Parent=cds248 +NC_011744 S-MART CDS 292132 294467 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394856.1;Dbxref=Genbank:YP_002394856.1,GeneID:7137566;ID=cds250;Name=YP_002394856.1--YP_002394855.1 +NC_011744 S-MART exon 292132 293013 . - . ID=cds250-exon1;Name=YP_002394856.1--YP_002394855.1-exon1;Parent=cds250 +NC_011744 S-MART exon 293136 294467 . - . ID=cds250-exon2;Name=YP_002394856.1--YP_002394855.1-exon2;Parent=cds250 +NC_011744 S-MART CDS 294685 297090 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394858.1;Dbxref=Genbank:YP_002394858.1,GeneID:7137568;ID=cds252;Name=YP_002394858.1--YP_002394857.1 +NC_011744 S-MART exon 294685 296196 . - . ID=cds252-exon1;Name=YP_002394858.1--YP_002394857.1-exon1;Parent=cds252 +NC_011744 S-MART exon 296302 297090 . - . ID=cds252-exon2;Name=YP_002394858.1--YP_002394857.1-exon2;Parent=cds252 +NC_011744 S-MART CDS 297221 298147 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394859.1;Dbxref=Genbank:YP_002394859.1,GeneID:7137569;ID=cds253;Name=YP_002394859.1 +NC_011744 S-MART CDS 298191 302041 . - . product=LuxM protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394861.1;Dbxref=Genbank:YP_002394861.1,GeneID:7137571;ID=cds255;Name=YP_002394861.1--YP_002394860.1 +NC_011744 S-MART CDS 302458 302850 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394862.1;Dbxref=Genbank:YP_002394862.1,GeneID:7137572;ID=cds256;Name=YP_002394862.1 +NC_011744 S-MART CDS 302973 303563 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394863.1;Dbxref=Genbank:YP_002394863.1,GeneID:7137573;ID=cds257;Name=YP_002394863.1 +NC_011744 S-MART CDS 303764 305362 . - . product=isocitrate lyase;transl_table=11;Note=Catalyzes the first step in the glyoxalate cycle%2C which converts lipids to carbohydrates;gbkey=CDS;protein_id=YP_002394864.1;Dbxref=Genbank:YP_002394864.1,GeneID:7137574;ID=cds258;Name=YP_002394864.1 +NC_011744 S-MART CDS 305504 306457 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394865.1;Dbxref=Genbank:YP_002394865.1,GeneID:7137575;ID=cds259;Name=YP_002394865.1 +NC_011744 S-MART CDS 306613 308796 . + . product=malate synthase G;transl_table=11;Note=catalyzes the formation of malate from glyoxylate and acetyl-CoA;gbkey=CDS;protein_id=YP_002394866.1;Dbxref=Genbank:YP_002394866.1,GeneID:7137576;ID=cds260;Name=YP_002394866.1 +NC_011744 S-MART CDS 309040 310467 . - . product=Succinate-semialdehyde dehydrogenase %5BNADP%2B%5D;transl_table=11;gbkey=CDS;protein_id=YP_002394867.1;Dbxref=Genbank:YP_002394867.1,GeneID:7137577;ID=cds261;Name=YP_002394867.1 +NC_011744 S-MART CDS 310935 311507 . + . product=malate synthase;transl_table=11;Note=Catalyzes the aldol condensation of glyoxylate with acetyl-CoA to form malate as part of the second step of the glyoxylate bypass and an alternative to the tricarboxylic acid cycle;gbkey=CDS;protein_id=YP_002394868.1;Dbxref=Genbank:YP_002394868.1,GeneID:7137578;ID=cds262;Name=YP_002394868.1 +NC_011744 S-MART CDS 312002 313609 . + . product=transporter%2C BCCT family;transl_table=11;gbkey=CDS;protein_id=YP_002394869.1;Dbxref=Genbank:YP_002394869.1,GeneID:7137579;ID=cds263;Name=YP_002394869.1 +NC_011744 S-MART CDS 313812 314738 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394870.1;Dbxref=Genbank:YP_002394870.1,GeneID:7137580;ID=cds264;Name=YP_002394870.1 +NC_011744 S-MART CDS 314963 316180 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394871.1;Dbxref=Genbank:YP_002394871.1,GeneID:7137581;ID=cds265;Name=YP_002394871.1 +NC_011744 S-MART CDS 316352 317380 . - . product=dihydroorotase;transl_table=11;Note=catalyzes the formation of N-carbamoyl-L-aspartate from %28S%29-dihydroorotate in pyrimidine biosynthesis;gbkey=CDS;protein_id=YP_002394872.1;Dbxref=Genbank:YP_002394872.1,GeneID:7137582;ID=cds266;Name=YP_002394872.1 +NC_011744 S-MART CDS 317573 317731 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394873.1;Dbxref=Genbank:YP_002394873.1,GeneID:7137583;ID=cds267;Name=YP_002394873.1 +NC_011744 S-MART CDS 317950 319806 . + . product=Flavodoxin reductase 1 protein;transl_table=11;gbkey=CDS;protein_id=YP_002394874.1;Dbxref=Genbank:YP_002394874.1,GeneID:7137584;ID=cds268;Name=YP_002394874.1 +NC_011744 S-MART CDS 319914 320744 . - . product=NAD synthetase;transl_table=11;Note=catalyzes the formation of nicotinamide adenine dinucleotide %28NAD%29 from nicotinic acid adenine dinucleotide %28NAAD%29 using either ammonia or glutamine as the amide donor and ATP%3B ammonia-utilizing enzymes include the ones from Bacillus and Escherichia coli while glutamine-utilizing enzymes include the Mycobacterial one%3B forms homodimers;gbkey=CDS;protein_id=YP_002394875.1;Dbxref=Genbank:YP_002394875.1,GeneID:7137585;ID=cds269;Name=YP_002394875.1 +NC_011744 S-MART CDS 320854 321889 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394877.1;Dbxref=Genbank:YP_002394877.1,GeneID:7137587;ID=cds271;Name=YP_002394877.1--YP_002394876.1 +NC_011744 S-MART exon 320854 321375 . + . ID=cds271-exon1;Name=YP_002394877.1--YP_002394876.1-exon1;Parent=cds271 +NC_011744 S-MART exon 321404 321889 . + . ID=cds271-exon2;Name=YP_002394877.1--YP_002394876.1-exon2;Parent=cds271 +NC_011744 S-MART CDS 322012 322638 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394878.1;Dbxref=Genbank:YP_002394878.1,GeneID:7137588;ID=cds272;Name=YP_002394878.1 +NC_011744 S-MART CDS 322802 323920 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394879.1;Dbxref=Genbank:YP_002394879.1,GeneID:7137589;ID=cds273;Name=YP_002394879.1 +NC_011744 S-MART CDS 324050 324649 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394880.1;Dbxref=Genbank:YP_002394880.1,GeneID:7137590;ID=cds274;Name=YP_002394880.1 +NC_011744 S-MART CDS 324751 325053 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394881.1;Dbxref=Genbank:YP_002394881.1,GeneID:7137591;ID=cds275;Name=YP_002394881.1 +NC_011744 S-MART CDS 325090 325431 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394882.1;Dbxref=Genbank:YP_002394882.1,GeneID:7137592;ID=cds276;Name=YP_002394882.1 +NC_011744 S-MART CDS 325919 326380 . + . product=LuxT regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394883.1;Dbxref=Genbank:YP_002394883.1,GeneID:7137593;ID=cds277;Name=YP_002394883.1 +NC_011744 S-MART CDS 326774 329589 . - . product=hemin ABC transporter substrate-binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394886.1;Dbxref=Genbank:YP_002394886.1,GeneID:7137596;ID=cds280;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1 +NC_011744 S-MART exon 326774 328605 . - . ID=cds280-exon1;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1-exon1;Parent=cds280 +NC_011744 S-MART exon 328699 329589 . - . ID=cds280-exon2;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1-exon2;Parent=cds280 +NC_011744 S-MART CDS 329765 331646 . - . product=TonB-like protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394889.1;Dbxref=Genbank:YP_002394889.1,GeneID:7137599;ID=cds283;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1 +NC_011744 S-MART exon 329765 330876 . - . ID=cds283-exon1;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1-exon1;Parent=cds283 +NC_011744 S-MART exon 330879 331646 . - . ID=cds283-exon2;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1-exon2;Parent=cds283 +NC_011744 S-MART CDS 331801 334462 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394892.1;Dbxref=Genbank:YP_002394892.1,GeneID:7137602;ID=cds286;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1 +NC_011744 S-MART exon 331801 333210 . + . ID=cds286-exon1;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1-exon1;Parent=cds286 +NC_011744 S-MART exon 333269 333790 . + . ID=cds286-exon2;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1-exon2;Parent=cds286 +NC_011744 S-MART exon 333932 334462 . + . ID=cds286-exon3;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1-exon3;Parent=cds286 +NC_011744 S-MART CDS 334516 335430 . - . product=Chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002394893.1;Dbxref=Genbank:YP_002394893.1,GeneID:7137603;ID=cds287;Name=YP_002394893.1 +NC_011744 S-MART CDS 335714 335992 . + . product=Peptidyl-prolyl cis-trans isomerase C;transl_table=11;gbkey=CDS;protein_id=YP_002394894.1;Dbxref=Genbank:YP_002394894.1,GeneID:7137604;ID=cds288;Name=YP_002394894.1 +NC_011744 S-MART CDS 336291 337661 . + . product=alpha-amylase;transl_table=11;gbkey=CDS;protein_id=YP_002394895.1;Dbxref=Genbank:YP_002394895.1,GeneID:7137605;ID=cds289;Name=YP_002394895.1 +NC_011744 S-MART CDS 337828 339699 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002394896.1;Dbxref=Genbank:YP_002394896.1,GeneID:7137606;ID=cds290;Name=YP_002394896.1 +NC_011744 S-MART CDS 340153 341523 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394897.1;Dbxref=Genbank:YP_002394897.1,GeneID:7137607;ID=cds291;Name=YP_002394897.1 +NC_011744 S-MART CDS 341752 343059 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394899.1;Dbxref=Genbank:YP_002394899.1,GeneID:7137609;ID=cds293;Name=YP_002394899.1--YP_002394898.1 +NC_011744 S-MART exon 341752 342435 . - . ID=cds293-exon1;Name=YP_002394899.1--YP_002394898.1-exon1;Parent=cds293 +NC_011744 S-MART exon 342577 343059 . - . ID=cds293-exon2;Name=YP_002394899.1--YP_002394898.1-exon2;Parent=cds293 +NC_011744 S-MART CDS 343092 344162 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394901.1;Dbxref=Genbank:YP_002394901.1,GeneID:7137611;ID=cds295;Name=YP_002394901.1--YP_002394900.1 +NC_011744 S-MART exon 343092 343739 . + . ID=cds295-exon1;Name=YP_002394901.1--YP_002394900.1-exon1;Parent=cds295 +NC_011744 S-MART exon 343863 344162 . + . ID=cds295-exon2;Name=YP_002394901.1--YP_002394900.1-exon2;Parent=cds295 +NC_011744 S-MART CDS 344408 345700 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394902.1;Dbxref=Genbank:YP_002394902.1,GeneID:7137612;ID=cds296;Name=YP_002394902.1 +NC_011744 S-MART CDS 345872 348793 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394904.1;Dbxref=Genbank:YP_002394904.1,GeneID:7137614;ID=cds298;Name=YP_002394904.1--YP_002394903.1 +NC_011744 S-MART exon 345872 347824 . - . ID=cds298-exon1;Name=YP_002394904.1--YP_002394903.1-exon1;Parent=cds298 +NC_011744 S-MART exon 347897 348793 . - . ID=cds298-exon2;Name=YP_002394904.1--YP_002394903.1-exon2;Parent=cds298 +NC_011744 S-MART CDS 348902 350580 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394906.1;Dbxref=Genbank:YP_002394906.1,GeneID:7137616;ID=cds300;Name=YP_002394906.1--YP_002394905.1 +NC_011744 S-MART exon 348902 350107 . + . ID=cds300-exon1;Name=YP_002394906.1--YP_002394905.1-exon1;Parent=cds300 +NC_011744 S-MART exon 350230 350580 . + . ID=cds300-exon2;Name=YP_002394906.1--YP_002394905.1-exon2;Parent=cds300 +NC_011744 S-MART CDS 350824 350958 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394907.1;Dbxref=Genbank:YP_002394907.1,GeneID:7137617;ID=cds301;Name=YP_002394907.1 +NC_011744 S-MART CDS 351134 352710 . - . product=transporter;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394909.1;Dbxref=Genbank:YP_002394909.1,GeneID:7137619;ID=cds303;Name=YP_002394909.1--YP_002394908.1 +NC_011744 S-MART exon 351134 351751 . - . ID=cds303-exon1;Name=YP_002394909.1--YP_002394908.1-exon1;Parent=cds303 +NC_011744 S-MART exon 351820 352710 . - . ID=cds303-exon2;Name=YP_002394909.1--YP_002394908.1-exon2;Parent=cds303 +NC_011744 S-MART CDS 352866 353861 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394910.1;Dbxref=Genbank:YP_002394910.1,GeneID:7137620;ID=cds304;Name=YP_002394910.1 +NC_011744 S-MART CDS 354232 355245 . + . product=succinate dehydrogenase subunit Sdh;transl_table=11;gbkey=CDS;protein_id=YP_002394911.1;Dbxref=Genbank:YP_002394911.1,GeneID:7137621;ID=cds305;Name=YP_002394911.1 +NC_011744 S-MART CDS 355397 357379 . - . product=PTS system transporter subunit IIB;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394914.1;Dbxref=Genbank:YP_002394914.1,GeneID:7137624;ID=cds308;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1 +NC_011744 S-MART exon 355397 357099 . - . ID=cds308-exon1;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1-exon1;Parent=cds308 +NC_011744 S-MART exon 357110 357379 . - . ID=cds308-exon2;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1-exon2;Parent=cds308 +NC_011744 S-MART CDS 357665 358150 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394915.1;Dbxref=Genbank:YP_002394915.1,GeneID:7137625;ID=cds309;Name=YP_002394915.1 +NC_011744 S-MART CDS 358753 359961 . + . product=nucleoside permease;transl_table=11;gbkey=CDS;protein_id=YP_002394916.1;Dbxref=Genbank:YP_002394916.1,GeneID:7137626;ID=cds310;Name=YP_002394916.1 +NC_011744 S-MART CDS 360320 361246 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394918.1;Dbxref=Genbank:YP_002394918.1,GeneID:7137628;ID=cds312;Name=YP_002394918.1--YP_002394917.1 +NC_011744 S-MART exon 360320 360589 . + . ID=cds312-exon1;Name=YP_002394918.1--YP_002394917.1-exon1;Parent=cds312 +NC_011744 S-MART exon 360635 361246 . + . ID=cds312-exon2;Name=YP_002394918.1--YP_002394917.1-exon2;Parent=cds312 +NC_011744 S-MART CDS 361344 362552 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394919.1;Dbxref=Genbank:YP_002394919.1,GeneID:7137629;ID=cds313;Name=YP_002394919.1 +NC_011744 S-MART CDS 362826 364181 . + . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394920.1;Dbxref=Genbank:YP_002394920.1,GeneID:7137630;ID=cds314;Name=YP_002394920.1 +NC_011744 S-MART CDS 364346 365917 . + . product=ATP-dependent RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002394921.1;Dbxref=Genbank:YP_002394921.1,GeneID:7137631;ID=cds315;Name=YP_002394921.1 +NC_011744 S-MART ncRNA 366376 366484 . + . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137632;ID=rna1;Name=rna1 +NC_011744 S-MART CDS 366620 368185 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394922.1;Dbxref=Genbank:YP_002394922.1,GeneID:7138799;ID=cds316;Name=YP_002394922.1 +NC_011744 S-MART CDS 368323 368925 . + . product=malate synthase;transl_table=11;Note=Catalyzes the aldol condensation of glyoxylate with acetyl-CoA to form malate as part of the second step of the glyoxylate bypass and an alternative to the tricarboxylic acid cycle;gbkey=CDS;protein_id=YP_002394923.1;Dbxref=Genbank:YP_002394923.1,GeneID:7137633;ID=cds317;Name=YP_002394923.1 +NC_011744 S-MART CDS 369191 370228 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394924.1;Dbxref=Genbank:YP_002394924.1,GeneID:7137634;ID=cds318;Name=YP_002394924.1 +NC_011744 S-MART CDS 370524 370754 . - . product=cold shock protein;transl_table=11;gbkey=CDS;protein_id=YP_002394925.1;Dbxref=Genbank:YP_002394925.1,GeneID:7137635;ID=cds319;Name=YP_002394925.1 +NC_011744 S-MART CDS 371098 373622 . - . product=cytosine transporter;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pt : transporter;gbkey=CDS;protein_id=YP_002394928.1;Dbxref=Genbank:YP_002394928.1,GeneID:7137638;ID=cds322;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1 +NC_011744 S-MART exon 371098 372375 . - . ID=cds322-exon1;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1-exon1;Parent=cds322 +NC_011744 S-MART exon 372385 373622 . - . ID=cds322-exon2;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1-exon2;Parent=cds322 +NC_011744 S-MART CDS 373850 373924 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394929.1;Dbxref=Genbank:YP_002394929.1,GeneID:7137639;ID=cds323;Name=YP_002394929.1 +NC_011744 S-MART ncRNA 373934 374042 . - . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137640;ID=rna2;Name=rna2 +NC_011744 S-MART CDS 374356 375923 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394931.1;Dbxref=Genbank:YP_002394931.1,GeneID:7137641;ID=cds325;Name=YP_002394931.1--YP_002394930.1 +NC_011744 S-MART CDS 376058 377065 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394932.1;Dbxref=Genbank:YP_002394932.1,GeneID:7137642;ID=cds326;Name=YP_002394932.1 +NC_011744 S-MART CDS 377072 378717 . - . product=flavin-nucleotide-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394934.1;Dbxref=Genbank:YP_002394934.1,GeneID:7137644;ID=cds328;Name=YP_002394934.1--YP_002394933.1 +NC_011744 S-MART CDS 378808 380265 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394935.1;Dbxref=Genbank:YP_002394935.1,GeneID:7137645;ID=cds329;Name=YP_002394935.1 +NC_011744 S-MART CDS 380313 381578 . - . product=hypothetical protein;transl_table=11;Note=uncharacterized member of the APC superfamily of amino acid transporters%3B unknown function;gbkey=CDS;protein_id=YP_002394936.1;Dbxref=Genbank:YP_002394936.1,GeneID:7137646;ID=cds330;Name=YP_002394936.1 +NC_011744 S-MART CDS 381822 384039 . + . product=LysE type translocator;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394939.1;Dbxref=Genbank:YP_002394939.1,GeneID:7137649;ID=cds333;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1 +NC_011744 S-MART exon 381822 382283 . + . ID=cds333-exon1;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1-exon1;Parent=cds333 +NC_011744 S-MART exon 382377 383324 . + . ID=cds333-exon2;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1-exon2;Parent=cds333 +NC_011744 S-MART exon 383422 384039 . + . ID=cds333-exon3;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1-exon3;Parent=cds333 +NC_011744 S-MART CDS 384149 385659 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394941.1;Dbxref=Genbank:YP_002394941.1,GeneID:7137651;ID=cds335;Name=YP_002394941.1--YP_002394940.1 +NC_011744 S-MART exon 384149 385312 . - . ID=cds335-exon1;Name=YP_002394941.1--YP_002394940.1-exon1;Parent=cds335 +NC_011744 S-MART exon 385366 385659 . - . ID=cds335-exon2;Name=YP_002394941.1--YP_002394940.1-exon2;Parent=cds335 +NC_011744 S-MART CDS 385873 388726 . + . product=ferredoxin oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394943.1;Dbxref=Genbank:YP_002394943.1,GeneID:7137653;ID=cds337;Name=YP_002394943.1--YP_002394942.1 +NC_011744 S-MART exon 385873 387534 . + . ID=cds337-exon1;Name=YP_002394943.1--YP_002394942.1-exon1;Parent=cds337 +NC_011744 S-MART exon 387647 388726 . + . ID=cds337-exon2;Name=YP_002394943.1--YP_002394942.1-exon2;Parent=cds337 +NC_011744 S-MART CDS 388972 390408 . - . product=glyceraldehyde-3-phosphate dehydrogenase;transl_table=11;Note=catalyzes the formation of 3-phospho-D-glyceroyl phosphate from D-glyceraldehyde 3-phosphate%3B involved in growth under gluconeogenic conditions and in glycolytic activity at high ATP concentrations in Corynebacterium%3B NAD and NADP dependent;gbkey=CDS;protein_id=YP_002394944.1;Dbxref=Genbank:YP_002394944.1,GeneID:7137654;ID=cds338;Name=YP_002394944.1 +NC_011744 S-MART CDS 391162 393817 . + . product=sensor protein;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002394946.1;Dbxref=Genbank:YP_002394946.1,GeneID:7137656;ID=cds340;Name=YP_002394946.1--YP_002394945.1 +NC_011744 S-MART exon 391162 392187 . + . ID=cds340-exon1;Name=YP_002394946.1--YP_002394945.1-exon1;Parent=cds340 +NC_011744 S-MART exon 392204 393817 . + . ID=cds340-exon2;Name=YP_002394946.1--YP_002394945.1-exon2;Parent=cds340 +NC_011744 S-MART CDS 393850 394086 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394947.1;Dbxref=Genbank:YP_002394947.1,GeneID:7137657;ID=cds341;Name=YP_002394947.1 +NC_011744 S-MART CDS 394251 394877 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394948.1;Dbxref=Genbank:YP_002394948.1,GeneID:7137658;ID=cds342;Name=YP_002394948.1 +NC_011744 S-MART CDS 395048 395362 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394949.1;Dbxref=Genbank:YP_002394949.1,GeneID:7137659;ID=cds343;Name=YP_002394949.1 +NC_011744 S-MART CDS 395459 396793 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394952.1;Dbxref=Genbank:YP_002394952.1,GeneID:7137662;ID=cds346;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1 +NC_011744 S-MART exon 395459 395758 . + . ID=cds346-exon1;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1-exon1;Parent=cds346 +NC_011744 S-MART exon 395822 396478 . + . ID=cds346-exon2;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1-exon2;Parent=cds346 +NC_011744 S-MART exon 396479 396793 . + . ID=cds346-exon3;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1-exon3;Parent=cds346 +NC_011744 S-MART CDS 397101 401235 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394956.1;Dbxref=Genbank:YP_002394956.1,GeneID:7137666;ID=cds350;Name=YP_002394956.1--YP_002394955.1--YP_002394954.1--YP_002394953.1 +NC_011744 S-MART CDS 401372 401680 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394957.1;Dbxref=Genbank:YP_002394957.1,GeneID:7137667;ID=cds351;Name=YP_002394957.1 +NC_011744 S-MART CDS 402093 403457 . + . product=chaperone;transl_table=11;gbkey=CDS;protein_id=YP_002394958.1;Dbxref=Genbank:YP_002394958.1,GeneID:7137668;ID=cds352;Name=YP_002394958.1 +NC_011744 S-MART CDS 403968 405026 . + . product=outer membrane protein N;transl_table=11;gbkey=CDS;protein_id=YP_002394959.1;Dbxref=Genbank:YP_002394959.1,GeneID:7137669;ID=cds353;Name=YP_002394959.1 +NC_011744 S-MART CDS 405444 406049 . + . product=Fumarylacetoacetate %28FAA%29 hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394960.1;Dbxref=Genbank:YP_002394960.1,GeneID:7137670;ID=cds354;Name=YP_002394960.1 +NC_011744 S-MART CDS 406200 406832 . + . product=threonine efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002394961.1;Dbxref=Genbank:YP_002394961.1,GeneID:7137671;ID=cds355;Name=YP_002394961.1 +NC_011744 S-MART CDS 406960 408690 . - . product=phosphomannomutase;transl_table=11;gbkey=CDS;protein_id=YP_002394962.1;Dbxref=Genbank:YP_002394962.1,GeneID:7137672;ID=cds356;Name=YP_002394962.1 +NC_011744 S-MART CDS 409209 419043 . + . product=hypothetical protein;nbElements=11.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394973.1;Dbxref=Genbank:YP_002394973.1,GeneID:7137683;ID=cds367;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0 +NC_011744 S-MART exon 409209 412126 . + . ID=cds367-exon1;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon1;Parent=cds367 +NC_011744 S-MART exon 412138 412812 . + . ID=cds367-exon2;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon2;Parent=cds367 +NC_011744 S-MART exon 412851 413735 . + . ID=cds367-exon3;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon3;Parent=cds367 +NC_011744 S-MART exon 413858 414820 . + . ID=cds367-exon4;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon4;Parent=cds367 +NC_011744 S-MART exon 414861 415421 . + . ID=cds367-exon5;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon5;Parent=cds367 +NC_011744 S-MART exon 415571 417557 . + . ID=cds367-exon6;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon6;Parent=cds367 +NC_011744 S-MART exon 417691 418044 . + . ID=cds367-exon7;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon7;Parent=cds367 +NC_011744 S-MART exon 418162 418812 . + . ID=cds367-exon8;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon8;Parent=cds367 +NC_011744 S-MART exon 418825 419043 . + . ID=cds367-exon9;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon9;Parent=cds367 +NC_011744 S-MART CDS 419340 419477 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394974.1;Dbxref=Genbank:YP_002394974.1,GeneID:7137684;ID=cds368;Name=YP_002394974.1 +NC_011744 S-MART CDS 419627 420304 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394975.1;Dbxref=Genbank:YP_002394975.1,GeneID:7137685;ID=cds369;Name=YP_002394975.1 +NC_011744 S-MART CDS 420608 420964 . - . product=transposase;transl_table=11;gbkey=CDS;protein_id=YP_002394976.1;Dbxref=Genbank:YP_002394976.1,GeneID:7137686;ID=cds370;Name=YP_002394976.1 +NC_011744 S-MART CDS 421035 421463 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394977.1;Dbxref=Genbank:YP_002394977.1,GeneID:7137687;ID=cds371;Name=YP_002394977.1 +NC_011744 S-MART CDS 421959 422592 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394979.1;Dbxref=Genbank:YP_002394979.1,GeneID:7137689;ID=cds373;Name=YP_002394979.1--YP_002394978.1 +NC_011744 S-MART CDS 423194 423962 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394981.1;Dbxref=Genbank:YP_002394981.1,GeneID:7137691;ID=cds375;Name=YP_002394981.1--YP_002394980.1 +NC_011744 S-MART CDS 424285 424524 . - . product=transposase;transl_table=11;gbkey=CDS;protein_id=YP_002394982.1;Dbxref=Genbank:YP_002394982.1,GeneID:7137692;ID=cds376;Name=YP_002394982.1 +NC_011744 S-MART CDS 424597 425118 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394983.1;Dbxref=Genbank:YP_002394983.1,GeneID:7137693;ID=cds377;Name=YP_002394983.1 +NC_011744 S-MART CDS 425805 426857 . + . product=phospho-2-dehydro-3-deoxyheptonate aldolase;transl_table=11;Note=catalyzes the formation of 3-deoxy-D-arabino-hept-2-ulosonate 7 phosphate from phosphoenolpyruvate and D-erythrose 4-phosphate%2C phenylalanine sensitive;gbkey=CDS;protein_id=YP_002394984.1;Dbxref=Genbank:YP_002394984.1,GeneID:7137694;ID=cds378;Name=YP_002394984.1 +NC_011744 S-MART CDS 426970 431237 . - . product=Small-conductance mechanosensitive channel;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394987.1;Dbxref=Genbank:YP_002394987.1,GeneID:7137697;ID=cds381;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1 +NC_011744 S-MART exon 426970 428394 . - . ID=cds381-exon1;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1-exon1;Parent=cds381 +NC_011744 S-MART exon 428410 429990 . - . ID=cds381-exon2;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1-exon2;Parent=cds381 +NC_011744 S-MART exon 430125 431237 . - . ID=cds381-exon3;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1-exon3;Parent=cds381 +NC_011744 S-MART CDS 431422 433473 . + . product=KtrB;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394989.1;Dbxref=Genbank:YP_002394989.1,GeneID:7137699;ID=cds383;Name=YP_002394989.1--YP_002394988.1 +NC_011744 S-MART exon 431422 432078 . + . ID=cds383-exon1;Name=YP_002394989.1--YP_002394988.1-exon1;Parent=cds383 +NC_011744 S-MART exon 432106 433473 . + . ID=cds383-exon2;Name=YP_002394989.1--YP_002394988.1-exon2;Parent=cds383 +NC_011744 S-MART CDS 433580 434722 . - . product=Methionine sulfoxide reductase;transl_table=11;gbkey=CDS;protein_id=YP_002394990.1;Dbxref=Genbank:YP_002394990.1,GeneID:7137700;ID=cds384;Name=YP_002394990.1 +NC_011744 S-MART CDS 434919 435317 . + . product=OsmC-like protein;transl_table=11;gbkey=CDS;protein_id=YP_002394991.1;Dbxref=Genbank:YP_002394991.1,GeneID:7137701;ID=cds385;Name=YP_002394991.1 +NC_011744 S-MART CDS 435461 436522 . - . product=outer membrane protein OmpA;transl_table=11;gbkey=CDS;protein_id=YP_002394992.1;Dbxref=Genbank:YP_002394992.1,GeneID:7137702;ID=cds386;Name=YP_002394992.1 +NC_011744 S-MART CDS 436874 440325 . - . product=2-aminoethylphosphonate--pyruvate transaminase;nbElements=3.000000;transl_table=11;Note=catalyzes the formation of phosphonoacetaldehyde from 2-aminoethylphosphonate and pyruvate;gbkey=CDS;protein_id=YP_002394995.1;Dbxref=Genbank:YP_002394995.1,GeneID:7137705;ID=cds389;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1 +NC_011744 S-MART exon 436874 437692 . - . ID=cds389-exon1;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1-exon1;Parent=cds389 +NC_011744 S-MART exon 437777 440325 . - . ID=cds389-exon2;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1-exon2;Parent=cds389 +NC_011744 S-MART CDS 440720 443272 . + . product=ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394997.1;Dbxref=Genbank:YP_002394997.1,GeneID:7137707;ID=cds391;Name=YP_002394997.1--YP_002394996.1 +NC_011744 S-MART exon 440720 441730 . + . ID=cds391-exon1;Name=YP_002394997.1--YP_002394996.1-exon1;Parent=cds391 +NC_011744 S-MART exon 441851 443272 . + . ID=cds391-exon2;Name=YP_002394997.1--YP_002394996.1-exon2;Parent=cds391 +NC_011744 S-MART CDS 443500 448153 . + . product=permease of the drug%2Fmetabolite transporter %28DMT%29 superfamily;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395001.1;Dbxref=Genbank:YP_002395001.1,GeneID:7137711;ID=cds395;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1 +NC_011744 S-MART exon 443500 444609 . + . ID=cds395-exon1;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon1;Parent=cds395 +NC_011744 S-MART exon 444616 446340 . + . ID=cds395-exon2;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon2;Parent=cds395 +NC_011744 S-MART exon 446409 447113 . + . ID=cds395-exon3;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon3;Parent=cds395 +NC_011744 S-MART exon 447251 448153 . + . ID=cds395-exon4;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon4;Parent=cds395 +NC_011744 S-MART CDS 448354 453436 . + . product=6-phosphogluconate dehydrogenase;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395006.1;Dbxref=Genbank:YP_002395006.1,GeneID:7137716;ID=cds400;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1 +NC_011744 S-MART exon 448354 449370 . + . ID=cds400-exon1;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon1;Parent=cds400 +NC_011744 S-MART exon 449436 451308 . + . ID=cds400-exon2;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon2;Parent=cds400 +NC_011744 S-MART exon 451427 451924 . + . ID=cds400-exon3;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon3;Parent=cds400 +NC_011744 S-MART exon 451928 453436 . + . ID=cds400-exon4;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon4;Parent=cds400 +NC_011744 S-MART CDS 453913 454644 . + . product=peptidase E;transl_table=11;Note=alpha-aspartyl dipeptidase%3B catalyzes the hydrolysis of dipeptides with an N-terminal aspartate residue%3B belongs to peptidase S51 family;gbkey=CDS;protein_id=YP_002395007.1;Dbxref=Genbank:YP_002395007.1,GeneID:7137717;ID=cds401;Name=YP_002395007.1 +NC_011744 S-MART CDS 454955 455956 . + . product=HTH-type transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395008.1;Dbxref=Genbank:YP_002395008.1,GeneID:7137718;ID=cds402;Name=YP_002395008.1 +NC_011744 S-MART CDS 456071 456853 . - . product=Siderophore-interacting protein ViuB;transl_table=11;gbkey=CDS;protein_id=YP_002395009.1;Dbxref=Genbank:YP_002395009.1,GeneID:7137719;ID=cds403;Name=YP_002395009.1 +NC_011744 S-MART CDS 457057 458580 . - . product=Dipeptide%2Ftripeptide permease;transl_table=11;gbkey=CDS;protein_id=YP_002395010.1;Dbxref=Genbank:YP_002395010.1,GeneID:7137720;ID=cds404;Name=YP_002395010.1 +NC_011744 S-MART CDS 458945 460315 . - . product=L-serine dehydratase;transl_table=11;gbkey=CDS;protein_id=YP_002395011.1;Dbxref=Genbank:YP_002395011.1,GeneID:7137721;ID=cds405;Name=YP_002395011.1 +NC_011744 S-MART CDS 460691 461569 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395012.1;Dbxref=Genbank:YP_002395012.1,GeneID:7137722;ID=cds406;Name=YP_002395012.1 +NC_011744 S-MART CDS 461764 462018 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395013.1;Dbxref=Genbank:YP_002395013.1,GeneID:7137723;ID=cds407;Name=YP_002395013.1 +NC_011744 S-MART CDS 462389 462907 . + . product=MutT%2FNUDIX protein;transl_table=11;gbkey=CDS;protein_id=YP_002395014.1;Dbxref=Genbank:YP_002395014.1,GeneID:7137724;ID=cds408;Name=YP_002395014.1 +NC_011744 S-MART CDS 465520 465708 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395016.1;Dbxref=Genbank:YP_002395016.1,GeneID:7137726;ID=cds410;Name=YP_002395016.1 +NC_011744 S-MART CDS 463412 466069 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395017.1;Dbxref=Genbank:YP_002395017.1,GeneID:7137727;ID=cds411;Name=YP_002395017.1--YP_002395015.1 +NC_011744 S-MART exon 463412 465523 . + . ID=cds411-exon1;Name=YP_002395017.1--YP_002395015.1-exon1;Parent=cds411 +NC_011744 S-MART exon 465536 466069 . + . ID=cds411-exon2;Name=YP_002395017.1--YP_002395015.1-exon2;Parent=cds411 +NC_011744 S-MART CDS 466296 472210 . + . product=metalloprotease;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395021.1;Dbxref=Genbank:YP_002395021.1,GeneID:7137731;ID=cds415;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1 +NC_011744 S-MART exon 466296 469837 . + . ID=cds415-exon1;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1-exon1;Parent=cds415 +NC_011744 S-MART exon 469967 470806 . + . ID=cds415-exon2;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1-exon2;Parent=cds415 +NC_011744 S-MART exon 470954 472210 . + . ID=cds415-exon3;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1-exon3;Parent=cds415 +NC_011744 S-MART CDS 472311 473616 . - . product=Glycine cleavage system transcriptional activator %28Gcv operon activator%29;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395023.1;Dbxref=Genbank:YP_002395023.1,GeneID:7137733;ID=cds417;Name=YP_002395023.1--YP_002395022.1 +NC_011744 S-MART CDS 473708 474718 . + . product=drug%2Fmetabolite transporter permease;transl_table=11;gbkey=CDS;protein_id=YP_002395024.1;Dbxref=Genbank:YP_002395024.1,GeneID:7137734;ID=cds418;Name=YP_002395024.1 +NC_011744 S-MART CDS 474756 477779 . - . product=chemotactic transducer-related protein;transl_table=11;gbkey=CDS;protein_id=YP_002395025.1;Dbxref=Genbank:YP_002395025.1,GeneID:7137735;ID=cds419;Name=YP_002395025.1 +NC_011744 S-MART CDS 478058 478804 . + . product=hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002395026.1;Dbxref=Genbank:YP_002395026.1,GeneID:7137736;ID=cds420;Name=YP_002395026.1 +NC_011744 S-MART CDS 478976 479371 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395027.1;Dbxref=Genbank:YP_002395027.1,GeneID:7137737;ID=cds421;Name=YP_002395027.1 +NC_011744 S-MART CDS 479698 481695 . + . product=Iron-regulated membrane protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395029.1;Dbxref=Genbank:YP_002395029.1,GeneID:7137739;ID=cds423;Name=YP_002395029.1--YP_002395028.1 +NC_011744 S-MART exon 479698 480048 . + . ID=cds423-exon1;Name=YP_002395029.1--YP_002395028.1-exon1;Parent=cds423 +NC_011744 S-MART exon 480160 481695 . + . ID=cds423-exon2;Name=YP_002395029.1--YP_002395028.1-exon2;Parent=cds423 +NC_011744 S-MART CDS 481826 483189 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395031.1;Dbxref=Genbank:YP_002395031.1,GeneID:7137741;ID=cds425;Name=YP_002395031.1--YP_002395030.1 +NC_011744 S-MART CDS 483488 484627 . + . product=Permease of the major facilitator superfamily;transl_table=11;gbkey=CDS;protein_id=YP_002395032.1;Dbxref=Genbank:YP_002395032.1,GeneID:7137742;ID=cds426;Name=YP_002395032.1 +NC_011744 S-MART CDS 484944 487278 . + . product=L-threonine 3-dehydrogenase;nbElements=2.000000;transl_table=11;Note=converts threonine and NAD to 1%2C2-amino-3-oxobutanoate and NADH%3B functions in threonine catabolism;gbkey=CDS;protein_id=YP_002395034.1;Dbxref=Genbank:YP_002395034.1,GeneID:7137744;ID=cds428;Name=YP_002395034.1--YP_002395033.1 +NC_011744 S-MART exon 484944 486137 . + . ID=cds428-exon1;Name=YP_002395034.1--YP_002395033.1-exon1;Parent=cds428 +NC_011744 S-MART exon 486247 487278 . + . ID=cds428-exon2;Name=YP_002395034.1--YP_002395033.1-exon2;Parent=cds428 +NC_011744 S-MART CDS 487458 488681 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395035.1;Dbxref=Genbank:YP_002395035.1,GeneID:7137745;ID=cds429;Name=YP_002395035.1 +NC_011744 S-MART CDS 488848 489003 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395036.1;Dbxref=Genbank:YP_002395036.1,GeneID:7137746;ID=cds430;Name=YP_002395036.1 +NC_011744 S-MART CDS 489208 491805 . - . product=NAD%28P%29H oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395038.1;Dbxref=Genbank:YP_002395038.1,GeneID:7137748;ID=cds432;Name=YP_002395038.1--YP_002395037.1 +NC_011744 S-MART exon 489208 491133 . - . ID=cds432-exon1;Name=YP_002395038.1--YP_002395037.1-exon1;Parent=cds432 +NC_011744 S-MART exon 491137 491805 . - . ID=cds432-exon2;Name=YP_002395038.1--YP_002395037.1-exon2;Parent=cds432 +NC_011744 S-MART CDS 492055 493131 . + . product=threonine aldolase;transl_table=11;gbkey=CDS;protein_id=YP_002395039.1;Dbxref=Genbank:YP_002395039.1,GeneID:7137749;ID=cds433;Name=YP_002395039.1 +NC_011744 S-MART CDS 493609 494043 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395040.1;Dbxref=Genbank:YP_002395040.1,GeneID:7137750;ID=cds434;Name=YP_002395040.1 +NC_011744 S-MART CDS 494164 495087 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395041.1;Dbxref=Genbank:YP_002395041.1,GeneID:7137751;ID=cds435;Name=YP_002395041.1 +NC_011744 S-MART CDS 495325 496473 . - . product=alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395042.1;Dbxref=Genbank:YP_002395042.1,GeneID:7137752;ID=cds436;Name=YP_002395042.1 +NC_011744 S-MART CDS 496712 496897 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395043.1;Dbxref=Genbank:YP_002395043.1,GeneID:7137753;ID=cds437;Name=YP_002395043.1 +NC_011744 S-MART CDS 497111 497785 . + . product=nucleotidase;transl_table=11;Note=manganese-dependent 5%27-nucleotidase%3B specific for 5%27-UMP%2C 5%27-dUMP%2C and 5%27-dTMP%3B member of haloacid dehalogenase %28HAD%29-like hydrolase superfamily;gbkey=CDS;protein_id=YP_002395044.1;Dbxref=Genbank:YP_002395044.1,GeneID:7137754;ID=cds438;Name=YP_002395044.1 +NC_011744 S-MART CDS 497965 498897 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395045.1;Dbxref=Genbank:YP_002395045.1,GeneID:7137755;ID=cds439;Name=YP_002395045.1 +NC_011744 S-MART CDS 498928 502047 . - . product=cation efflux system component;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395047.1;Dbxref=Genbank:YP_002395047.1,GeneID:7137757;ID=cds441;Name=YP_002395047.1--YP_002395046.1 +NC_011744 S-MART exon 498928 501090 . - . ID=cds441-exon1;Name=YP_002395047.1--YP_002395046.1-exon1;Parent=cds441 +NC_011744 S-MART exon 501151 502047 . - . ID=cds441-exon2;Name=YP_002395047.1--YP_002395046.1-exon2;Parent=cds441 +NC_011744 S-MART CDS 502409 502759 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395048.1;Dbxref=Genbank:YP_002395048.1,GeneID:7137758;ID=cds442;Name=YP_002395048.1 +NC_011744 S-MART CDS 502821 503699 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395049.1;Dbxref=Genbank:YP_002395049.1,GeneID:7137759;ID=cds443;Name=YP_002395049.1 +NC_011744 S-MART CDS 503849 504460 . + . product=methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395050.1;Dbxref=Genbank:YP_002395050.1,GeneID:7137760;ID=cds444;Name=YP_002395050.1 +NC_011744 S-MART CDS 504872 507401 . + . product=pyruvate formate-lyase activating enzyme;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395052.1;Dbxref=Genbank:YP_002395052.1,GeneID:7137762;ID=cds446;Name=YP_002395052.1--YP_002395051.1 +NC_011744 S-MART exon 504872 506437 . + . ID=cds446-exon1;Name=YP_002395052.1--YP_002395051.1-exon1;Parent=cds446 +NC_011744 S-MART exon 506514 507401 . + . ID=cds446-exon2;Name=YP_002395052.1--YP_002395051.1-exon2;Parent=cds446 +NC_011744 S-MART CDS 507467 510462 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395056.1;Dbxref=Genbank:YP_002395056.1,GeneID:7137766;ID=cds450;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1 +NC_011744 S-MART exon 507467 508393 . - . ID=cds450-exon1;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon1;Parent=cds450 +NC_011744 S-MART exon 508432 509721 . - . ID=cds450-exon2;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon2;Parent=cds450 +NC_011744 S-MART exon 509859 510179 . - . ID=cds450-exon3;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon3;Parent=cds450 +NC_011744 S-MART exon 510301 510462 . - . ID=cds450-exon4;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon4;Parent=cds450 +NC_011744 S-MART CDS 510815 513001 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395057.1;Dbxref=Genbank:YP_002395057.1,GeneID:7137767;ID=cds451;Name=YP_002395057.1 +NC_011744 S-MART CDS 513179 515736 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395059.1;Dbxref=Genbank:YP_002395059.1,GeneID:7137769;ID=cds453;Name=YP_002395059.1--YP_002395058.1 +NC_011744 S-MART exon 513179 515254 . + . ID=cds453-exon1;Name=YP_002395059.1--YP_002395058.1-exon1;Parent=cds453 +NC_011744 S-MART exon 515386 515736 . + . ID=cds453-exon2;Name=YP_002395059.1--YP_002395058.1-exon2;Parent=cds453 +NC_011744 S-MART CDS 515923 519015 . - . product=transaldolase B;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395061.1;Dbxref=Genbank:YP_002395061.1,GeneID:7137771;ID=cds455;Name=YP_002395061.1--YP_002395060.1 +NC_011744 S-MART exon 515923 517926 . - . ID=cds455-exon1;Name=YP_002395061.1--YP_002395060.1-exon1;Parent=cds455 +NC_011744 S-MART exon 518005 519015 . - . ID=cds455-exon2;Name=YP_002395061.1--YP_002395060.1-exon2;Parent=cds455 +NC_011744 S-MART CDS 519415 520407 . + . product=Transcriptional regulator%2C SorC family;transl_table=11;gbkey=CDS;protein_id=YP_002395062.1;Dbxref=Genbank:YP_002395062.1,GeneID:7137772;ID=cds456;Name=YP_002395062.1 +NC_011744 S-MART CDS 520677 523694 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395063.1;Dbxref=Genbank:YP_002395063.1,GeneID:7137773;ID=cds457;Name=YP_002395063.1 +NC_011744 S-MART CDS 524243 525127 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395064.1;Dbxref=Genbank:YP_002395064.1,GeneID:7137774;ID=cds458;Name=YP_002395064.1 +NC_011744 S-MART CDS 525128 525586 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395065.1;Dbxref=Genbank:YP_002395065.1,GeneID:7137775;ID=cds459;Name=YP_002395065.1 +NC_011744 S-MART CDS 525798 536990 . + . product=hypothetical protein;nbElements=13.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395078.1;Dbxref=Genbank:YP_002395078.1,GeneID:7137788;ID=cds472;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0 +NC_011744 S-MART exon 525798 526016 . + . ID=cds472-exon1;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon1;Parent=cds472 +NC_011744 S-MART exon 526071 528635 . + . ID=cds472-exon2;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon2;Parent=cds472 +NC_011744 S-MART exon 528638 535104 . + . ID=cds472-exon3;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon3;Parent=cds472 +NC_011744 S-MART exon 535106 536422 . + . ID=cds472-exon4;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon4;Parent=cds472 +NC_011744 S-MART exon 536424 536990 . + . ID=cds472-exon5;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon5;Parent=cds472 +NC_011744 S-MART CDS 537128 539515 . - . product=signal transduction protein;transl_table=11;gbkey=CDS;protein_id=YP_002395079.1;Dbxref=Genbank:YP_002395079.1,GeneID:7137789;ID=cds473;Name=YP_002395079.1 +NC_011744 S-MART CDS 539867 541156 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395082.1;Dbxref=Genbank:YP_002395082.1,GeneID:7137792;ID=cds476;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1 +NC_011744 S-MART exon 539867 540730 . - . ID=cds476-exon1;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1-exon1;Parent=cds476 +NC_011744 S-MART exon 540751 541156 . - . ID=cds476-exon2;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1-exon2;Parent=cds476 +NC_011744 S-MART CDS 541314 544200 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395084.1;Dbxref=Genbank:YP_002395084.1,GeneID:7137794;ID=cds478;Name=YP_002395084.1--YP_002395083.1 +NC_011744 S-MART CDS 544457 546454 . - . product=Molybdopterin biosynthesis protein moeA;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395086.1;Dbxref=Genbank:YP_002395086.1,GeneID:7137796;ID=cds480;Name=YP_002395086.1--YP_002395085.1 +NC_011744 S-MART exon 544457 545212 . - . ID=cds480-exon1;Name=YP_002395086.1--YP_002395085.1-exon1;Parent=cds480 +NC_011744 S-MART exon 545219 546454 . - . ID=cds480-exon2;Name=YP_002395086.1--YP_002395085.1-exon2;Parent=cds480 +NC_011744 S-MART CDS 546671 547324 . + . product=GTP cyclohydrolase I;transl_table=11;Note=involved in the first step of tetrahydrofolate biosynthesis%3B catalyzes the formation of formate and 2-amino-4-hydroxy-6-%28erythro-1%2C2%2C3-trihydroxypropyl%29dihydropteridine triphosphate from GTP and water%3B forms a homopolymer;gbkey=CDS;protein_id=YP_002395087.1;Dbxref=Genbank:YP_002395087.1,GeneID:7137797;ID=cds481;Name=YP_002395087.1 +NC_011744 S-MART CDS 547390 548886 . - . product=dipeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395088.1;Dbxref=Genbank:YP_002395088.1,GeneID:7137798;ID=cds482;Name=YP_002395088.1 +NC_011744 S-MART CDS 549372 550810 . - . product=cold-shock protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395091.1;Dbxref=Genbank:YP_002395091.1,GeneID:7137801;ID=cds485;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1 +NC_011744 S-MART exon 549372 550485 . - . ID=cds485-exon1;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1-exon1;Parent=cds485 +NC_011744 S-MART exon 550601 550810 . - . ID=cds485-exon2;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1-exon2;Parent=cds485 +NC_011744 S-MART CDS 551259 552344 . - . product=glucose dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395092.1;Dbxref=Genbank:YP_002395092.1,GeneID:7137802;ID=cds486;Name=YP_002395092.1 +NC_011744 S-MART CDS 552642 553835 . + . product=Multidrug resistance protein mdtL;transl_table=11;gbkey=CDS;protein_id=YP_002395093.1;Dbxref=Genbank:YP_002395093.1,GeneID:7137803;ID=cds487;Name=YP_002395093.1 +NC_011744 S-MART CDS 553978 555599 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395095.1;Dbxref=Genbank:YP_002395095.1,GeneID:7137805;ID=cds489;Name=YP_002395095.1--YP_002395094.1 +NC_011744 S-MART exon 553978 554763 . - . ID=cds489-exon1;Name=YP_002395095.1--YP_002395094.1-exon1;Parent=cds489 +NC_011744 S-MART exon 554841 555599 . - . ID=cds489-exon2;Name=YP_002395095.1--YP_002395094.1-exon2;Parent=cds489 +NC_011744 S-MART CDS 555855 556727 . + . product=Transcription activator;transl_table=11;gbkey=CDS;protein_id=YP_002395096.1;Dbxref=Genbank:YP_002395096.1,GeneID:7137806;ID=cds490;Name=YP_002395096.1 +NC_011744 S-MART CDS 556974 562141 . + . product=Fe3%2B-hydroxamate ABC transporter permease;nbElements=3.000000;transl_table=11;Note=part of the FhuBCD ATP-dependent iron %28III%29 hydroxamate transporter involved in the high-affinity transport of Fe%283%2B%29-ferrichrome;gbkey=CDS;protein_id=YP_002395099.1;Dbxref=Genbank:YP_002395099.1,GeneID:7137809;ID=cds493;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1 +NC_011744 S-MART exon 556974 559103 . + . ID=cds493-exon1;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1-exon1;Parent=cds493 +NC_011744 S-MART exon 559194 560144 . + . ID=cds493-exon2;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1-exon2;Parent=cds493 +NC_011744 S-MART exon 560147 562141 . + . ID=cds493-exon3;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1-exon3;Parent=cds493 +NC_011744 S-MART CDS 562394 565179 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395102.1;Dbxref=Genbank:YP_002395102.1,GeneID:7137812;ID=cds496;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1 +NC_011744 S-MART exon 562394 563206 . + . ID=cds496-exon1;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1-exon1;Parent=cds496 +NC_011744 S-MART exon 563300 565179 . + . ID=cds496-exon2;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1-exon2;Parent=cds496 +NC_011744 S-MART CDS 565513 566625 . + . product=NADH oxidase;transl_table=11;gbkey=CDS;protein_id=YP_002395103.1;Dbxref=Genbank:YP_002395103.1,GeneID:7137813;ID=cds497;Name=YP_002395103.1 +NC_011744 S-MART CDS 567046 567681 . + . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395104.1;Dbxref=Genbank:YP_002395104.1,GeneID:7137814;ID=cds498;Name=YP_002395104.1 +NC_011744 S-MART CDS 567834 573035 . + . product=ABC transporter;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395107.1;Dbxref=Genbank:YP_002395107.1,GeneID:7137817;ID=cds501;Name=YP_002395107.1--YP_002395106.1--YP_002395105.1 +NC_011744 S-MART CDS 573132 581666 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395108.1;Dbxref=Genbank:YP_002395108.1,GeneID:7137818;ID=cds502;Name=YP_002395108.1 +NC_011744 S-MART CDS 581891 590044 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395114.1;Dbxref=Genbank:YP_002395114.1,GeneID:7137824;ID=cds508;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1 +NC_011744 S-MART exon 581891 582355 . + . ID=cds508-exon1;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon1;Parent=cds508 +NC_011744 S-MART exon 582449 583909 . + . ID=cds508-exon2;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon2;Parent=cds508 +NC_011744 S-MART exon 583921 588770 . + . ID=cds508-exon3;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon3;Parent=cds508 +NC_011744 S-MART exon 588877 589446 . + . ID=cds508-exon4;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon4;Parent=cds508 +NC_011744 S-MART exon 589559 590044 . + . ID=cds508-exon5;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon5;Parent=cds508 +NC_011744 S-MART CDS 590206 590463 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395115.1;Dbxref=Genbank:YP_002395115.1,GeneID:7137825;ID=cds509;Name=YP_002395115.1 +NC_011744 S-MART tRNA 590718 590976 . - . product=tRNA-Gly;nbElements=3.000000;gbkey=tRNA;Dbxref=GeneID:7138809;ID=rna4;Name=rna4--rna3--YP_002395116.1 +NC_011744 S-MART exon 590718 590867 . - . ID=rna4-exon1;Name=rna4--rna3--YP_002395116.1-exon1;Parent=rna4 +NC_011744 S-MART exon 590902 590976 . - . ID=rna4-exon2;Name=rna4--rna3--YP_002395116.1-exon2;Parent=rna4 +NC_011744 S-MART CDS 591502 592665 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395117.1;Dbxref=Genbank:YP_002395117.1,GeneID:7138810;ID=cds511;Name=YP_002395117.1 +NC_011744 S-MART CDS 592846 594812 . + . product=acetyltransferase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395121.1;Dbxref=Genbank:YP_002395121.1,GeneID:7137831;ID=cds515;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1 +NC_011744 S-MART exon 592846 593184 . + . ID=cds515-exon1;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon1;Parent=cds515 +NC_011744 S-MART exon 593284 593706 . + . ID=cds515-exon2;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon2;Parent=cds515 +NC_011744 S-MART exon 593754 594248 . + . ID=cds515-exon3;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon3;Parent=cds515 +NC_011744 S-MART exon 594342 594812 . + . ID=cds515-exon4;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon4;Parent=cds515 +NC_011744 S-MART CDS 594859 595968 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395122.1;Dbxref=Genbank:YP_002395122.1,GeneID:7137832;ID=cds516;Name=YP_002395122.1 +NC_011744 S-MART CDS 595989 597995 . + . product=Enterobactin receptor;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 12065481%3B Product type rc : receptor;gbkey=CDS;protein_id=YP_002395123.1;Dbxref=Genbank:YP_002395123.1,GeneID:7137833;ID=cds517;Name=YP_002395123.1 +NC_011744 S-MART CDS 598168 599112 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395124.1;Dbxref=Genbank:YP_002395124.1,GeneID:7137834;ID=cds518;Name=YP_002395124.1 +NC_011744 S-MART CDS 599305 600231 . - . product=ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395125.1;Dbxref=Genbank:YP_002395125.1,GeneID:7137835;ID=cds519;Name=YP_002395125.1 +NC_011744 S-MART CDS 600409 602774 . - . product=ABC transporter ATP-binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395128.1;Dbxref=Genbank:YP_002395128.1,GeneID:7137838;ID=cds522;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1 +NC_011744 S-MART exon 600409 601218 . - . ID=cds522-exon1;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1-exon1;Parent=cds522 +NC_011744 S-MART exon 601231 602774 . - . ID=cds522-exon2;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1-exon2;Parent=cds522 +NC_011744 S-MART CDS 603010 604158 . - . product=iron-containing alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395129.1;Dbxref=Genbank:YP_002395129.1,GeneID:7137839;ID=cds523;Name=YP_002395129.1 +NC_011744 S-MART CDS 604352 605236 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395130.1;Dbxref=Genbank:YP_002395130.1,GeneID:7137840;ID=cds524;Name=YP_002395130.1 +NC_011744 S-MART CDS 605901 607148 . + . product=endoribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395131.1;Dbxref=Genbank:YP_002395131.1,GeneID:7137841;ID=cds525;Name=YP_002395131.1 +NC_011744 S-MART CDS 607390 607992 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395133.1;Dbxref=Genbank:YP_002395133.1,GeneID:7137843;ID=cds527;Name=YP_002395133.1--YP_002395132.1 +NC_011744 S-MART exon 607390 607746 . + . ID=cds527-exon1;Name=YP_002395133.1--YP_002395132.1-exon1;Parent=cds527 +NC_011744 S-MART exon 607840 607992 . + . ID=cds527-exon2;Name=YP_002395133.1--YP_002395132.1-exon2;Parent=cds527 +NC_011744 S-MART CDS 608947 611939 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395135.1;Dbxref=Genbank:YP_002395135.1,GeneID:7137845;ID=cds529;Name=YP_002395135.1--YP_002395134.1 +NC_011744 S-MART exon 608947 610356 . + . ID=cds529-exon1;Name=YP_002395135.1--YP_002395134.1-exon1;Parent=cds529 +NC_011744 S-MART exon 610485 611939 . + . ID=cds529-exon2;Name=YP_002395135.1--YP_002395134.1-exon2;Parent=cds529 +NC_011744 S-MART CDS 612150 612668 . + . product=acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395136.1;Dbxref=Genbank:YP_002395136.1,GeneID:7137846;ID=cds530;Name=YP_002395136.1 +NC_011744 S-MART CDS 612782 613228 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395137.1;Dbxref=Genbank:YP_002395137.1,GeneID:7137847;ID=cds531;Name=YP_002395137.1 +NC_011744 S-MART CDS 613510 613872 . + . product=translation initiation inhibitor;transl_table=11;gbkey=CDS;protein_id=YP_002395138.1;Dbxref=Genbank:YP_002395138.1,GeneID:7137848;ID=cds532;Name=YP_002395138.1 +NC_011744 S-MART CDS 614016 615650 . - . product=glycine betaine transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395139.1;Dbxref=Genbank:YP_002395139.1,GeneID:7137849;ID=cds533;Name=YP_002395139.1 +NC_011744 S-MART CDS 616053 619211 . + . product=chitinase;transl_table=11;gbkey=CDS;protein_id=YP_002395140.1;Dbxref=Genbank:YP_002395140.1,GeneID:7137850;ID=cds534;Name=YP_002395140.1 +NC_011744 S-MART CDS 619498 620967 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395141.1;Dbxref=Genbank:YP_002395141.1,GeneID:7137851;ID=cds535;Name=YP_002395141.1 +NC_011744 S-MART CDS 621058 621312 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395142.1;Dbxref=Genbank:YP_002395142.1,GeneID:7137852;ID=cds536;Name=YP_002395142.1 +NC_011744 S-MART CDS 621581 622165 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395143.1;Dbxref=Genbank:YP_002395143.1,GeneID:7137853;ID=cds537;Name=YP_002395143.1 +NC_011744 S-MART CDS 622344 623528 . + . product=D-alanyl-D-alanine carboxypeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395144.1;Dbxref=Genbank:YP_002395144.1,GeneID:7137854;ID=cds538;Name=YP_002395144.1 +NC_011744 S-MART CDS 623726 624019 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395145.1;Dbxref=Genbank:YP_002395145.1,GeneID:7137855;ID=cds539;Name=YP_002395145.1 +NC_011744 S-MART CDS 624071 624967 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395146.1;Dbxref=Genbank:YP_002395146.1,GeneID:7137856;ID=cds540;Name=YP_002395146.1 +NC_011744 S-MART CDS 625084 625464 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395147.1;Dbxref=Genbank:YP_002395147.1,GeneID:7137857;ID=cds541;Name=YP_002395147.1 +NC_011744 S-MART CDS 625545 631388 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395154.1;Dbxref=Genbank:YP_002395154.1,GeneID:7137864;ID=cds548;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0 +NC_011744 S-MART exon 625545 627236 . - . ID=cds548-exon1;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon1;Parent=cds548 +NC_011744 S-MART exon 627379 627999 . - . ID=cds548-exon2;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon2;Parent=cds548 +NC_011744 S-MART exon 628034 629065 . - . ID=cds548-exon3;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon3;Parent=cds548 +NC_011744 S-MART exon 629203 629856 . - . ID=cds548-exon4;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon4;Parent=cds548 +NC_011744 S-MART exon 629964 630437 . - . ID=cds548-exon5;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon5;Parent=cds548 +NC_011744 S-MART exon 630480 631106 . - . ID=cds548-exon6;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon6;Parent=cds548 +NC_011744 S-MART exon 631230 631388 . - . ID=cds548-exon7;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon7;Parent=cds548 +NC_011744 S-MART CDS 631360 631971 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395155.1;Dbxref=Genbank:YP_002395155.1,GeneID:7137865;ID=cds549;Name=YP_002395155.1 +NC_011744 S-MART CDS 632080 634121 . - . product=anaerobic nitric oxide reductase transcriptional regulator;nbElements=2.000000;transl_table=11;Note=Required for the expression of anaerobic nitric oxide %28NO%29 reductase%3B acts as a transcriptional activator for the norVW operon;gbkey=CDS;protein_id=YP_002395157.1;Dbxref=Genbank:YP_002395157.1,GeneID:7137867;ID=cds551;Name=YP_002395157.1--YP_002395156.1 +NC_011744 S-MART exon 632080 632517 . - . ID=cds551-exon1;Name=YP_002395157.1--YP_002395156.1-exon1;Parent=cds551 +NC_011744 S-MART exon 632529 634121 . - . ID=cds551-exon2;Name=YP_002395157.1--YP_002395156.1-exon2;Parent=cds551 +NC_011744 S-MART CDS 634471 635667 . + . product=nitric oxide dioxygenase;transl_table=11;Note=flavohemoprotein%3B catalyzes the formation of nitrate from nitric oxide%3B can also catalyze the reduction of dihydropteridine;gbkey=CDS;protein_id=YP_002395158.1;Dbxref=Genbank:YP_002395158.1,GeneID:7137868;ID=cds552;Name=YP_002395158.1 +NC_011744 S-MART CDS 635827 636852 . - . product=Tellurite resistance protein;transl_table=11;gbkey=CDS;protein_id=YP_002395159.1;Dbxref=Genbank:YP_002395159.1,GeneID:7137869;ID=cds553;Name=YP_002395159.1 +NC_011744 S-MART CDS 637090 638535 . - . product=chloride channel protein;transl_table=11;Note=Acts as an electrical shunt for an outwardly-directed proton pump that is linked to amino acid decarboxylation;gbkey=CDS;protein_id=YP_002395160.1;Dbxref=Genbank:YP_002395160.1,GeneID:7137870;ID=cds554;Name=YP_002395160.1 +NC_011744 S-MART CDS 639037 640020 . + . product=cobalamin synthesis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395161.1;Dbxref=Genbank:YP_002395161.1,GeneID:7137871;ID=cds555;Name=YP_002395161.1 +NC_011744 S-MART CDS 640203 641489 . + . product=Superfamily II DNA and RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002395162.1;Dbxref=Genbank:YP_002395162.1,GeneID:7137872;ID=cds556;Name=YP_002395162.1 +NC_011744 S-MART CDS 641777 642274 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395163.1;Dbxref=Genbank:YP_002395163.1,GeneID:7137873;ID=cds557;Name=YP_002395163.1 +NC_011744 S-MART CDS 642526 644553 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395164.1;Dbxref=Genbank:YP_002395164.1,GeneID:7137874;ID=cds558;Name=YP_002395164.1 +NC_011744 S-MART CDS 644806 645147 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395165.1;Dbxref=Genbank:YP_002395165.1,GeneID:7137875;ID=cds559;Name=YP_002395165.1 +NC_011744 S-MART CDS 645401 649161 . + . product=two-component sensor histidine kinase;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395170.1;Dbxref=Genbank:YP_002395170.1,GeneID:7137880;ID=cds564;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1 +NC_011744 S-MART exon 645401 646217 . + . ID=cds564-exon1;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon1;Parent=cds564 +NC_011744 S-MART exon 646227 646907 . + . ID=cds564-exon2;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon2;Parent=cds564 +NC_011744 S-MART exon 646990 647721 . + . ID=cds564-exon3;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon3;Parent=cds564 +NC_011744 S-MART exon 647788 649161 . + . ID=cds564-exon4;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon4;Parent=cds564 +NC_011744 S-MART CDS 650699 650857 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395173.1;Dbxref=Genbank:YP_002395173.1,GeneID:7137883;ID=cds567;Name=YP_002395173.1 +NC_011744 S-MART CDS 649298 650877 . - . product=Permease of the drug metabolite transporter %28DMT%29 superfamily;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395172.1;Dbxref=Genbank:YP_002395172.1,GeneID:7137882;ID=cds566;Name=YP_002395172.1--YP_002395171.1 +NC_011744 S-MART exon 649298 649801 . - . ID=cds566-exon1;Name=YP_002395172.1--YP_002395171.1-exon1;Parent=cds566 +NC_011744 S-MART exon 649939 650877 . - . ID=cds566-exon2;Name=YP_002395172.1--YP_002395171.1-exon2;Parent=cds566 +NC_011744 S-MART CDS 651018 651476 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395174.1;Dbxref=Genbank:YP_002395174.1,GeneID:7137884;ID=cds568;Name=YP_002395174.1 +NC_011744 S-MART CDS 651713 651955 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395175.1;Dbxref=Genbank:YP_002395175.1,GeneID:7137885;ID=cds569;Name=YP_002395175.1 +NC_011744 S-MART CDS 652234 652809 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395176.1;Dbxref=Genbank:YP_002395176.1,GeneID:7137886;ID=cds570;Name=YP_002395176.1 +NC_011744 S-MART CDS 652906 653586 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395177.1;Dbxref=Genbank:YP_002395177.1,GeneID:7137887;ID=cds571;Name=YP_002395177.1 +NC_011744 S-MART CDS 654117 658459 . + . product=Polyhydroxyalkanoic acid synthase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395181.1;Dbxref=Genbank:YP_002395181.1,GeneID:7137891;ID=cds575;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1 +NC_011744 S-MART exon 654117 654857 . + . ID=cds575-exon1;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon1;Parent=cds575 +NC_011744 S-MART exon 654884 656095 . + . ID=cds575-exon2;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon2;Parent=cds575 +NC_011744 S-MART exon 656227 656574 . + . ID=cds575-exon3;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon3;Parent=cds575 +NC_011744 S-MART exon 656648 658459 . + . ID=cds575-exon4;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon4;Parent=cds575 +NC_011744 S-MART CDS 658717 659679 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395182.1;Dbxref=Genbank:YP_002395182.1,GeneID:7137892;ID=cds576;Name=YP_002395182.1 +NC_011744 S-MART CDS 659861 667587 . - . product=outer membrane transport protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395187.1;Dbxref=Genbank:YP_002395187.1,GeneID:7137897;ID=cds581;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1 +NC_011744 S-MART exon 659861 661168 . - . ID=cds581-exon1;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1-exon1;Parent=cds581 +NC_011744 S-MART exon 661171 666218 . - . ID=cds581-exon2;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1-exon2;Parent=cds581 +NC_011744 S-MART exon 666220 667587 . - . ID=cds581-exon3;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1-exon3;Parent=cds581 +NC_011744 S-MART CDS 667829 669037 . - . product=HD-GYP domain containing protein;transl_table=11;gbkey=CDS;protein_id=YP_002395188.1;Dbxref=Genbank:YP_002395188.1,GeneID:7137898;ID=cds582;Name=YP_002395188.1 +NC_011744 S-MART CDS 669479 674120 . - . product=%28Fe-S%29-binding protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395194.1;Dbxref=Genbank:YP_002395194.1,GeneID:7137904;ID=cds588;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1 +NC_011744 S-MART exon 669479 669616 . - . ID=cds588-exon1;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon1;Parent=cds588 +NC_011744 S-MART exon 669628 670209 . - . ID=cds588-exon2;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon2;Parent=cds588 +NC_011744 S-MART exon 670239 670700 . - . ID=cds588-exon3;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon3;Parent=cds588 +NC_011744 S-MART exon 670826 673617 . - . ID=cds588-exon4;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon4;Parent=cds588 +NC_011744 S-MART exon 673641 674120 . - . ID=cds588-exon5;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon5;Parent=cds588 +NC_011744 S-MART CDS 674374 676723 . + . product=nitrate%2Fnitrite response regulator protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395196.1;Dbxref=Genbank:YP_002395196.1,GeneID:7137906;ID=cds590;Name=YP_002395196.1--YP_002395195.1 +NC_011744 S-MART CDS 676943 678322 . - . product=C4-dicarboxylate transporter DcuC;transl_table=11;Note=responsible for the transport of C4-dicarboxylates during anaerobic growth;gbkey=CDS;protein_id=YP_002395197.1;Dbxref=Genbank:YP_002395197.1,GeneID:7137907;ID=cds591;Name=YP_002395197.1 +NC_011744 S-MART CDS 678877 679593 . - . product=DNA-binding transcriptional repressor MngR;transl_table=11;Note=regulates the succiny-lCoA synthetase operon;gbkey=CDS;protein_id=YP_002395198.1;Dbxref=Genbank:YP_002395198.1,GeneID:7137908;ID=cds592;Name=YP_002395198.1 +NC_011744 S-MART CDS 679911 681845 . + . product=PTS system 2-O-a-mannosyl-D-glycerate specific transporter subunit IIABC;transl_table=11;Note=involved in the phosphorylation and transport of sugars across the cell membrane%3B protein IIA transfers a phosphoryl group to IIB which then transfers the phosphoryl group to the sugar%3B IIC forms the translocation channel for the sugar uptake;gbkey=CDS;protein_id=YP_002395199.1;Dbxref=Genbank:YP_002395199.1,GeneID:7137909;ID=cds593;Name=YP_002395199.1 +NC_011744 S-MART CDS 682083 687140 . + . product=mannose-6-phosphate isomerase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395202.1;Dbxref=Genbank:YP_002395202.1,GeneID:7137912;ID=cds596;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1 +NC_011744 S-MART exon 682083 684737 . + . ID=cds596-exon1;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1-exon1;Parent=cds596 +NC_011744 S-MART exon 684784 685950 . + . ID=cds596-exon2;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1-exon2;Parent=cds596 +NC_011744 S-MART exon 685953 687140 . + . ID=cds596-exon3;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1-exon3;Parent=cds596 +NC_011744 S-MART CDS 687546 689373 . - . product=acyl-CoA desaturase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395204.1;Dbxref=Genbank:YP_002395204.1,GeneID:7137914;ID=cds598;Name=YP_002395204.1--YP_002395203.1 +NC_011744 S-MART exon 687546 687941 . - . ID=cds598-exon1;Name=YP_002395204.1--YP_002395203.1-exon1;Parent=cds598 +NC_011744 S-MART exon 688090 689373 . - . ID=cds598-exon2;Name=YP_002395204.1--YP_002395203.1-exon2;Parent=cds598 +NC_011744 S-MART CDS 689399 689944 . + . product=acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395205.1;Dbxref=Genbank:YP_002395205.1,GeneID:7137915;ID=cds599;Name=YP_002395205.1 +NC_011744 S-MART CDS 690130 691161 . - . product=ribosomal biogenesis GTPase;transl_table=11;Note=essential GTPase%3B functions in ribosome assembly%3B binds a unique part of the 23S rRNA%3B interacts with ribosomal protein L25%28Ctc%29;gbkey=CDS;protein_id=YP_002395206.1;Dbxref=Genbank:YP_002395206.1,GeneID:7137916;ID=cds600;Name=YP_002395206.1 +NC_011744 S-MART CDS 691396 692056 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395210.1;Dbxref=Genbank:YP_002395210.1,GeneID:7137920;ID=cds604;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1 +NC_011744 S-MART exon 691396 691692 . - . ID=cds604-exon1;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1-exon1;Parent=cds604 +NC_011744 S-MART exon 691693 692056 . - . ID=cds604-exon2;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1-exon2;Parent=cds604 +NC_011744 S-MART CDS 692592 694097 . - . product=aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395211.1;Dbxref=Genbank:YP_002395211.1,GeneID:7137921;ID=cds605;Name=YP_002395211.1 +NC_011744 S-MART CDS 694518 695124 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395213.1;Dbxref=Genbank:YP_002395213.1,GeneID:7137923;ID=cds607;Name=YP_002395213.1--YP_002395212.1 +NC_011744 S-MART CDS 696153 697172 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395214.1;Dbxref=Genbank:YP_002395214.1,GeneID:7137924;ID=cds608;Name=YP_002395214.1 +NC_011744 S-MART CDS 697351 698611 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395216.1;Dbxref=Genbank:YP_002395216.1,GeneID:7137926;ID=cds610;Name=YP_002395216.1--YP_002395215.1 +NC_011744 S-MART CDS 699090 699815 . - . product=Transcription activator ToxR;transl_table=11;gbkey=CDS;protein_id=YP_002395217.1;Dbxref=Genbank:YP_002395217.1,GeneID:7137927;ID=cds611;Name=YP_002395217.1 +NC_011744 S-MART CDS 700082 701402 . - . product=thiol peroxidase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395220.1;Dbxref=Genbank:YP_002395220.1,GeneID:7137930;ID=cds614;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1 +NC_011744 S-MART exon 700082 700240 . - . ID=cds614-exon1;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1-exon1;Parent=cds614 +NC_011744 S-MART exon 700294 701402 . - . ID=cds614-exon2;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1-exon2;Parent=cds614 +NC_011744 S-MART CDS 701981 702466 . + . product=lipoprotein;transl_table=11;gbkey=CDS;protein_id=YP_002395221.1;Dbxref=Genbank:YP_002395221.1,GeneID:7137931;ID=cds615;Name=YP_002395221.1 +NC_011744 S-MART CDS 702643 705370 . + . product=aspartate racemase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395224.1;Dbxref=Genbank:YP_002395224.1,GeneID:7137934;ID=cds618;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1 +NC_011744 S-MART exon 702643 702834 . + . ID=cds618-exon1;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1-exon1;Parent=cds618 +NC_011744 S-MART exon 702952 704613 . + . ID=cds618-exon2;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1-exon2;Parent=cds618 +NC_011744 S-MART exon 704687 705370 . + . ID=cds618-exon3;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1-exon3;Parent=cds618 +NC_011744 S-MART CDS 705792 712546 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395231.1;Dbxref=Genbank:YP_002395231.1,GeneID:7137941;ID=cds625;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0 +NC_011744 S-MART exon 705792 706475 . - . ID=cds625-exon1;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon1;Parent=cds625 +NC_011744 S-MART exon 706571 710604 . - . ID=cds625-exon2;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon2;Parent=cds625 +NC_011744 S-MART exon 710607 711347 . - . ID=cds625-exon3;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon3;Parent=cds625 +NC_011744 S-MART exon 711447 711944 . - . ID=cds625-exon4;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon4;Parent=cds625 +NC_011744 S-MART exon 712022 712546 . - . ID=cds625-exon5;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon5;Parent=cds625 +NC_011744 S-MART CDS 713325 714942 . - . product=MutT%2Fnudix family protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395233.1;Dbxref=Genbank:YP_002395233.1,GeneID:7137943;ID=cds627;Name=YP_002395233.1--YP_002395232.1 +NC_011744 S-MART exon 713325 714329 . - . ID=cds627-exon1;Name=YP_002395233.1--YP_002395232.1-exon1;Parent=cds627 +NC_011744 S-MART exon 714370 714942 . - . ID=cds627-exon2;Name=YP_002395233.1--YP_002395232.1-exon2;Parent=cds627 +NC_011744 S-MART CDS 715173 718286 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=contains a von Willibrand factor type A domain%3B stimulates the ATPase activity of RavA;gbkey=CDS;protein_id=YP_002395235.1;Dbxref=Genbank:YP_002395235.1,GeneID:7137945;ID=cds629;Name=YP_002395235.1--YP_002395234.1 +NC_011744 S-MART exon 715173 716828 . + . ID=cds629-exon1;Name=YP_002395235.1--YP_002395234.1-exon1;Parent=cds629 +NC_011744 S-MART exon 716841 718286 . + . ID=cds629-exon2;Name=YP_002395235.1--YP_002395234.1-exon2;Parent=cds629 +NC_011744 S-MART tRNA 718483 718990 . + . product=tRNA-Cys;nbElements=4.000000;gbkey=tRNA;Dbxref=GeneID:7138813;ID=rna8;Name=rna8--rna7--rna6--rna5 +NC_011744 S-MART exon 718483 718556 . + . ID=rna8-exon1;Name=rna8--rna7--rna6--rna5-exon1;Parent=rna8 +NC_011744 S-MART exon 718609 718684 . + . ID=rna8-exon2;Name=rna8--rna7--rna6--rna5-exon2;Parent=rna8 +NC_011744 S-MART exon 718765 718851 . + . ID=rna8-exon3;Name=rna8--rna7--rna6--rna5-exon3;Parent=rna8 +NC_011744 S-MART exon 718917 718990 . + . ID=rna8-exon4;Name=rna8--rna7--rna6--rna5-exon4;Parent=rna8 +NC_011744 S-MART CDS 719066 719854 . - . product=Lipase-related protein;transl_table=11;gbkey=CDS;protein_id=YP_002395236.1;Dbxref=Genbank:YP_002395236.1,GeneID:7138814;ID=cds630;Name=YP_002395236.1 +NC_011744 S-MART tRNA 720204 720874 . + . product=tRNA-Cys;nbElements=5.000000;gbkey=tRNA;Dbxref=GeneID:7138818;ID=rna13;Name=rna13--rna12--rna11--rna10--rna9 +NC_011744 S-MART exon 720204 720290 . + . ID=rna13-exon1;Name=rna13--rna12--rna11--rna10--rna9-exon1;Parent=rna13 +NC_011744 S-MART exon 720373 720446 . + . ID=rna13-exon2;Name=rna13--rna12--rna11--rna10--rna9-exon2;Parent=rna13 +NC_011744 S-MART exon 720493 720568 . + . ID=rna13-exon3;Name=rna13--rna12--rna11--rna10--rna9-exon3;Parent=rna13 +NC_011744 S-MART exon 720649 720735 . + . ID=rna13-exon4;Name=rna13--rna12--rna11--rna10--rna9-exon4;Parent=rna13 +NC_011744 S-MART exon 720801 720874 . + . ID=rna13-exon5;Name=rna13--rna12--rna11--rna10--rna9-exon5;Parent=rna13 +NC_011744 S-MART CDS 720954 722141 . - . product=lipoprotein;transl_table=11;gbkey=CDS;protein_id=YP_002395237.1;Dbxref=Genbank:YP_002395237.1,GeneID:7138819;ID=cds631;Name=YP_002395237.1 +NC_011744 S-MART CDS 722348 724667 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395239.1;Dbxref=Genbank:YP_002395239.1,GeneID:7137949;ID=cds633;Name=YP_002395239.1--YP_002395238.1 +NC_011744 S-MART exon 722348 724360 . - . ID=cds633-exon1;Name=YP_002395239.1--YP_002395238.1-exon1;Parent=cds633 +NC_011744 S-MART exon 724446 724667 . - . ID=cds633-exon2;Name=YP_002395239.1--YP_002395238.1-exon2;Parent=cds633 +NC_011744 S-MART CDS 724495 730500 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395244.1;Dbxref=Genbank:YP_002395244.1,GeneID:7137954;ID=cds638;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1 +NC_011744 S-MART exon 724495 727302 . + . ID=cds638-exon1;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1-exon1;Parent=cds638 +NC_011744 S-MART exon 727303 730047 . + . ID=cds638-exon2;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1-exon2;Parent=cds638 +NC_011744 S-MART exon 730057 730500 . + . ID=cds638-exon3;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1-exon3;Parent=cds638 +NC_011744 S-MART CDS 730674 731138 . - . product=Azu1 pseudoazurin %28blue copper protein%29;transl_table=11;gbkey=CDS;protein_id=YP_002395245.1;Dbxref=Genbank:YP_002395245.1,GeneID:7137955;ID=cds639;Name=YP_002395245.1 +NC_011744 S-MART CDS 731582 732379 . + . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395246.1;Dbxref=Genbank:YP_002395246.1,GeneID:7137956;ID=cds640;Name=YP_002395246.1 +NC_011744 S-MART CDS 732547 734338 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395250.1;Dbxref=Genbank:YP_002395250.1,GeneID:7137960;ID=cds644;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1 +NC_011744 S-MART exon 732547 733272 . + . ID=cds644-exon1;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1-exon1;Parent=cds644 +NC_011744 S-MART exon 733279 733750 . + . ID=cds644-exon2;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1-exon2;Parent=cds644 +NC_011744 S-MART exon 733844 734338 . + . ID=cds644-exon3;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1-exon3;Parent=cds644 +NC_011744 S-MART CDS 734620 734799 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395251.1;Dbxref=Genbank:YP_002395251.1,GeneID:7137961;ID=cds645;Name=YP_002395251.1 +NC_011744 S-MART CDS 735583 738480 . + . product=nitrite reductase small subunit;nbElements=2.000000;transl_table=11;Note=involved in reducing nitrite to ammonium to detoxify nitrite accumulation in anaerobic nitrate-respiring cells and regenerate NAD%2B%3B bounds to NirB%2C the cytoplasmic subunit%2C whose expression is induced at high nitrate concentrations;gbkey=CDS;protein_id=YP_002395253.1;Dbxref=Genbank:YP_002395253.1,GeneID:7137963;ID=cds647;Name=YP_002395253.1--YP_002395252.1 +NC_011744 S-MART exon 735583 738141 . + . ID=cds647-exon1;Name=YP_002395253.1--YP_002395252.1-exon1;Parent=cds647 +NC_011744 S-MART exon 738157 738480 . + . ID=cds647-exon2;Name=YP_002395253.1--YP_002395252.1-exon2;Parent=cds647 +NC_011744 S-MART CDS 738656 739471 . + . product=formate dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395254.1;Dbxref=Genbank:YP_002395254.1,GeneID:7137964;ID=cds648;Name=YP_002395254.1 +NC_011744 S-MART CDS 739788 740564 . + . product=uroporphyrin-III C-methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395255.1;Dbxref=Genbank:YP_002395255.1,GeneID:7137965;ID=cds649;Name=YP_002395255.1 +NC_011744 S-MART CDS 740597 741193 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395256.1;Dbxref=Genbank:YP_002395256.1,GeneID:7137966;ID=cds650;Name=YP_002395256.1 +NC_011744 S-MART CDS 741389 743990 . + . product=two-component system sensor kinase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395259.1;Dbxref=Genbank:YP_002395259.1,GeneID:7137969;ID=cds653;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1 +NC_011744 S-MART exon 741389 741862 . + . ID=cds653-exon1;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1-exon1;Parent=cds653 +NC_011744 S-MART exon 741943 743990 . + . ID=cds653-exon2;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1-exon2;Parent=cds653 +NC_011744 S-MART CDS 744192 745496 . - . product=Na%2B%2FH%2B-dicarboxylate symporter;transl_table=11;gbkey=CDS;protein_id=YP_002395260.1;Dbxref=Genbank:YP_002395260.1,GeneID:7137970;ID=cds654;Name=YP_002395260.1 +NC_011744 S-MART CDS 746055 748184 . + . product=Ferrichrome-iron receptor;transl_table=11;gbkey=CDS;protein_id=YP_002395261.1;Dbxref=Genbank:YP_002395261.1,GeneID:7137971;ID=cds655;Name=YP_002395261.1 +NC_011744 S-MART CDS 748363 753282 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395267.1;Dbxref=Genbank:YP_002395267.1,GeneID:7137977;ID=cds661;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1 +NC_011744 S-MART exon 748363 751467 . + . ID=cds661-exon1;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1-exon1;Parent=cds661 +NC_011744 S-MART exon 751487 753282 . + . ID=cds661-exon2;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1-exon2;Parent=cds661 +NC_011744 S-MART CDS 753443 753760 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395268.1;Dbxref=Genbank:YP_002395268.1,GeneID:7137978;ID=cds662;Name=YP_002395268.1 +NC_011744 S-MART CDS 754129 760856 . + . product=metal ABC transporter substrate-binding protein;nbElements=9.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395277.1;Dbxref=Genbank:YP_002395277.1,GeneID:7137987;ID=cds671;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0 +NC_011744 S-MART exon 754129 754758 . + . ID=cds671-exon1;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon1;Parent=cds671 +NC_011744 S-MART exon 754829 755347 . + . ID=cds671-exon2;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon2;Parent=cds671 +NC_011744 S-MART exon 755461 756297 . + . ID=cds671-exon3;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon3;Parent=cds671 +NC_011744 S-MART exon 756411 757339 . + . ID=cds671-exon4;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon4;Parent=cds671 +NC_011744 S-MART exon 757362 759930 . + . ID=cds671-exon5;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon5;Parent=cds671 +NC_011744 S-MART exon 759933 760856 . + . ID=cds671-exon6;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon6;Parent=cds671 +NC_011744 S-MART CDS 760983 761213 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395278.1;Dbxref=Genbank:YP_002395278.1,GeneID:7137988;ID=cds672;Name=YP_002395278.1 +NC_011744 S-MART CDS 761311 762224 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395280.1;Dbxref=Genbank:YP_002395280.1,GeneID:7137990;ID=cds674;Name=YP_002395280.1--YP_002395279.1 +NC_011744 S-MART exon 761311 761826 . + . ID=cds674-exon1;Name=YP_002395280.1--YP_002395279.1-exon1;Parent=cds674 +NC_011744 S-MART exon 761829 762224 . + . ID=cds674-exon2;Name=YP_002395280.1--YP_002395279.1-exon2;Parent=cds674 +NC_011744 S-MART CDS 762344 763741 . - . product=Na%2B-driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395281.1;Dbxref=Genbank:YP_002395281.1,GeneID:7137991;ID=cds675;Name=YP_002395281.1 +NC_011744 S-MART CDS 763792 765180 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395283.1;Dbxref=Genbank:YP_002395283.1,GeneID:7137993;ID=cds677;Name=YP_002395283.1--YP_002395282.1 +NC_011744 S-MART exon 763792 764685 . + . ID=cds677-exon1;Name=YP_002395283.1--YP_002395282.1-exon1;Parent=cds677 +NC_011744 S-MART exon 764824 765180 . + . ID=cds677-exon2;Name=YP_002395283.1--YP_002395282.1-exon2;Parent=cds677 +NC_011744 S-MART CDS 765352 765687 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395284.1;Dbxref=Genbank:YP_002395284.1,GeneID:7137994;ID=cds678;Name=YP_002395284.1 +NC_011744 S-MART CDS 765840 766991 . - . product=permease;transl_table=11;gbkey=CDS;protein_id=YP_002395285.1;Dbxref=Genbank:YP_002395285.1,GeneID:7137995;ID=cds679;Name=YP_002395285.1 +NC_011744 S-MART CDS 766991 767272 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395286.1;Dbxref=Genbank:YP_002395286.1,GeneID:7137996;ID=cds680;Name=YP_002395286.1 +NC_011744 S-MART CDS 767430 769079 . + . product=choline dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395287.1;Dbxref=Genbank:YP_002395287.1,GeneID:7137997;ID=cds681;Name=YP_002395287.1 +NC_011744 S-MART CDS 769225 769659 . - . product=thioredoxin;transl_table=11;gbkey=CDS;protein_id=YP_002395288.1;Dbxref=Genbank:YP_002395288.1,GeneID:7137998;ID=cds682;Name=YP_002395288.1 +NC_011744 S-MART CDS 769782 772232 . + . product=glycosyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395290.1;Dbxref=Genbank:YP_002395290.1,GeneID:7138000;ID=cds684;Name=YP_002395290.1--YP_002395289.1 +NC_011744 S-MART exon 769782 770879 . + . ID=cds684-exon1;Name=YP_002395290.1--YP_002395289.1-exon1;Parent=cds684 +NC_011744 S-MART exon 771000 772232 . + . ID=cds684-exon2;Name=YP_002395290.1--YP_002395289.1-exon2;Parent=cds684 +NC_011744 S-MART CDS 772433 773340 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395292.1;Dbxref=Genbank:YP_002395292.1,GeneID:7138002;ID=cds686;Name=YP_002395292.1--YP_002395291.1 +NC_011744 S-MART CDS 773488 774363 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395293.1;Dbxref=Genbank:YP_002395293.1,GeneID:7138003;ID=cds687;Name=YP_002395293.1 +NC_011744 S-MART CDS 774662 776785 . + . product=anaerobic ribonucleoside triphosphate reductase;nbElements=2.000000;transl_table=11;Note=Catalyzes the reduction of nucleoside 5%27-triphosphates to 2%27-deoxynucleoside 5%27-triphosphates;gbkey=CDS;protein_id=YP_002395295.1;Dbxref=Genbank:YP_002395295.1,GeneID:7138005;ID=cds689;Name=YP_002395295.1--YP_002395294.2 +NC_011744 S-MART CDS 776941 777411 . + . product=anaerobic ribonucleotide reductase-activating protein;transl_table=11;Note=activates anaerobic ribonucleoside-triphosphate reductase under anaerobic conditions;gbkey=CDS;protein_id=YP_002395296.1;Dbxref=Genbank:YP_002395296.1,GeneID:7138826;ID=cds690;Name=YP_002395296.1 +NC_011744 S-MART CDS 777526 778953 . - . product=Na%2B-driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395297.1;Dbxref=Genbank:YP_002395297.1,GeneID:7138006;ID=cds691;Name=YP_002395297.1 +NC_011744 S-MART CDS 779044 779883 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395298.1;Dbxref=Genbank:YP_002395298.1,GeneID:7138007;ID=cds692;Name=YP_002395298.1 +NC_011744 S-MART CDS 780127 782018 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395300.1;Dbxref=Genbank:YP_002395300.1,GeneID:7138009;ID=cds694;Name=YP_002395300.1--YP_002395299.1 +NC_011744 S-MART exon 780127 781320 . + . ID=cds694-exon1;Name=YP_002395300.1--YP_002395299.1-exon1;Parent=cds694 +NC_011744 S-MART exon 781332 782018 . + . ID=cds694-exon2;Name=YP_002395300.1--YP_002395299.1-exon2;Parent=cds694 +NC_011744 S-MART CDS 782335 783918 . + . product=ABC transporter ATP-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395301.1;Dbxref=Genbank:YP_002395301.1,GeneID:7138010;ID=cds695;Name=YP_002395301.1 +NC_011744 S-MART CDS 784159 786045 . - . product=methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395302.1;Dbxref=Genbank:YP_002395302.1,GeneID:7138011;ID=cds696;Name=YP_002395302.1 +NC_011744 S-MART CDS 786336 787386 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395304.1;Dbxref=Genbank:YP_002395304.1,GeneID:7138013;ID=cds698;Name=YP_002395304.1--YP_002395303.1 +NC_011744 S-MART exon 786336 786860 . - . ID=cds698-exon1;Name=YP_002395304.1--YP_002395303.1-exon1;Parent=cds698 +NC_011744 S-MART exon 786973 787386 . - . ID=cds698-exon2;Name=YP_002395304.1--YP_002395303.1-exon2;Parent=cds698 +NC_011744 S-MART CDS 787649 791742 . + . product=molybdate transporter ATP-binding protein;nbElements=4.000000;transl_table=11;Note=Part of the ABC transporter complex modABC involved in molybdenum import;gbkey=CDS;protein_id=YP_002395308.1;Dbxref=Genbank:YP_002395308.1,GeneID:7138017;ID=cds702;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1 +NC_011744 S-MART exon 787649 789115 . + . ID=cds702-exon1;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1-exon1;Parent=cds702 +NC_011744 S-MART exon 789173 789931 . + . ID=cds702-exon2;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1-exon2;Parent=cds702 +NC_011744 S-MART exon 789932 791742 . + . ID=cds702-exon3;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1-exon3;Parent=cds702 +NC_011744 S-MART CDS 792189 792626 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395309.1;Dbxref=Genbank:YP_002395309.1,GeneID:7138018;ID=cds703;Name=YP_002395309.1 +NC_011744 S-MART CDS 792758 794817 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395311.1;Dbxref=Genbank:YP_002395311.1,GeneID:7138020;ID=cds705;Name=YP_002395311.1--YP_002395310.1 +NC_011744 S-MART exon 792758 793729 . + . ID=cds705-exon1;Name=YP_002395311.1--YP_002395310.1-exon1;Parent=cds705 +NC_011744 S-MART exon 793795 794817 . + . ID=cds705-exon2;Name=YP_002395311.1--YP_002395310.1-exon2;Parent=cds705 +NC_011744 S-MART CDS 794897 796138 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395312.1;Dbxref=Genbank:YP_002395312.1,GeneID:7138021;ID=cds706;Name=YP_002395312.1 +NC_011744 S-MART CDS 796531 797219 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395314.1;Dbxref=Genbank:YP_002395314.1,GeneID:7138023;ID=cds708;Name=YP_002395314.1--YP_002395313.1 +NC_011744 S-MART exon 796531 796899 . + . ID=cds708-exon1;Name=YP_002395314.1--YP_002395313.1-exon1;Parent=cds708 +NC_011744 S-MART exon 796938 797219 . + . ID=cds708-exon2;Name=YP_002395314.1--YP_002395313.1-exon2;Parent=cds708 +NC_011744 S-MART CDS 797519 800474 . + . product=pyridine nucleotide transhydrogenase;nbElements=2.000000;transl_table=11;Note=catalyzes reversible transfer of hydride ion equivalent between NAD and NADP%3B membrane-bound proton pump that translocates protons from cytosolic to periplasmic side of the inner membrane%3B forms a tetramer composed of two alpha and 2 beta subunits%3B AB-stereospecific enzyme;gbkey=CDS;protein_id=YP_002395316.1;Dbxref=Genbank:YP_002395316.1,GeneID:7138025;ID=cds710;Name=YP_002395316.1--YP_002395315.1 +NC_011744 S-MART exon 797519 799066 . + . ID=cds710-exon1;Name=YP_002395316.1--YP_002395315.1-exon1;Parent=cds710 +NC_011744 S-MART exon 799077 800474 . + . ID=cds710-exon2;Name=YP_002395316.1--YP_002395315.1-exon2;Parent=cds710 +NC_011744 S-MART CDS 800590 800664 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395317.1;Dbxref=Genbank:YP_002395317.1,GeneID:7138026;ID=cds711;Name=YP_002395317.1 +NC_011744 S-MART CDS 800800 805192 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395322.1;Dbxref=Genbank:YP_002395322.1,GeneID:7138031;ID=cds716;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1 +NC_011744 S-MART exon 800800 803784 . + . ID=cds716-exon1;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1-exon1;Parent=cds716 +NC_011744 S-MART exon 803844 804998 . + . ID=cds716-exon2;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1-exon2;Parent=cds716 +NC_011744 S-MART exon 805040 805192 . + . ID=cds716-exon3;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1-exon3;Parent=cds716 +NC_011744 S-MART CDS 805664 805798 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395323.1;Dbxref=Genbank:YP_002395323.1,GeneID:7138032;ID=cds717;Name=YP_002395323.1 +NC_011744 S-MART CDS 805957 807273 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395324.1;Dbxref=Genbank:YP_002395324.1,GeneID:7138033;ID=cds718;Name=YP_002395324.1 +NC_011744 S-MART CDS 807681 808154 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395325.1;Dbxref=Genbank:YP_002395325.1,GeneID:7138034;ID=cds719;Name=YP_002395325.1 +NC_011744 S-MART CDS 808421 809114 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395327.1;Dbxref=Genbank:YP_002395327.1,GeneID:7138036;ID=cds721;Name=YP_002395327.1--YP_002395326.1 +NC_011744 S-MART exon 808421 808732 . - . ID=cds721-exon1;Name=YP_002395327.1--YP_002395326.1-exon1;Parent=cds721 +NC_011744 S-MART exon 808737 809114 . - . ID=cds721-exon2;Name=YP_002395327.1--YP_002395326.1-exon2;Parent=cds721 +NC_011744 S-MART CDS 809209 810177 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395328.1;Dbxref=Genbank:YP_002395328.1,GeneID:7138037;ID=cds722;Name=YP_002395328.1 +NC_011744 S-MART CDS 810377 811372 . - . product=D-alanyl-alanine synthetase A;transl_table=11;Note=D-alanine--D-alanine ligase%3B DdlA%3B DdlB%3B cytoplasmic%3B catalyzes the formation of D-alanyl-D-alanine from two D-alanines in peptidoglycan synthesis%3B there are two forms of this enzyme in Escherichia coli;gbkey=CDS;protein_id=YP_002395329.1;Dbxref=Genbank:YP_002395329.1,GeneID:7138038;ID=cds723;Name=YP_002395329.1 +NC_011744 S-MART CDS 811552 812115 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395330.1;Dbxref=Genbank:YP_002395330.1,GeneID:7138039;ID=cds724;Name=YP_002395330.1 +NC_011744 S-MART CDS 812332 815013 . + . product=acyl-CoA synthetase;transl_table=11;gbkey=CDS;protein_id=YP_002395331.1;Dbxref=Genbank:YP_002395331.1,GeneID:7138040;ID=cds725;Name=YP_002395331.1 +NC_011744 S-MART CDS 815005 815892 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395332.1;Dbxref=Genbank:YP_002395332.1,GeneID:7138041;ID=cds726;Name=YP_002395332.1 +NC_011744 S-MART CDS 815945 818255 . + . product=heme receptor;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395334.1;Dbxref=Genbank:YP_002395334.1,GeneID:7138043;ID=cds728;Name=YP_002395334.1--YP_002395333.1 +NC_011744 S-MART exon 815945 816109 . + . ID=cds728-exon1;Name=YP_002395334.1--YP_002395333.1-exon1;Parent=cds728 +NC_011744 S-MART exon 816117 818255 . + . ID=cds728-exon2;Name=YP_002395334.1--YP_002395333.1-exon2;Parent=cds728 +NC_011744 S-MART CDS 818680 819693 . - . product=UDP-glucose 4-epimerase;transl_table=11;gbkey=CDS;protein_id=YP_002395335.1;Dbxref=Genbank:YP_002395335.1,GeneID:7138044;ID=cds729;Name=YP_002395335.1 +NC_011744 S-MART CDS 820183 820896 . + . product=LamB%2FYcsF family protein;transl_table=11;gbkey=CDS;protein_id=YP_002395336.1;Dbxref=Genbank:YP_002395336.1,GeneID:7138045;ID=cds730;Name=YP_002395336.1 +NC_011744 S-MART CDS 821073 822780 . + . product=Allophanate hydrolase subunit 2;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395338.1;Dbxref=Genbank:YP_002395338.1,GeneID:7138047;ID=cds732;Name=YP_002395338.1--YP_002395337.1 +NC_011744 S-MART CDS 822927 824381 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395339.1;Dbxref=Genbank:YP_002395339.1,GeneID:7138048;ID=cds733;Name=YP_002395339.1 +NC_011744 S-MART CDS 824914 828028 . - . product=ABC transporter ATP-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395341.1;Dbxref=Genbank:YP_002395341.1,GeneID:7138050;ID=cds735;Name=YP_002395341.1--YP_002395340.1 +NC_011744 S-MART exon 824914 827352 . - . ID=cds735-exon1;Name=YP_002395341.1--YP_002395340.1-exon1;Parent=cds735 +NC_011744 S-MART exon 827354 828028 . - . ID=cds735-exon2;Name=YP_002395341.1--YP_002395340.1-exon2;Parent=cds735 +NC_011744 S-MART CDS 828027 829925 . + . product=trans-2-enoyl-CoA reductase;nbElements=2.000000;transl_table=11;Note=enzyme from Treponema denticola exhibits NADH-dependent trans-2-enoyl-CoA reductase activity;gbkey=CDS;protein_id=YP_002395343.1;Dbxref=Genbank:YP_002395343.1,GeneID:7138052;ID=cds737;Name=YP_002395343.1--YP_002395342.1 +NC_011744 S-MART exon 828027 828644 . + . ID=cds737-exon1;Name=YP_002395343.1--YP_002395342.1-exon1;Parent=cds737 +NC_011744 S-MART exon 828726 829925 . + . ID=cds737-exon2;Name=YP_002395343.1--YP_002395342.1-exon2;Parent=cds737 +NC_011744 S-MART CDS 830104 833803 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395345.1;Dbxref=Genbank:YP_002395345.1,GeneID:7138054;ID=cds739;Name=YP_002395345.1--YP_002395344.1 +NC_011744 S-MART exon 830104 832011 . + . ID=cds739-exon1;Name=YP_002395345.1--YP_002395344.1-exon1;Parent=cds739 +NC_011744 S-MART exon 832130 833803 . + . ID=cds739-exon2;Name=YP_002395345.1--YP_002395344.1-exon2;Parent=cds739 +NC_011744 S-MART CDS 834047 835945 . + . product=cell division protein FtsI;transl_table=11;gbkey=CDS;protein_id=YP_002395346.1;Dbxref=Genbank:YP_002395346.1,GeneID:7138055;ID=cds740;Name=YP_002395346.1 +NC_011744 S-MART CDS 836127 836747 . - . product=molecular chaperone DnaJ;transl_table=11;gbkey=CDS;protein_id=YP_002395347.1;Dbxref=Genbank:YP_002395347.1,GeneID:7138056;ID=cds741;Name=YP_002395347.1 +NC_011744 S-MART CDS 837055 837927 . - . product=isopenicillin N synthase;transl_table=11;gbkey=CDS;protein_id=YP_002395348.1;Dbxref=Genbank:YP_002395348.1,GeneID:7138057;ID=cds742;Name=YP_002395348.1 +NC_011744 S-MART CDS 838091 838702 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395349.1;Dbxref=Genbank:YP_002395349.1,GeneID:7138058;ID=cds743;Name=YP_002395349.1 +NC_011744 S-MART CDS 839056 841686 . - . product=ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395351.1;Dbxref=Genbank:YP_002395351.1,GeneID:7138060;ID=cds745;Name=YP_002395351.1--YP_002395350.1 +NC_011744 S-MART exon 839056 839964 . - . ID=cds745-exon1;Name=YP_002395351.1--YP_002395350.1-exon1;Parent=cds745 +NC_011744 S-MART exon 839995 841686 . - . ID=cds745-exon2;Name=YP_002395351.1--YP_002395350.1-exon2;Parent=cds745 +NC_011744 S-MART CDS 841841 842573 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395353.1;Dbxref=Genbank:YP_002395353.1,GeneID:7138062;ID=cds747;Name=YP_002395353.1--YP_002395352.1 +NC_011744 S-MART exon 841841 842074 . - . ID=cds747-exon1;Name=YP_002395353.1--YP_002395352.1-exon1;Parent=cds747 +NC_011744 S-MART exon 842148 842573 . - . ID=cds747-exon2;Name=YP_002395353.1--YP_002395352.1-exon2;Parent=cds747 +NC_011744 S-MART CDS 842758 843546 . + . product=peptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395354.1;Dbxref=Genbank:YP_002395354.1,GeneID:7138063;ID=cds748;Name=YP_002395354.1 +NC_011744 S-MART CDS 843630 844736 . - . product=M50 family membrane-associated zinc metalloprotease;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395355.1;Dbxref=Genbank:YP_002395355.1,GeneID:7138064;ID=cds749;Name=YP_002395355.1 +NC_011744 S-MART CDS 845070 848778 . + . product=lipase;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395357.1;Dbxref=Genbank:YP_002395357.1,GeneID:7138066;ID=cds751;Name=YP_002395357.1--YP_002395356.1 +NC_011744 S-MART exon 845070 846329 . + . ID=cds751-exon1;Name=YP_002395357.1--YP_002395356.1-exon1;Parent=cds751 +NC_011744 S-MART exon 846343 848778 . + . ID=cds751-exon2;Name=YP_002395357.1--YP_002395356.1-exon2;Parent=cds751 +NC_011744 S-MART CDS 848999 849556 . + . product=alkylphosphonate uptake protein;transl_table=11;gbkey=CDS;protein_id=YP_002395358.1;Dbxref=Genbank:YP_002395358.1,GeneID:7138067;ID=cds752;Name=YP_002395358.1 +NC_011744 S-MART CDS 849634 851842 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395360.1;Dbxref=Genbank:YP_002395360.1,GeneID:7138069;ID=cds754;Name=YP_002395360.1--YP_002395359.1 +NC_011744 S-MART exon 849634 851040 . - . ID=cds754-exon1;Name=YP_002395360.1--YP_002395359.1-exon1;Parent=cds754 +NC_011744 S-MART exon 851063 851842 . - . ID=cds754-exon2;Name=YP_002395360.1--YP_002395359.1-exon2;Parent=cds754 +NC_011744 S-MART CDS 852000 852188 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395361.1;Dbxref=Genbank:YP_002395361.1,GeneID:7138070;ID=cds755;Name=YP_002395361.1 +NC_011744 S-MART ncRNA 852502 853701 . - . product=yybP-ykoY riboswitch;nbElements=2.000000;ncrna_class=other;gbkey=ncRNA;Dbxref=GeneID:7138072;ID=rna14;Name=rna14--YP_002395362.1 +NC_011744 S-MART exon 852502 853548 . - . ID=rna14-exon1;Name=rna14--YP_002395362.1-exon1;Parent=rna14 +NC_011744 S-MART exon 853580 853701 . - . ID=rna14-exon2;Name=rna14--YP_002395362.1-exon2;Parent=rna14 +NC_011744 S-MART CDS 853914 855859 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395365.1;Dbxref=Genbank:YP_002395365.1,GeneID:7138074;ID=cds759;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1 +NC_011744 S-MART exon 853914 854099 . - . ID=cds759-exon1;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1-exon1;Parent=cds759 +NC_011744 S-MART exon 854113 855859 . - . ID=cds759-exon2;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1-exon2;Parent=cds759 +NC_011744 S-MART CDS 856098 857870 . + . product=ATP-dependent endonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395366.1;Dbxref=Genbank:YP_002395366.1,GeneID:7138075;ID=cds760;Name=YP_002395366.1 +NC_011744 S-MART CDS 858049 858543 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395367.1;Dbxref=Genbank:YP_002395367.1,GeneID:7138076;ID=cds761;Name=YP_002395367.1 +NC_011744 S-MART CDS 859011 859916 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395368.1;Dbxref=Genbank:YP_002395368.1,GeneID:7138077;ID=cds762;Name=YP_002395368.1 +NC_011744 S-MART CDS 860190 861641 . + . product=formate transporter 1;transl_table=11;gbkey=CDS;protein_id=YP_002395369.1;Dbxref=Genbank:YP_002395369.1,GeneID:7138078;ID=cds763;Name=YP_002395369.1 +NC_011744 S-MART CDS 861979 863086 . - . product=cytochrome b561;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395372.1;Dbxref=Genbank:YP_002395372.1,GeneID:7138081;ID=cds766;Name=YP_002395372.1--YP_002395371.1--YP_002395370.1 +NC_011744 S-MART CDS 863271 863528 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395373.1;Dbxref=Genbank:YP_002395373.1,GeneID:7138082;ID=cds767;Name=YP_002395373.1 +NC_011744 S-MART CDS 863806 864733 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395375.1;Dbxref=Genbank:YP_002395375.1,GeneID:7138084;ID=cds769;Name=YP_002395375.1--YP_002395374.1 +NC_011744 S-MART exon 863806 864441 . + . ID=cds769-exon1;Name=YP_002395375.1--YP_002395374.1-exon1;Parent=cds769 +NC_011744 S-MART exon 864587 864733 . + . ID=cds769-exon2;Name=YP_002395375.1--YP_002395374.1-exon2;Parent=cds769 +NC_011744 S-MART CDS 864958 865749 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395376.1;Dbxref=Genbank:YP_002395376.1,GeneID:7138085;ID=cds770;Name=YP_002395376.1 +NC_011744 S-MART CDS 865987 871186 . - . product=membrane-fusion protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395379.1;Dbxref=Genbank:YP_002395379.1,GeneID:7138088;ID=cds773;Name=YP_002395379.1--YP_002395378.1--YP_002395377.1 +NC_011744 S-MART CDS 871342 872067 . + . product=transcriptional regulator%2C TetR family;transl_table=11;gbkey=CDS;protein_id=YP_002395380.1;Dbxref=Genbank:YP_002395380.1,GeneID:7138089;ID=cds774;Name=YP_002395380.1 +NC_011744 S-MART CDS 872230 874170 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395382.1;Dbxref=Genbank:YP_002395382.1,GeneID:7138091;ID=cds776;Name=YP_002395382.1--YP_002395381.1 +NC_011744 S-MART exon 872230 873501 . - . ID=cds776-exon1;Name=YP_002395382.1--YP_002395381.1-exon1;Parent=cds776 +NC_011744 S-MART exon 873559 874170 . - . ID=cds776-exon2;Name=YP_002395382.1--YP_002395381.1-exon2;Parent=cds776 +NC_011744 S-MART CDS 874365 874523 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395383.1;Dbxref=Genbank:YP_002395383.1,GeneID:7138092;ID=cds777;Name=YP_002395383.1 +NC_011744 S-MART CDS 874940 877736 . + . product=methyl-accepting chemotaxis protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395385.1;Dbxref=Genbank:YP_002395385.1,GeneID:7138094;ID=cds779;Name=YP_002395385.1--YP_002395384.1 +NC_011744 S-MART exon 874940 876163 . + . ID=cds779-exon1;Name=YP_002395385.1--YP_002395384.1-exon1;Parent=cds779 +NC_011744 S-MART exon 876312 877736 . + . ID=cds779-exon2;Name=YP_002395385.1--YP_002395384.1-exon2;Parent=cds779 +NC_011744 S-MART CDS 878165 878944 . - . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395386.1;Dbxref=Genbank:YP_002395386.1,GeneID:7138095;ID=cds780;Name=YP_002395386.1 +NC_011744 S-MART CDS 879102 881495 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395388.1;Dbxref=Genbank:YP_002395388.1,GeneID:7138097;ID=cds782;Name=YP_002395388.1--YP_002395387.1 +NC_011744 S-MART exon 879102 880910 . - . ID=cds782-exon1;Name=YP_002395388.1--YP_002395387.1-exon1;Parent=cds782 +NC_011744 S-MART exon 880971 881495 . - . ID=cds782-exon2;Name=YP_002395388.1--YP_002395387.1-exon2;Parent=cds782 +NC_011744 S-MART CDS 881714 883638 . + . product=inosine-guanosine kinase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395390.1;Dbxref=Genbank:YP_002395390.1,GeneID:7138099;ID=cds784;Name=YP_002395390.1--YP_002395389.1 +NC_011744 S-MART exon 881714 882190 . + . ID=cds784-exon1;Name=YP_002395390.1--YP_002395389.1-exon1;Parent=cds784 +NC_011744 S-MART exon 882334 883638 . + . ID=cds784-exon2;Name=YP_002395390.1--YP_002395389.1-exon2;Parent=cds784 +NC_011744 S-MART CDS 883933 885681 . + . product=formate--tetrahydrofolate ligase;transl_table=11;Note=catalyzes the formation of 10-formyltetrahydrofolate from formate and tetrahydrofolate;gbkey=CDS;protein_id=YP_002395391.1;Dbxref=Genbank:YP_002395391.1,GeneID:7138100;ID=cds785;Name=YP_002395391.1 +NC_011744 S-MART CDS 885922 887826 . + . product=Similar to sensory box%2FGGDEF family protein;transl_table=11;gbkey=CDS;protein_id=YP_002395392.1;Dbxref=Genbank:YP_002395392.1,GeneID:7138101;ID=cds786;Name=YP_002395392.1 +NC_011744 S-MART CDS 887895 888512 . - . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395393.1;Dbxref=Genbank:YP_002395393.1,GeneID:7138102;ID=cds787;Name=YP_002395393.1 +NC_011744 S-MART CDS 888588 888998 . + . product=Similar to Protein chain release factor B;transl_table=11;gbkey=CDS;protein_id=YP_002395394.1;Dbxref=Genbank:YP_002395394.1,GeneID:7138103;ID=cds788;Name=YP_002395394.1 +NC_011744 S-MART CDS 889175 889498 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395395.1;Dbxref=Genbank:YP_002395395.1,GeneID:7138104;ID=cds789;Name=YP_002395395.1 +NC_011744 S-MART CDS 889691 890029 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395396.1;Dbxref=Genbank:YP_002395396.1,GeneID:7138105;ID=cds790;Name=YP_002395396.1 +NC_011744 S-MART CDS 890115 891200 . - . product=SI family secreted trypsin-like serine protease;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395397.1;Dbxref=Genbank:YP_002395397.1,GeneID:7138106;ID=cds791;Name=YP_002395397.1 +NC_011744 S-MART CDS 891515 892681 . - . product=glycine cleavage system T protein;transl_table=11;gbkey=CDS;protein_id=YP_002395398.1;Dbxref=Genbank:YP_002395398.1,GeneID:7138107;ID=cds792;Name=YP_002395398.1 +NC_011744 S-MART CDS 893119 893742 . - . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395399.1;Dbxref=Genbank:YP_002395399.1,GeneID:7138108;ID=cds793;Name=YP_002395399.1 +NC_011744 S-MART CDS 894183 898887 . + . product=glycine dehydrogenase;nbElements=3.000000;transl_table=11;Note=acts in conjunction with GvcH to form H-protein-S-aminomethyldihydrolipoyllysine from glycine;gbkey=CDS;protein_id=YP_002395402.1;Dbxref=Genbank:YP_002395402.1,GeneID:7138111;ID=cds796;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1 +NC_011744 S-MART exon 894183 895475 . + . ID=cds796-exon1;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1-exon1;Parent=cds796 +NC_011744 S-MART exon 895526 895906 . + . ID=cds796-exon2;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1-exon2;Parent=cds796 +NC_011744 S-MART exon 895996 898887 . + . ID=cds796-exon3;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1-exon3;Parent=cds796 +NC_011744 S-MART CDS 899061 900308 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395404.1;Dbxref=Genbank:YP_002395404.1,GeneID:7138113;ID=cds798;Name=YP_002395404.1--YP_002395403.1 +NC_011744 S-MART exon 899061 899744 . - . ID=cds798-exon1;Name=YP_002395404.1--YP_002395403.1-exon1;Parent=cds798 +NC_011744 S-MART exon 899856 900308 . - . ID=cds798-exon2;Name=YP_002395404.1--YP_002395403.1-exon2;Parent=cds798 +NC_011744 S-MART CDS 900811 902702 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395408.1;Dbxref=Genbank:YP_002395408.1,GeneID:7138117;ID=cds802;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1 +NC_011744 S-MART exon 900811 901071 . - . ID=cds802-exon1;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1-exon1;Parent=cds802 +NC_011744 S-MART exon 901103 901920 . - . ID=cds802-exon2;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1-exon2;Parent=cds802 +NC_011744 S-MART exon 901980 902702 . - . ID=cds802-exon3;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1-exon3;Parent=cds802 +NC_011744 S-MART CDS 902823 903977 . + . product=transposase of insertion element ISVisp2 %3B IS110 family%2C subgroup IS1111;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002395409.1;Dbxref=Genbank:YP_002395409.1,GeneID:7138118;ID=cds803;Name=YP_002395409.1 +NC_011744 S-MART CDS 904385 904729 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395410.1;Dbxref=Genbank:YP_002395410.1,GeneID:7138119;ID=cds804;Name=YP_002395410.1 +NC_011744 S-MART CDS 904904 905320 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395411.1;Dbxref=Genbank:YP_002395411.1,GeneID:7138120;ID=cds805;Name=YP_002395411.1 +NC_011744 S-MART CDS 905548 905715 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395412.1;Dbxref=Genbank:YP_002395412.1,GeneID:7138121;ID=cds806;Name=YP_002395412.1 +NC_011744 S-MART CDS 905907 906257 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395413.1;Dbxref=Genbank:YP_002395413.1,GeneID:7138122;ID=cds807;Name=YP_002395413.1 +NC_011744 S-MART CDS 906613 908214 . - . product=ABC transporter ATP-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395414.1;Dbxref=Genbank:YP_002395414.1,GeneID:7138123;ID=cds808;Name=YP_002395414.1 +NC_011744 S-MART CDS 908638 910020 . + . product=multidrug resistance protein;transl_table=11;gbkey=CDS;protein_id=YP_002395415.1;Dbxref=Genbank:YP_002395415.1,GeneID:7138124;ID=cds809;Name=YP_002395415.1 +NC_011744 S-MART CDS 910131 911902 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395418.1;Dbxref=Genbank:YP_002395418.1,GeneID:7138127;ID=cds812;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1 +NC_011744 S-MART exon 910131 910778 . - . ID=cds812-exon1;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1-exon1;Parent=cds812 +NC_011744 S-MART exon 910872 911027 . - . ID=cds812-exon2;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1-exon2;Parent=cds812 +NC_011744 S-MART exon 911042 911902 . - . ID=cds812-exon3;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1-exon3;Parent=cds812 +NC_011744 S-MART CDS 912255 913226 . - . product=Lactoylglutathione lyase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395420.1;Dbxref=Genbank:YP_002395420.1,GeneID:7138129;ID=cds814;Name=YP_002395420.1--YP_002395419.1 +NC_011744 S-MART exon 912255 912725 . - . ID=cds814-exon1;Name=YP_002395420.1--YP_002395419.1-exon1;Parent=cds814 +NC_011744 S-MART exon 912840 913226 . - . ID=cds814-exon2;Name=YP_002395420.1--YP_002395419.1-exon2;Parent=cds814 +NC_011744 S-MART CDS 913393 914454 . - . product=tryptophanyl-tRNA synthetase;transl_table=11;Note=catalyzes a two-step reaction%2C first charging a tryptophan molecule by linking its carboxyl group to the alpha-phosphate of ATP%2C followed by transfer of the aminoacyl-adenylate to its tRNA;gbkey=CDS;protein_id=YP_002395421.1;Dbxref=Genbank:YP_002395421.1,GeneID:7138130;ID=cds815;Name=YP_002395421.1 +NC_011744 S-MART CDS 914705 915505 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395422.1;Dbxref=Genbank:YP_002395422.1,GeneID:7138131;ID=cds816;Name=YP_002395422.1 +NC_011744 S-MART CDS 915759 918681 . - . product=phospholipid-binding protein;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type h : extrachromosomal origin;gbkey=CDS;protein_id=YP_002395425.1;Dbxref=Genbank:YP_002395425.1,GeneID:7138134;ID=cds819;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1 +NC_011744 S-MART exon 915759 917138 . - . ID=cds819-exon1;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1-exon1;Parent=cds819 +NC_011744 S-MART exon 917263 918045 . - . ID=cds819-exon2;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1-exon2;Parent=cds819 +NC_011744 S-MART exon 918103 918681 . - . ID=cds819-exon3;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1-exon3;Parent=cds819 +NC_011744 S-MART CDS 918880 924210 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395429.1;Dbxref=Genbank:YP_002395429.1,GeneID:7138138;ID=cds823;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1 +NC_011744 S-MART exon 918880 921732 . + . ID=cds823-exon1;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1-exon1;Parent=cds823 +NC_011744 S-MART exon 921877 924210 . + . ID=cds823-exon2;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1-exon2;Parent=cds823 +NC_011744 S-MART CDS 924279 925181 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395430.1;Dbxref=Genbank:YP_002395430.1,GeneID:7138139;ID=cds824;Name=YP_002395430.1 +NC_011744 S-MART CDS 925309 927927 . + . product=Multidrug resistance protein B;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395432.1;Dbxref=Genbank:YP_002395432.1,GeneID:7138141;ID=cds826;Name=YP_002395432.1--YP_002395431.1 +NC_011744 S-MART exon 925309 926373 . + . ID=cds826-exon1;Name=YP_002395432.1--YP_002395431.1-exon1;Parent=cds826 +NC_011744 S-MART exon 926377 927927 . + . ID=cds826-exon2;Name=YP_002395432.1--YP_002395431.1-exon2;Parent=cds826 +NC_011744 S-MART CDS 928216 930131 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395434.1;Dbxref=Genbank:YP_002395434.1,GeneID:7138143;ID=cds828;Name=YP_002395434.1--YP_002395433.1 +NC_011744 S-MART CDS 930526 931422 . + . product=RpoS-like sigma factor;transl_table=11;gbkey=CDS;protein_id=YP_002395435.1;Dbxref=Genbank:YP_002395435.1,GeneID:7138144;ID=cds829;Name=YP_002395435.1 +NC_011744 S-MART CDS 931608 931961 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395436.1;Dbxref=Genbank:YP_002395436.1,GeneID:7138145;ID=cds830;Name=YP_002395436.1 +NC_011744 S-MART CDS 932163 952555 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395438.1;Dbxref=Genbank:YP_002395438.1,GeneID:7138147;ID=cds832;Name=YP_002395438.1--YP_002395437.1 +NC_011744 S-MART exon 932163 936293 . - . ID=cds832-exon1;Name=YP_002395438.1--YP_002395437.1-exon1;Parent=cds832 +NC_011744 S-MART exon 936437 952555 . - . ID=cds832-exon2;Name=YP_002395438.1--YP_002395437.1-exon2;Parent=cds832 +NC_011744 S-MART CDS 952752 962294 . + . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395445.1;Dbxref=Genbank:YP_002395445.1,GeneID:7138154;ID=cds839;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0 +NC_011744 S-MART exon 952752 953114 . + . ID=cds839-exon1;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon1;Parent=cds839 +NC_011744 S-MART exon 953118 954467 . + . ID=cds839-exon2;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon2;Parent=cds839 +NC_011744 S-MART exon 954471 961812 . + . ID=cds839-exon3;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon3;Parent=cds839 +NC_011744 S-MART exon 961920 962294 . + . ID=cds839-exon4;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon4;Parent=cds839 +NC_011744 S-MART CDS 962510 967253 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395448.1;Dbxref=Genbank:YP_002395448.1,GeneID:7138157;ID=cds842;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1 +NC_011744 S-MART exon 962510 965713 . + . ID=cds842-exon1;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1-exon1;Parent=cds842 +NC_011744 S-MART exon 965723 966199 . + . ID=cds842-exon2;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1-exon2;Parent=cds842 +NC_011744 S-MART exon 966201 967253 . + . ID=cds842-exon3;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1-exon3;Parent=cds842 +NC_011744 S-MART CDS 967368 969845 . - . product=arylsulfatase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395450.1;Dbxref=Genbank:YP_002395450.1,GeneID:7138159;ID=cds844;Name=YP_002395450.1--YP_002395449.1 +NC_011744 S-MART exon 967368 968426 . - . ID=cds844-exon1;Name=YP_002395450.1--YP_002395449.1-exon1;Parent=cds844 +NC_011744 S-MART exon 968514 969845 . - . ID=cds844-exon2;Name=YP_002395450.1--YP_002395449.1-exon2;Parent=cds844 +NC_011744 S-MART CDS 969982 970770 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395451.1;Dbxref=Genbank:YP_002395451.1,GeneID:7138160;ID=cds845;Name=YP_002395451.1 +NC_011744 S-MART CDS 970950 972632 . + . product=alkaline phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002395452.1;Dbxref=Genbank:YP_002395452.1,GeneID:7138161;ID=cds846;Name=YP_002395452.1 +NC_011744 S-MART CDS 972837 980475 . - . product=MoxR-like ATPase;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395459.1;Dbxref=Genbank:YP_002395459.1,GeneID:7138168;ID=cds853;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0 +NC_011744 S-MART exon 972837 973742 . - . ID=cds853-exon1;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon1;Parent=cds853 +NC_011744 S-MART exon 973821 978516 . - . ID=cds853-exon2;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon2;Parent=cds853 +NC_011744 S-MART exon 978517 979479 . - . ID=cds853-exon3;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon3;Parent=cds853 +NC_011744 S-MART exon 979492 980475 . - . ID=cds853-exon4;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon4;Parent=cds853 +NC_011744 S-MART CDS 980660 983047 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395460.1;Dbxref=Genbank:YP_002395460.1,GeneID:7138169;ID=cds854;Name=YP_002395460.1 +NC_011744 S-MART CDS 983239 984813 . - . product=arylsulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002395461.1;Dbxref=Genbank:YP_002395461.1,GeneID:7138170;ID=cds855;Name=YP_002395461.1 +NC_011744 S-MART CDS 985133 986695 . + . product=arylsulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002395462.1;Dbxref=Genbank:YP_002395462.1,GeneID:7138171;ID=cds856;Name=YP_002395462.1 +NC_011744 S-MART CDS 986985 987638 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395463.1;Dbxref=Genbank:YP_002395463.1,GeneID:7138172;ID=cds857;Name=YP_002395463.1 +NC_011744 S-MART CDS 987744 988238 . - . product=GCN5-related N-acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395464.1;Dbxref=Genbank:YP_002395464.1,GeneID:7138173;ID=cds858;Name=YP_002395464.1 +NC_011744 S-MART CDS 988720 989217 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395465.1;Dbxref=Genbank:YP_002395465.1,GeneID:7138174;ID=cds859;Name=YP_002395465.1 +NC_011744 S-MART CDS 989343 991730 . - . product=epimerase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395469.1;Dbxref=Genbank:YP_002395469.1,GeneID:7138178;ID=cds863;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1 +NC_011744 S-MART exon 989343 989810 . - . ID=cds863-exon1;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon1;Parent=cds863 +NC_011744 S-MART exon 989864 990178 . - . ID=cds863-exon2;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon2;Parent=cds863 +NC_011744 S-MART exon 990278 990781 . - . ID=cds863-exon3;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon3;Parent=cds863 +NC_011744 S-MART exon 990873 991730 . - . ID=cds863-exon4;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon4;Parent=cds863 +NC_011744 S-MART CDS 991952 992602 . - . product=transporter%2C LysE family;transl_table=11;gbkey=CDS;protein_id=YP_002395470.1;Dbxref=Genbank:YP_002395470.1,GeneID:7138179;ID=cds864;Name=YP_002395470.1 +NC_011744 S-MART CDS 992973 996440 . + . product=transduction protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395472.1;Dbxref=Genbank:YP_002395472.1,GeneID:7138181;ID=cds866;Name=YP_002395472.1--YP_002395471.1 +NC_011744 S-MART exon 992973 994004 . + . ID=cds866-exon1;Name=YP_002395472.1--YP_002395471.1-exon1;Parent=cds866 +NC_011744 S-MART exon 994035 996440 . + . ID=cds866-exon2;Name=YP_002395472.1--YP_002395471.1-exon2;Parent=cds866 +NC_011744 S-MART CDS 996495 997997 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395474.1;Dbxref=Genbank:YP_002395474.1,GeneID:7138183;ID=cds868;Name=YP_002395474.1--YP_002395473.1 +NC_011744 S-MART exon 996495 997520 . - . ID=cds868-exon1;Name=YP_002395474.1--YP_002395473.1-exon1;Parent=cds868 +NC_011744 S-MART exon 997530 997997 . - . ID=cds868-exon2;Name=YP_002395474.1--YP_002395473.1-exon2;Parent=cds868 +NC_011744 S-MART CDS 998364 1000814 . + . product=Cbb3-type cytochrome oxidase%2C cytochrome c subunit;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395477.1;Dbxref=Genbank:YP_002395477.1,GeneID:7138186;ID=cds871;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1 +NC_011744 S-MART exon 998364 998759 . + . ID=cds871-exon1;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1-exon1;Parent=cds871 +NC_011744 S-MART exon 998775 1000199 . + . ID=cds871-exon2;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1-exon2;Parent=cds871 +NC_011744 S-MART exon 1000200 1000814 . + . ID=cds871-exon3;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1-exon3;Parent=cds871 +NC_011744 S-MART CDS 1001606 1002967 . + . product=cytochrome c%2C class I;transl_table=11;gbkey=CDS;protein_id=YP_002395478.1;Dbxref=Genbank:YP_002395478.1,GeneID:7138187;ID=cds872;Name=YP_002395478.1 +NC_011744 S-MART CDS 1003230 1003457 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395479.1;Dbxref=Genbank:YP_002395479.1,GeneID:7138188;ID=cds873;Name=YP_002395479.1 +NC_011744 S-MART CDS 1003721 1003903 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395480.1;Dbxref=Genbank:YP_002395480.1,GeneID:7138189;ID=cds874;Name=YP_002395480.1 +NC_011744 S-MART CDS 1004107 1005399 . - . product=prolyl aminopeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395481.1;Dbxref=Genbank:YP_002395481.1,GeneID:7138190;ID=cds875;Name=YP_002395481.1 +NC_011744 S-MART CDS 1005763 1008308 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395483.1;Dbxref=Genbank:YP_002395483.1,GeneID:7138192;ID=cds877;Name=YP_002395483.1--YP_002395482.1 +NC_011744 S-MART CDS 1008571 1010178 . - . product=glycine betaine transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395484.1;Dbxref=Genbank:YP_002395484.1,GeneID:7138193;ID=cds878;Name=YP_002395484.1 +NC_011744 S-MART CDS 1010410 1011411 . - . product=dipeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395485.1;Dbxref=Genbank:YP_002395485.1,GeneID:7138194;ID=cds879;Name=YP_002395485.1 +NC_011744 S-MART CDS 1011616 1013079 . - . product=aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395486.1;Dbxref=Genbank:YP_002395486.1,GeneID:7138195;ID=cds880;Name=YP_002395486.1 +NC_011744 S-MART CDS 1013276 1013686 . - . product=endoribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395487.1;Dbxref=Genbank:YP_002395487.1,GeneID:7138196;ID=cds881;Name=YP_002395487.1 +NC_011744 S-MART CDS 1013832 1014713 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395488.1;Dbxref=Genbank:YP_002395488.1,GeneID:7138197;ID=cds882;Name=YP_002395488.1 +NC_011744 S-MART CDS 1015526 1022425 . + . product=ATP synthase F0F1 subunit epsilon;nbElements=9.000000;transl_table=11;Note=part of catalytic core of ATP synthase%3B alpha%283%29beta%283%29gamma%281%29delta%281%29epsilon%281%29%3B involved in producing ATP from ADP in the presence of the proton motive force across the membrane;gbkey=CDS;protein_id=YP_002395497.1;Dbxref=Genbank:YP_002395497.1,GeneID:7138206;ID=cds891;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0 +NC_011744 S-MART exon 1015526 1015927 . + . ID=cds891-exon1;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon1;Parent=cds891 +NC_011744 S-MART exon 1015929 1016699 . + . ID=cds891-exon2;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon2;Parent=cds891 +NC_011744 S-MART exon 1016745 1016981 . + . ID=cds891-exon3;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon3;Parent=cds891 +NC_011744 S-MART exon 1017036 1017506 . + . ID=cds891-exon4;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon4;Parent=cds891 +NC_011744 S-MART exon 1017518 1018069 . + . ID=cds891-exon5;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon5;Parent=cds891 +NC_011744 S-MART exon 1018079 1019620 . + . ID=cds891-exon6;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon6;Parent=cds891 +NC_011744 S-MART exon 1019668 1020537 . + . ID=cds891-exon7;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon7;Parent=cds891 +NC_011744 S-MART exon 1020582 1021967 . + . ID=cds891-exon8;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon8;Parent=cds891 +NC_011744 S-MART exon 1021982 1022425 . + . ID=cds891-exon9;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon9;Parent=cds891 +NC_011744 S-MART CDS 1022610 1023158 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395498.1;Dbxref=Genbank:YP_002395498.1,GeneID:7138207;ID=cds892;Name=YP_002395498.1 +NC_011744 S-MART CDS 1023422 1024201 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395499.1;Dbxref=Genbank:YP_002395499.1,GeneID:7138208;ID=cds893;Name=YP_002395499.1 +NC_011744 S-MART CDS 1024400 1030193 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395502.1;Dbxref=Genbank:YP_002395502.1,GeneID:7138211;ID=cds896;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1 +NC_011744 S-MART exon 1024400 1027519 . - . ID=cds896-exon1;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1-exon1;Parent=cds896 +NC_011744 S-MART exon 1027526 1028665 . - . ID=cds896-exon2;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1-exon2;Parent=cds896 +NC_011744 S-MART exon 1028763 1030193 . - . ID=cds896-exon3;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1-exon3;Parent=cds896 +NC_011744 S-MART CDS 1030452 1035558 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395508.1;Dbxref=Genbank:YP_002395508.1,GeneID:7138217;ID=cds902;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1 +NC_011744 S-MART exon 1030452 1032082 . + . ID=cds902-exon1;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon1;Parent=cds902 +NC_011744 S-MART exon 1032105 1033366 . + . ID=cds902-exon2;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon2;Parent=cds902 +NC_011744 S-MART exon 1033503 1034384 . + . ID=cds902-exon3;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon3;Parent=cds902 +NC_011744 S-MART exon 1034521 1035558 . + . ID=cds902-exon4;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon4;Parent=cds902 +NC_011744 S-MART CDS 1035708 1036604 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395509.1;Dbxref=Genbank:YP_002395509.1,GeneID:7138218;ID=cds903;Name=YP_002395509.1 +NC_011744 S-MART CDS 1036962 1038869 . + . product=metal-dependent hydrolases;transl_table=11;gbkey=CDS;protein_id=YP_002395510.1;Dbxref=Genbank:YP_002395510.1,GeneID:7138219;ID=cds904;Name=YP_002395510.1 +NC_011744 S-MART CDS 1039828 1041511 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395512.1;Dbxref=Genbank:YP_002395512.1,GeneID:7138221;ID=cds906;Name=YP_002395512.1--YP_002395511.1 +NC_011744 S-MART exon 1039828 1040286 . + . ID=cds906-exon1;Name=YP_002395512.1--YP_002395511.1-exon1;Parent=cds906 +NC_011744 S-MART exon 1040318 1041511 . + . ID=cds906-exon2;Name=YP_002395512.1--YP_002395511.1-exon2;Parent=cds906 +NC_011744 S-MART CDS 1041608 1047317 . - . product=ABC transporter substrate-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395516.1;Dbxref=Genbank:YP_002395516.1,GeneID:7138225;ID=cds910;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1 +NC_011744 S-MART exon 1041608 1043257 . - . ID=cds910-exon1;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon1;Parent=cds910 +NC_011744 S-MART exon 1043267 1044289 . - . ID=cds910-exon2;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon2;Parent=cds910 +NC_011744 S-MART exon 1044321 1045409 . - . ID=cds910-exon3;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon3;Parent=cds910 +NC_011744 S-MART exon 1045422 1047317 . - . ID=cds910-exon4;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon4;Parent=cds910 +NC_011744 S-MART CDS 1047710 1048753 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395517.1;Dbxref=Genbank:YP_002395517.1,GeneID:7138226;ID=cds911;Name=YP_002395517.1 +NC_011744 S-MART CDS 1048904 1049539 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395518.1;Dbxref=Genbank:YP_002395518.1,GeneID:7138227;ID=cds912;Name=YP_002395518.1 +NC_011744 S-MART CDS 1049932 1050246 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395519.1;Dbxref=Genbank:YP_002395519.1,GeneID:7138228;ID=cds913;Name=YP_002395519.1 +NC_011744 S-MART CDS 1050478 1053537 . + . product=ribose ABC transporter permease;nbElements=3.000000;transl_table=11;Note=functions to transport ribose at high affinity%3B forms a complex with RbsA2C2B;gbkey=CDS;protein_id=YP_002395522.1;Dbxref=Genbank:YP_002395522.1,GeneID:7138231;ID=cds916;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1 +NC_011744 S-MART exon 1050478 1050945 . + . ID=cds916-exon1;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1-exon1;Parent=cds916 +NC_011744 S-MART exon 1051043 1053537 . + . ID=cds916-exon2;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1-exon2;Parent=cds916 +NC_011744 S-MART CDS 1053711 1054589 . + . product=D-ribose transporter subunit RbsB;transl_table=11;Note=periplasmic substrate-binding component of the ATP-dependent ribose transport system;gbkey=CDS;protein_id=YP_002395523.1;Dbxref=Genbank:YP_002395523.1,GeneID:7138232;ID=cds917;Name=YP_002395523.1 +NC_011744 S-MART CDS 1054798 1055724 . + . product=ribokinase;transl_table=11;Note=catalyzes the formation of D-ribose 5-phosphate from ribose;gbkey=CDS;protein_id=YP_002395524.1;Dbxref=Genbank:YP_002395524.1,GeneID:7138233;ID=cds918;Name=YP_002395524.1 +NC_011744 S-MART CDS 1055877 1056878 . + . product=Ribose operon repressor;transl_table=11;gbkey=CDS;protein_id=YP_002395525.1;Dbxref=Genbank:YP_002395525.1,GeneID:7138234;ID=cds919;Name=YP_002395525.1 +NC_011744 S-MART CDS 1057002 1057667 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395526.1;Dbxref=Genbank:YP_002395526.1,GeneID:7138235;ID=cds920;Name=YP_002395526.1 +NC_011744 S-MART CDS 1057917 1059515 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395527.1;Dbxref=Genbank:YP_002395527.1,GeneID:7138236;ID=cds921;Name=YP_002395527.1 +NC_011744 S-MART CDS 1059596 1061010 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395529.1;Dbxref=Genbank:YP_002395529.1,GeneID:7138238;ID=cds923;Name=YP_002395529.1--YP_002395528.1 +NC_011744 S-MART exon 1059596 1060564 . - . ID=cds923-exon1;Name=YP_002395529.1--YP_002395528.1-exon1;Parent=cds923 +NC_011744 S-MART exon 1060633 1061010 . - . ID=cds923-exon2;Name=YP_002395529.1--YP_002395528.1-exon2;Parent=cds923 +NC_011744 S-MART CDS 1061438 1061875 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395530.1;Dbxref=Genbank:YP_002395530.1,GeneID:7138239;ID=cds924;Name=YP_002395530.1 +NC_011744 S-MART CDS 1062286 1062711 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395531.1;Dbxref=Genbank:YP_002395531.1,GeneID:7138240;ID=cds925;Name=YP_002395531.1 +NC_011744 S-MART CDS 1062792 1062935 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395532.1;Dbxref=Genbank:YP_002395532.1,GeneID:7138241;ID=cds926;Name=YP_002395532.1 +NC_011744 S-MART CDS 1063028 1064630 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395534.1;Dbxref=Genbank:YP_002395534.1,GeneID:7138243;ID=cds928;Name=YP_002395534.1--YP_002395533.1 +NC_011744 S-MART CDS 1064838 1068624 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395538.1;Dbxref=Genbank:YP_002395538.1,GeneID:7138247;ID=cds932;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1 +NC_011744 S-MART exon 1064838 1066019 . - . ID=cds932-exon1;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1-exon1;Parent=cds932 +NC_011744 S-MART exon 1066028 1066795 . - . ID=cds932-exon2;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1-exon2;Parent=cds932 +NC_011744 S-MART exon 1066814 1068624 . - . ID=cds932-exon3;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1-exon3;Parent=cds932 +NC_011744 S-MART CDS 1068805 1075006 . - . product=hypothetical protein;nbElements=10.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395548.1;Dbxref=Genbank:YP_002395548.1,GeneID:7138257;ID=cds942;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0 +NC_011744 S-MART exon 1068805 1070553 . - . ID=cds942-exon1;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon1;Parent=cds942 +NC_011744 S-MART exon 1070566 1071687 . - . ID=cds942-exon2;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon2;Parent=cds942 +NC_011744 S-MART exon 1071799 1072290 . - . ID=cds942-exon3;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon3;Parent=cds942 +NC_011744 S-MART exon 1072300 1072872 . - . ID=cds942-exon4;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon4;Parent=cds942 +NC_011744 S-MART exon 1072884 1073654 . - . ID=cds942-exon5;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon5;Parent=cds942 +NC_011744 S-MART exon 1073684 1075006 . - . ID=cds942-exon6;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon6;Parent=cds942 +NC_011744 S-MART CDS 1075189 1078353 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395552.1;Dbxref=Genbank:YP_002395552.1,GeneID:7138261;ID=cds946;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1 +NC_011744 S-MART exon 1075189 1075605 . - . ID=cds946-exon1;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1-exon1;Parent=cds946 +NC_011744 S-MART exon 1075656 1077028 . - . ID=cds946-exon2;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1-exon2;Parent=cds946 +NC_011744 S-MART exon 1077043 1078353 . - . ID=cds946-exon3;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1-exon3;Parent=cds946 +NC_011744 S-MART CDS 1078538 1079514 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395554.1;Dbxref=Genbank:YP_002395554.1,GeneID:7138263;ID=cds948;Name=YP_002395554.1--YP_002395553.1 +NC_011744 S-MART CDS 1079815 1081574 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395556.1;Dbxref=Genbank:YP_002395556.1,GeneID:7138265;ID=cds950;Name=YP_002395556.1--YP_002395555.1 +NC_011744 S-MART exon 1079815 1080249 . - . ID=cds950-exon1;Name=YP_002395556.1--YP_002395555.1-exon1;Parent=cds950 +NC_011744 S-MART exon 1080264 1081574 . - . ID=cds950-exon2;Name=YP_002395556.1--YP_002395555.1-exon2;Parent=cds950 +NC_011744 S-MART CDS 1081952 1083590 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395559.1;Dbxref=Genbank:YP_002395559.1,GeneID:7138268;ID=cds953;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1 +NC_011744 S-MART exon 1081952 1082862 . - . ID=cds953-exon1;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1-exon1;Parent=cds953 +NC_011744 S-MART exon 1082865 1083590 . - . ID=cds953-exon2;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1-exon2;Parent=cds953 +NC_011744 S-MART CDS 1083767 1084411 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395560.1;Dbxref=Genbank:YP_002395560.1,GeneID:7138269;ID=cds954;Name=YP_002395560.1 +NC_011744 S-MART CDS 1084799 1092865 . - . product=hypothetical protein;nbElements=9.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395569.1;Dbxref=Genbank:YP_002395569.1,GeneID:7138277;ID=cds963;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0 +NC_011744 S-MART exon 1084799 1086478 . - . ID=cds963-exon1;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon1;Parent=cds963 +NC_011744 S-MART exon 1086482 1087999 . - . ID=cds963-exon2;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon2;Parent=cds963 +NC_011744 S-MART exon 1088148 1090261 . - . ID=cds963-exon3;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon3;Parent=cds963 +NC_011744 S-MART exon 1090273 1092253 . - . ID=cds963-exon4;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon4;Parent=cds963 +NC_011744 S-MART exon 1092263 1092865 . - . ID=cds963-exon5;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon5;Parent=cds963 +NC_011744 S-MART CDS 1093545 1098842 . + . product=HTH-type transcriptional regulator;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 7883720%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002395572.1;Dbxref=Genbank:YP_002395572.1,GeneID:7138280;ID=cds966;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1 +NC_011744 S-MART exon 1093545 1094858 . + . ID=cds966-exon1;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1-exon1;Parent=cds966 +NC_011744 S-MART exon 1094925 1098317 . + . ID=cds966-exon2;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1-exon2;Parent=cds966 +NC_011744 S-MART exon 1098390 1098842 . + . ID=cds966-exon3;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1-exon3;Parent=cds966 +NC_011744 S-MART CDS 1098871 1107675 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395579.1;Dbxref=Genbank:YP_002395579.1,GeneID:7138286;ID=cds973;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0 +NC_011744 S-MART exon 1098871 1102056 . - . ID=cds973-exon1;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon1;Parent=cds973 +NC_011744 S-MART exon 1102090 1103565 . - . ID=cds973-exon2;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon2;Parent=cds973 +NC_011744 S-MART exon 1103574 1104080 . - . ID=cds973-exon3;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon3;Parent=cds973 +NC_011744 S-MART exon 1104099 1105676 . - . ID=cds973-exon4;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon4;Parent=cds973 +NC_011744 S-MART exon 1105678 1107675 . - . ID=cds973-exon5;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon5;Parent=cds973 +NC_011744 S-MART CDS 1108177 1114597 . - . product=Hcp %28Haemolysin co-regulated protein%29;nbElements=6.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 15659065%2C 8557353%3B Product type f : factor;gbkey=CDS;protein_id=YP_002395585.1;Dbxref=Genbank:YP_002395585.1,GeneID:7138292;ID=cds979;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1 +NC_011744 S-MART exon 1108177 1111427 . - . ID=cds979-exon1;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1-exon1;Parent=cds979 +NC_011744 S-MART exon 1111441 1114004 . - . ID=cds979-exon2;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1-exon2;Parent=cds979 +NC_011744 S-MART exon 1114079 1114597 . - . ID=cds979-exon3;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1-exon3;Parent=cds979 +NC_011744 S-MART CDS 1115052 1119360 . + . product=Sigma 54 dependent transcriptional regulator;nbElements=2.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type r : regulator;gbkey=CDS;protein_id=YP_002395587.1;Dbxref=Genbank:YP_002395587.1,GeneID:7138294;ID=cds981;Name=YP_002395587.1--YP_002395586.1 +NC_011744 S-MART CDS 1119421 1127185 . - . product=hypothetical protein;nbElements=5.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395592.1;Dbxref=Genbank:YP_002395592.1,GeneID:7138298;ID=cds986;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1 +NC_011744 S-MART exon 1119421 1121770 . - . ID=cds986-exon1;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon1;Parent=cds986 +NC_011744 S-MART exon 1121789 1124044 . - . ID=cds986-exon2;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon2;Parent=cds986 +NC_011744 S-MART exon 1124057 1125499 . - . ID=cds986-exon3;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon3;Parent=cds986 +NC_011744 S-MART exon 1125503 1127185 . - . ID=cds986-exon4;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon4;Parent=cds986 +NC_011744 S-MART CDS 1127390 1137370 . - . product=hypothetical protein;nbElements=10.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395602.1;Dbxref=Genbank:YP_002395602.1,GeneID:7138308;ID=cds996;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0 +NC_011744 S-MART exon 1127390 1128417 . - . ID=cds996-exon1;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon1;Parent=cds996 +NC_011744 S-MART exon 1128510 1128872 . - . ID=cds996-exon2;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon2;Parent=cds996 +NC_011744 S-MART exon 1128876 1135536 . - . ID=cds996-exon3;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon3;Parent=cds996 +NC_011744 S-MART exon 1135538 1137370 . - . ID=cds996-exon4;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon4;Parent=cds996 +NC_011744 S-MART CDS 1138091 1148704 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395603.1;Dbxref=Genbank:YP_002395603.1,GeneID:7138309;ID=cds997;Name=YP_002395603.1 +NC_011744 S-MART CDS 1148963 1149922 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395604.1;Dbxref=Genbank:YP_002395604.1,GeneID:7138310;ID=cds998;Name=YP_002395604.1 +NC_011744 S-MART CDS 1150345 1152942 . - . product=nitrate reductase large subunit;transl_table=11;gbkey=CDS;protein_id=YP_002395605.1;Dbxref=Genbank:YP_002395605.1,GeneID:7138312;ID=cds999;Name=YP_002395605.1 +NC_011744 S-MART CDS 1153415 1160053 . + . product=Serine-threonine protein kinase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395609.1;Dbxref=Genbank:YP_002395609.1,GeneID:7138316;ID=cds1003;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1 +NC_011744 S-MART exon 1153415 1155997 . + . ID=cds1003-exon1;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon1;Parent=cds1003 +NC_011744 S-MART exon 1156136 1156480 . + . ID=cds1003-exon2;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon2;Parent=cds1003 +NC_011744 S-MART exon 1156624 1158093 . + . ID=cds1003-exon3;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon3;Parent=cds1003 +NC_011744 S-MART exon 1158218 1160053 . + . ID=cds1003-exon4;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon4;Parent=cds1003 +NC_011744 S-MART CDS 1160129 1161292 . - . product=DNA-binding transcriptional regulator FruR;transl_table=11;Note=binds D-fructose as an inducer%3B involved in regulation of operons for central pathways of carbon metabolism;gbkey=CDS;protein_id=YP_002395610.1;Dbxref=Genbank:YP_002395610.1,GeneID:7138317;ID=cds1004;Name=YP_002395610.1 +NC_011744 S-MART CDS 1161525 1165421 . + . product=Phosphotransferase system%2C fructose-specific IIC component;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395613.1;Dbxref=Genbank:YP_002395613.1,GeneID:7138320;ID=cds1007;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1 +NC_011744 S-MART exon 1161525 1162658 . + . ID=cds1007-exon1;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1-exon1;Parent=cds1007 +NC_011744 S-MART exon 1162668 1163645 . + . ID=cds1007-exon2;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1-exon2;Parent=cds1007 +NC_011744 S-MART exon 1163661 1165421 . + . ID=cds1007-exon3;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1-exon3;Parent=cds1007 +NC_011744 S-MART CDS 1165522 1171829 . - . product=hypothetical protein;nbElements=5.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395618.1;Dbxref=Genbank:YP_002395618.1,GeneID:7138325;ID=cds1012;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1 +NC_011744 S-MART exon 1165522 1166454 . - . ID=cds1012-exon1;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1-exon1;Parent=cds1012 +NC_011744 S-MART exon 1166461 1171829 . - . ID=cds1012-exon2;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1-exon2;Parent=cds1012 +NC_011744 S-MART CDS 1171985 1175738 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395623.1;Dbxref=Genbank:YP_002395623.1,GeneID:7138330;ID=cds1017;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1 +NC_011744 S-MART exon 1171985 1172602 . + . ID=cds1017-exon1;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon1;Parent=cds1017 +NC_011744 S-MART exon 1172614 1173525 . + . ID=cds1017-exon2;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon2;Parent=cds1017 +NC_011744 S-MART exon 1173534 1175497 . + . ID=cds1017-exon3;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon3;Parent=cds1017 +NC_011744 S-MART exon 1175586 1175738 . + . ID=cds1017-exon4;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon4;Parent=cds1017 +NC_011744 S-MART CDS 1175849 1176172 . - . product=aromatic ring-cleaving dioxygenase;transl_table=11;gbkey=CDS;protein_id=YP_002395624.1;Dbxref=Genbank:YP_002395624.1,GeneID:7138331;ID=cds1018;Name=YP_002395624.1 +NC_011744 S-MART CDS 1176355 1177212 . - . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395625.1;Dbxref=Genbank:YP_002395625.1,GeneID:7138332;ID=cds1019;Name=YP_002395625.1 +NC_011744 S-MART CDS 1177465 1177785 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395626.1;Dbxref=Genbank:YP_002395626.1,GeneID:7138333;ID=cds1020;Name=YP_002395626.1 +NC_011744 S-MART CDS 1177488 1177832 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395627.1;Dbxref=Genbank:YP_002395627.1,GeneID:7138334;ID=cds1021;Name=YP_002395627.1 +NC_011744 S-MART CDS 1178012 1178392 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395628.1;Dbxref=Genbank:YP_002395628.1,GeneID:7138335;ID=cds1022;Name=YP_002395628.1 +NC_011744 S-MART CDS 1178987 1181946 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395630.1;Dbxref=Genbank:YP_002395630.1,GeneID:7138337;ID=cds1024;Name=YP_002395630.1--YP_002395629.1 +NC_011744 S-MART exon 1178987 1180225 . + . ID=cds1024-exon1;Name=YP_002395630.1--YP_002395629.1-exon1;Parent=cds1024 +NC_011744 S-MART exon 1180303 1181946 . + . ID=cds1024-exon2;Name=YP_002395630.1--YP_002395629.1-exon2;Parent=cds1024 +NC_011744 S-MART CDS 1182101 1184455 . + . product=fatty acid cis%2Ftrans isomerase;transl_table=11;gbkey=CDS;protein_id=YP_002395631.1;Dbxref=Genbank:YP_002395631.1,GeneID:7138338;ID=cds1025;Name=YP_002395631.1 +NC_011744 S-MART CDS 1184694 1187726 . - . product=Signal transduction histidine kinase;transl_table=11;gbkey=CDS;protein_id=YP_002395632.1;Dbxref=Genbank:YP_002395632.1,GeneID:7138339;ID=cds1026;Name=YP_002395632.1 +NC_011744 S-MART CDS 1187819 1189363 . + . product=methylglyoxal synthase;nbElements=2.000000;transl_table=11;Note=catalyzes the formation of methylglyoxal from glycerone phosphate;gbkey=CDS;protein_id=YP_002395634.1;Dbxref=Genbank:YP_002395634.1,GeneID:7138341;ID=cds1028;Name=YP_002395634.1--YP_002395633.1 +NC_011744 S-MART exon 1187819 1188847 . + . ID=cds1028-exon1;Name=YP_002395634.1--YP_002395633.1-exon1;Parent=cds1028 +NC_011744 S-MART exon 1188908 1189363 . + . ID=cds1028-exon2;Name=YP_002395634.1--YP_002395633.1-exon2;Parent=cds1028 +NC_011744 S-MART CDS 1189691 1191253 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395635.1;Dbxref=Genbank:YP_002395635.1,GeneID:7138342;ID=cds1029;Name=YP_002395635.1 +NC_011744 S-MART CDS 1191462 1191929 . - . product=transcription regulator protein;transl_table=11;gbkey=CDS;protein_id=YP_002395636.1;Dbxref=Genbank:YP_002395636.1,GeneID:7138343;ID=cds1030;Name=YP_002395636.1 +NC_011744 S-MART CDS 1192081 1193043 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395637.1;Dbxref=Genbank:YP_002395637.1,GeneID:7138344;ID=cds1031;Name=YP_002395637.1 +NC_011744 S-MART CDS 1193246 1193389 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395638.1;Dbxref=Genbank:YP_002395638.1,GeneID:7138345;ID=cds1032;Name=YP_002395638.1 +NC_011744 S-MART CDS 1193474 1193665 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395639.1;Dbxref=Genbank:YP_002395639.1,GeneID:7138346;ID=cds1033;Name=YP_002395639.1 +NC_011744 S-MART CDS 1193628 1196734 . + . product=M6 secreted metalloprotease;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 3050359%2C 9371455%2C 7140755%2C 6421577%2C 12029046%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395641.1;Dbxref=Genbank:YP_002395641.1,GeneID:7138348;ID=cds1035;Name=YP_002395641.1--YP_002395640.1 +NC_011744 S-MART exon 1193628 1193930 . + . ID=cds1035-exon1;Name=YP_002395641.1--YP_002395640.1-exon1;Parent=cds1035 +NC_011744 S-MART exon 1193978 1196734 . + . ID=cds1035-exon2;Name=YP_002395641.1--YP_002395640.1-exon2;Parent=cds1035 +NC_011744 S-MART CDS 1196948 1198174 . - . product=permease;transl_table=11;gbkey=CDS;protein_id=YP_002395642.1;Dbxref=Genbank:YP_002395642.1,GeneID:7138349;ID=cds1036;Name=YP_002395642.1 +NC_011744 S-MART CDS 1198432 1199322 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395643.1;Dbxref=Genbank:YP_002395643.1,GeneID:7138350;ID=cds1037;Name=YP_002395643.1 +NC_011744 S-MART CDS 1199417 1205405 . - . product=response regulator receiver:Metal-dependent phosphohydrolase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395645.1;Dbxref=Genbank:YP_002395645.1,GeneID:7138352;ID=cds1039;Name=YP_002395645.1--YP_002395644.1 +NC_011744 S-MART CDS 1205725 1209463 . - . product=enterobactin ABC transporter substrate-binding protein;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 2651410%2C 8388528%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395650.1;Dbxref=Genbank:YP_002395650.1,GeneID:7138357;ID=cds1044;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1 +NC_011744 S-MART exon 1205725 1206489 . - . ID=cds1044-exon1;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1-exon1;Parent=cds1044 +NC_011744 S-MART exon 1206502 1208398 . - . ID=cds1044-exon2;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1-exon2;Parent=cds1044 +NC_011744 S-MART exon 1208498 1209463 . - . ID=cds1044-exon3;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1-exon3;Parent=cds1044 +NC_011744 S-MART CDS 1210829 1211422 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395651.1;Dbxref=Genbank:YP_002395651.1,GeneID:7138358;ID=cds1045;Name=YP_002395651.1 +NC_011744 S-MART CDS 1211676 1215586 . - . product=secretion protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395655.1;Dbxref=Genbank:YP_002395655.1,GeneID:7138362;ID=cds1049;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1 +NC_011744 S-MART exon 1211676 1212332 . - . ID=cds1049-exon1;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1-exon1;Parent=cds1049 +NC_011744 S-MART exon 1212333 1213433 . - . ID=cds1049-exon2;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1-exon2;Parent=cds1049 +NC_011744 S-MART exon 1213456 1215586 . - . ID=cds1049-exon3;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1-exon3;Parent=cds1049 +NC_011744 S-MART CDS 1215746 1216739 . + . product=transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395657.1;Dbxref=Genbank:YP_002395657.1,GeneID:7138364;ID=cds1051;Name=YP_002395657.1--YP_002395656.1 +NC_011744 S-MART exon 1215746 1216501 . + . ID=cds1051-exon1;Name=YP_002395657.1--YP_002395656.1-exon1;Parent=cds1051 +NC_011744 S-MART exon 1216584 1216739 . + . ID=cds1051-exon2;Name=YP_002395657.1--YP_002395656.1-exon2;Parent=cds1051 +NC_011744 S-MART CDS 1217046 1217513 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395658.1;Dbxref=Genbank:YP_002395658.1,GeneID:7138365;ID=cds1052;Name=YP_002395658.1 +NC_011744 S-MART CDS 1217709 1218146 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395659.1;Dbxref=Genbank:YP_002395659.1,GeneID:7138366;ID=cds1053;Name=YP_002395659.1 +NC_011744 S-MART CDS 1218285 1219951 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395661.1;Dbxref=Genbank:YP_002395661.1,GeneID:7138368;ID=cds1055;Name=YP_002395661.1--YP_002395660.1 +NC_011744 S-MART exon 1218285 1219187 . + . ID=cds1055-exon1;Name=YP_002395661.1--YP_002395660.1-exon1;Parent=cds1055 +NC_011744 S-MART exon 1219325 1219951 . + . ID=cds1055-exon2;Name=YP_002395661.1--YP_002395660.1-exon2;Parent=cds1055 +NC_011744 S-MART CDS 1220080 1220766 . - . product=thiamine-phosphate pyrophosphorylase;transl_table=11;Note=Condenses 4-methyl-5-%28beta-hydroxyethyl%29-thiazole monophosphate and 4-amino-5-hydroxymethyl pyrimidine pyrophosphate to form thiamine monophosphate;gbkey=CDS;protein_id=YP_002395662.1;Dbxref=Genbank:YP_002395662.1,GeneID:7138369;ID=cds1056;Name=YP_002395662.1 +NC_011744 S-MART CDS 1220957 1222900 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395663.1;Dbxref=Genbank:YP_002395663.1,GeneID:7138370;ID=cds1057;Name=YP_002395663.1 +NC_011744 S-MART CDS 1223038 1230181 . - . product=AraC family transcriptional regulator;nbElements=9.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395671.1;Dbxref=Genbank:YP_002395671.1,GeneID:7138378;ID=cds1065;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666. +NC_011744 S-MART exon 1223038 1223880 . - . ID=cds1065-exon1;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon1;Parent=cds1065 +NC_011744 S-MART exon 1223894 1224562 . - . ID=cds1065-exon2;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon2;Parent=cds1065 +NC_011744 S-MART exon 1224571 1225527 . - . ID=cds1065-exon3;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon3;Parent=cds1065 +NC_011744 S-MART exon 1225643 1228137 . - . ID=cds1065-exon4;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon4;Parent=cds1065 +NC_011744 S-MART exon 1228234 1228345 . - . ID=cds1065-exon5;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon5;Parent=cds1065 +NC_011744 S-MART exon 1228444 1229361 . - . ID=cds1065-exon6;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon6;Parent=cds1065 +NC_011744 S-MART exon 1229447 1230181 . - . ID=cds1065-exon7;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon7;Parent=cds1065 +NC_011744 S-MART CDS 1230355 1231404 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395672.1;Dbxref=Genbank:YP_002395672.1,GeneID:7138379;ID=cds1066;Name=YP_002395672.1 +NC_011744 S-MART CDS 1231806 1233284 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395674.1;Dbxref=Genbank:YP_002395674.1,GeneID:7138381;ID=cds1068;Name=YP_002395674.1--YP_002395673.1 +NC_011744 S-MART exon 1231806 1232057 . - . ID=cds1068-exon1;Name=YP_002395674.1--YP_002395673.1-exon1;Parent=cds1068 +NC_011744 S-MART exon 1232187 1233284 . - . ID=cds1068-exon2;Name=YP_002395674.1--YP_002395673.1-exon2;Parent=cds1068 +NC_011744 S-MART CDS 1233780 1234454 . + . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395675.1;Dbxref=Genbank:YP_002395675.1,GeneID:7138382;ID=cds1069;Name=YP_002395675.1 +NC_011744 S-MART CDS 1234860 1236490 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395677.1;Dbxref=Genbank:YP_002395677.1,GeneID:7138384;ID=cds1071;Name=YP_002395677.1--YP_002395676.1 +NC_011744 S-MART CDS 1236580 1236819 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395678.1;Dbxref=Genbank:YP_002395678.1,GeneID:7138385;ID=cds1072;Name=YP_002395678.1 +NC_011744 S-MART CDS 1237160 1238719 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395679.1;Dbxref=Genbank:YP_002395679.1,GeneID:7138386;ID=cds1073;Name=YP_002395679.1 +NC_011744 S-MART CDS 1238904 1239575 . - . product=Rha phage protein;transl_table=11;gbkey=CDS;protein_id=YP_002395680.1;Dbxref=Genbank:YP_002395680.1,GeneID:7138387;ID=cds1074;Name=YP_002395680.1 +NC_011744 S-MART CDS 1240399 1240725 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395682.1;Dbxref=Genbank:YP_002395682.1,GeneID:7138389;ID=cds1076;Name=YP_002395682.1 +NC_011744 S-MART CDS 1239985 1243687 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395687.1;Dbxref=Genbank:YP_002395687.1,GeneID:7138394;ID=cds1081;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1 +NC_011744 S-MART exon 1239985 1241782 . + . ID=cds1081-exon1;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon1;Parent=cds1081 +NC_011744 S-MART exon 1241811 1242586 . + . ID=cds1081-exon2;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon2;Parent=cds1081 +NC_011744 S-MART exon 1242672 1243118 . + . ID=cds1081-exon3;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon3;Parent=cds1081 +NC_011744 S-MART exon 1243247 1243687 . + . ID=cds1081-exon4;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon4;Parent=cds1081 +NC_011744 S-MART CDS 1243775 1244818 . - . product=guanosine 5%27-monophosphate oxidoreductase;transl_table=11;Note=catalyzes the NADPH-dependent deamination of GMP to inosine monophosphate;gbkey=CDS;protein_id=YP_002395688.1;Dbxref=Genbank:YP_002395688.1,GeneID:7138395;ID=cds1082;Name=YP_002395688.1 +NC_011744 S-MART CDS 1245677 1247120 . - . product=Response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395690.1;Dbxref=Genbank:YP_002395690.1,GeneID:7138397;ID=cds1084;Name=YP_002395690.1--YP_002395689.1 +NC_011744 S-MART exon 1245677 1246114 . - . ID=cds1084-exon1;Name=YP_002395690.1--YP_002395689.1-exon1;Parent=cds1084 +NC_011744 S-MART exon 1246116 1247120 . - . ID=cds1084-exon2;Name=YP_002395690.1--YP_002395689.1-exon2;Parent=cds1084 +NC_011744 S-MART CDS 1247502 1247753 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395691.1;Dbxref=Genbank:YP_002395691.1,GeneID:7138398;ID=cds1085;Name=YP_002395691.1 +NC_011744 S-MART CDS 1247997 1249349 . - . product=Na%28%2B%29 driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395692.1;Dbxref=Genbank:YP_002395692.1,GeneID:7138399;ID=cds1086;Name=YP_002395692.1 +NC_011744 S-MART CDS 1249450 1251402 . + . product=Transporter%2C drug%2Fmetabolite exporter family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395694.1;Dbxref=Genbank:YP_002395694.1,GeneID:7138401;ID=cds1088;Name=YP_002395694.1--YP_002395693.1 +NC_011744 S-MART exon 1249450 1250460 . + . ID=cds1088-exon1;Name=YP_002395694.1--YP_002395693.1-exon1;Parent=cds1088 +NC_011744 S-MART exon 1250548 1251402 . + . ID=cds1088-exon2;Name=YP_002395694.1--YP_002395693.1-exon2;Parent=cds1088 +NC_011744 S-MART CDS 1251577 1252032 . - . product=lactoylglutathione lyase;transl_table=11;gbkey=CDS;protein_id=YP_002395695.1;Dbxref=Genbank:YP_002395695.1,GeneID:7138402;ID=cds1089;Name=YP_002395695.1 +NC_011744 S-MART CDS 1252374 1253291 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395697.1;Dbxref=Genbank:YP_002395697.1,GeneID:7138404;ID=cds1091;Name=YP_002395697.1--YP_002395696.1 +NC_011744 S-MART exon 1252374 1252640 . + . ID=cds1091-exon1;Name=YP_002395697.1--YP_002395696.1-exon1;Parent=cds1091 +NC_011744 S-MART exon 1252683 1253291 . + . ID=cds1091-exon2;Name=YP_002395697.1--YP_002395696.1-exon2;Parent=cds1091 +NC_011744 S-MART CDS 1253443 1254468 . - . product=Zinc-containing alcohol dehydrogenase superfamily protein;transl_table=11;gbkey=CDS;protein_id=YP_002395698.1;Dbxref=Genbank:YP_002395698.1,GeneID:7138405;ID=cds1092;Name=YP_002395698.1 +NC_011744 S-MART CDS 1254675 1255607 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395699.1;Dbxref=Genbank:YP_002395699.1,GeneID:7138406;ID=cds1093;Name=YP_002395699.1 +NC_011744 S-MART CDS 1255752 1256138 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395700.1;Dbxref=Genbank:YP_002395700.1,GeneID:7138407;ID=cds1094;Name=YP_002395700.1 +NC_011744 S-MART CDS 1256291 1262248 . - . product=Vibrioferrin receptor;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395705.1;Dbxref=Genbank:YP_002395705.1,GeneID:7138412;ID=cds1099;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1 +NC_011744 S-MART exon 1256291 1260037 . - . ID=cds1099-exon1;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1-exon1;Parent=cds1099 +NC_011744 S-MART exon 1260125 1262248 . - . ID=cds1099-exon2;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1-exon2;Parent=cds1099 +NC_011744 S-MART CDS 1262438 1264474 . - . product=ferric siderophore receptor;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395706.1;Dbxref=Genbank:YP_002395706.1,GeneID:7138413;ID=cds1100;Name=YP_002395706.1 +NC_011744 S-MART CDS 1264725 1272000 . + . product=Vibrioferrin biosynthesis protein PvsE;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type f : factor;gbkey=CDS;protein_id=YP_002395711.1;Dbxref=Genbank:YP_002395711.1,GeneID:7138418;ID=cds1105;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1 +NC_011744 S-MART exon 1264725 1267744 . + . ID=cds1105-exon1;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1-exon1;Parent=cds1105 +NC_011744 S-MART exon 1267751 1272000 . + . ID=cds1105-exon2;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1-exon2;Parent=cds1105 +NC_011744 S-MART CDS 1272522 1273160 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395712.1;Dbxref=Genbank:YP_002395712.1,GeneID:7138419;ID=cds1106;Name=YP_002395712.1 +NC_011744 S-MART CDS 1273484 1274677 . - . product=acetate kinase;transl_table=11;Note=AckA utilizes acetate and can acetylate CheY which increases signal strength during flagellar rotation%3B utilizes magnesium and ATP%3B also involved in conversion of acetate to aceyl-CoA;gbkey=CDS;protein_id=YP_002395713.1;Dbxref=Genbank:YP_002395713.1,GeneID:7138420;ID=cds1107;Name=YP_002395713.1 +NC_011744 S-MART CDS 1274895 1275119 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395714.1;Dbxref=Genbank:YP_002395714.1,GeneID:7138421;ID=cds1108;Name=YP_002395714.1 +NC_011744 S-MART CDS 1275408 1277477 . - . product=ATP-dependent RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002395715.1;Dbxref=Genbank:YP_002395715.1,GeneID:7138422;ID=cds1109;Name=YP_002395715.1 +NC_011744 S-MART CDS 1277786 1280713 . + . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395717.1;Dbxref=Genbank:YP_002395717.1,GeneID:7138424;ID=cds1111;Name=YP_002395717.1--YP_002395716.1 +NC_011744 S-MART exon 1277786 1279792 . + . ID=cds1111-exon1;Name=YP_002395717.1--YP_002395716.1-exon1;Parent=cds1111 +NC_011744 S-MART exon 1279907 1280713 . + . ID=cds1111-exon2;Name=YP_002395717.1--YP_002395716.1-exon2;Parent=cds1111 +NC_011744 S-MART CDS 1280972 1281334 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395718.1;Dbxref=Genbank:YP_002395718.1,GeneID:7138425;ID=cds1112;Name=YP_002395718.1 +NC_011744 S-MART CDS 1281588 1282403 . + . product=ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395719.1;Dbxref=Genbank:YP_002395719.1,GeneID:7138426;ID=cds1113;Name=YP_002395719.1 +NC_011744 S-MART CDS 1282598 1283302 . - . product=acyl dehydratase;transl_table=11;gbkey=CDS;protein_id=YP_002395720.1;Dbxref=Genbank:YP_002395720.1,GeneID:7138427;ID=cds1114;Name=YP_002395720.1 +NC_011744 S-MART CDS 1283617 1287968 . - . product=membrane fusion protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395722.1;Dbxref=Genbank:YP_002395722.1,GeneID:7138429;ID=cds1116;Name=YP_002395722.1--YP_002395721.1 +NC_011744 S-MART exon 1283617 1286769 . - . ID=cds1116-exon1;Name=YP_002395722.1--YP_002395721.1-exon1;Parent=cds1116 +NC_011744 S-MART exon 1286781 1287968 . - . ID=cds1116-exon2;Name=YP_002395722.1--YP_002395721.1-exon2;Parent=cds1116 +NC_011744 S-MART CDS 1288177 1288620 . + . product=deoxycytidylate deaminase;transl_table=11;gbkey=CDS;protein_id=YP_002395723.1;Dbxref=Genbank:YP_002395723.1,GeneID:7138430;ID=cds1117;Name=YP_002395723.1 +NC_011744 S-MART CDS 1288736 1291491 . - . product=peptidase T;nbElements=3.000000;transl_table=11;Note=catalyzes the release of the N-terminal amino acid from a tripeptide;gbkey=CDS;protein_id=YP_002395726.1;Dbxref=Genbank:YP_002395726.1,GeneID:7138433;ID=cds1120;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1 +NC_011744 S-MART exon 1288736 1289578 . - . ID=cds1120-exon1;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1-exon1;Parent=cds1120 +NC_011744 S-MART exon 1289715 1290182 . - . ID=cds1120-exon2;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1-exon2;Parent=cds1120 +NC_011744 S-MART exon 1290259 1291491 . - . ID=cds1120-exon3;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1-exon3;Parent=cds1120 +NC_011744 S-MART CDS 1291841 1291987 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395727.1;Dbxref=Genbank:YP_002395727.1,GeneID:7138434;ID=cds1121;Name=YP_002395727.1 +NC_011744 S-MART CDS 1292195 1292341 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395728.1;Dbxref=Genbank:YP_002395728.1,GeneID:7138435;ID=cds1122;Name=YP_002395728.1 +NC_011744 S-MART CDS 1292358 1293410 . + . product=NADPH-dependent aldose reductase;transl_table=11;gbkey=CDS;protein_id=YP_002395729.1;Dbxref=Genbank:YP_002395729.1,GeneID:7138436;ID=cds1123;Name=YP_002395729.1 +NC_011744 S-MART CDS 1293602 1294336 . + . product=rRNA methylase;transl_table=11;gbkey=CDS;protein_id=YP_002395730.1;Dbxref=Genbank:YP_002395730.1,GeneID:7138437;ID=cds1124;Name=YP_002395730.1 +NC_011744 S-MART CDS 1294434 1294757 . - . product=Ferredoxin;transl_table=11;gbkey=CDS;protein_id=YP_002395731.1;Dbxref=Genbank:YP_002395731.1,GeneID:7138438;ID=cds1125;Name=YP_002395731.1 +NC_011744 S-MART CDS 1295012 1296643 . + . product=Uncharacterized FAD-dependent dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395732.1;Dbxref=Genbank:YP_002395732.1,GeneID:7138439;ID=cds1126;Name=YP_002395732.1 +NC_011744 S-MART CDS 1296763 1298226 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395733.1;Dbxref=Genbank:YP_002395733.1,GeneID:7138440;ID=cds1127;Name=YP_002395733.1 +NC_011744 S-MART CDS 1298424 1300868 . - . product=Nitroreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395735.1;Dbxref=Genbank:YP_002395735.1,GeneID:7138442;ID=cds1129;Name=YP_002395735.1--YP_002395734.1 +NC_011744 S-MART exon 1298424 1300079 . - . ID=cds1129-exon1;Name=YP_002395735.1--YP_002395734.1-exon1;Parent=cds1129 +NC_011744 S-MART exon 1300212 1300868 . - . ID=cds1129-exon2;Name=YP_002395735.1--YP_002395734.1-exon2;Parent=cds1129 +NC_011744 S-MART CDS 1301316 1303737 . + . product=DNA polymerase III subunit alpha;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395738.1;Dbxref=Genbank:YP_002395738.1,GeneID:7138445;ID=cds1132;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1 +NC_011744 S-MART exon 1301316 1302515 . + . ID=cds1132-exon1;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1-exon1;Parent=cds1132 +NC_011744 S-MART exon 1302625 1303029 . + . ID=cds1132-exon2;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1-exon2;Parent=cds1132 +NC_011744 S-MART exon 1303114 1303737 . + . ID=cds1132-exon3;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1-exon3;Parent=cds1132 +NC_011744 S-MART CDS 1303820 1304656 . - . product=DNA polymerase III subunit alpha;transl_table=11;gbkey=CDS;protein_id=YP_002395739.1;Dbxref=Genbank:YP_002395739.1,GeneID:7138446;ID=cds1133;Name=YP_002395739.1 +NC_011744 S-MART CDS 1304898 1305092 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395740.1;Dbxref=Genbank:YP_002395740.1,GeneID:7138447;ID=cds1134;Name=YP_002395740.1 +NC_011744 S-MART CDS 1305233 1307669 . - . product=Oxidoreductase%2C aldo%2Fketo reductase 2 family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395742.1;Dbxref=Genbank:YP_002395742.1,GeneID:7138449;ID=cds1136;Name=YP_002395742.1--YP_002395741.1 +NC_011744 S-MART exon 1305233 1306639 . - . ID=cds1136-exon1;Name=YP_002395742.1--YP_002395741.1-exon1;Parent=cds1136 +NC_011744 S-MART exon 1306761 1307669 . - . ID=cds1136-exon2;Name=YP_002395742.1--YP_002395741.1-exon2;Parent=cds1136 +NC_011744 S-MART CDS 1307887 1308480 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395743.1;Dbxref=Genbank:YP_002395743.1,GeneID:7138450;ID=cds1137;Name=YP_002395743.1 +NC_011744 S-MART CDS 1308702 1310549 . + . product=peptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395744.1;Dbxref=Genbank:YP_002395744.1,GeneID:7138451;ID=cds1138;Name=YP_002395744.1 +NC_011744 S-MART CDS 1310644 1313357 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395747.1;Dbxref=Genbank:YP_002395747.1,GeneID:7138454;ID=cds1141;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1 +NC_011744 S-MART exon 1310644 1311069 . - . ID=cds1141-exon1;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1-exon1;Parent=cds1141 +NC_011744 S-MART exon 1311160 1312209 . - . ID=cds1141-exon2;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1-exon2;Parent=cds1141 +NC_011744 S-MART exon 1312356 1313357 . - . ID=cds1141-exon3;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1-exon3;Parent=cds1141 +NC_011744 S-MART CDS 1313533 1314327 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395748.1;Dbxref=Genbank:YP_002395748.1,GeneID:7138455;ID=cds1142;Name=YP_002395748.1 +NC_011744 S-MART CDS 1314439 1315272 . - . product=recombinase A;transl_table=11;gbkey=CDS;protein_id=YP_002395749.1;Dbxref=Genbank:YP_002395749.1,GeneID:7138456;ID=cds1143;Name=YP_002395749.1 +NC_011744 S-MART CDS 1315467 1317071 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395750.1;Dbxref=Genbank:YP_002395750.1,GeneID:7138457;ID=cds1144;Name=YP_002395750.1 +NC_011744 S-MART CDS 1317324 1317572 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395751.1;Dbxref=Genbank:YP_002395751.1,GeneID:7138458;ID=cds1145;Name=YP_002395751.1 +NC_011744 S-MART CDS 1318149 1318313 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395752.1;Dbxref=Genbank:YP_002395752.1,GeneID:7138459;ID=cds1146;Name=YP_002395752.1 +NC_011744 S-MART CDS 1318446 1321973 . + . product=outer membrane protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395756.1;Dbxref=Genbank:YP_002395756.1,GeneID:7138463;ID=cds1150;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1 +NC_011744 S-MART exon 1318446 1320557 . + . ID=cds1150-exon1;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1-exon1;Parent=cds1150 +NC_011744 S-MART exon 1320672 1321130 . + . ID=cds1150-exon2;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1-exon2;Parent=cds1150 +NC_011744 S-MART exon 1321254 1321973 . + . ID=cds1150-exon3;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1-exon3;Parent=cds1150 +NC_011744 S-MART CDS 1322129 1323394 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395757.1;Dbxref=Genbank:YP_002395757.1,GeneID:7138464;ID=cds1151;Name=YP_002395757.1 +NC_011744 S-MART CDS 1323621 1324172 . + . product=Ribosomal-protein-serine acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395758.1;Dbxref=Genbank:YP_002395758.1,GeneID:7138465;ID=cds1152;Name=YP_002395758.1 +NC_011744 S-MART CDS 1324315 1326361 . - . product=Response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395760.1;Dbxref=Genbank:YP_002395760.1,GeneID:7138467;ID=cds1154;Name=YP_002395760.1--YP_002395759.1 +NC_011744 S-MART CDS 1326887 1327444 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395761.1;Dbxref=Genbank:YP_002395761.1,GeneID:7138468;ID=cds1155;Name=YP_002395761.1 +NC_011744 S-MART CDS 1327606 1329549 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395762.1;Dbxref=Genbank:YP_002395762.1,GeneID:7138469;ID=cds1156;Name=YP_002395762.1 +NC_011744 S-MART CDS 1329878 1330042 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395763.1;Dbxref=Genbank:YP_002395763.1,GeneID:7138470;ID=cds1157;Name=YP_002395763.1 +NC_011744 S-MART CDS 1330397 1332139 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395764.1;Dbxref=Genbank:YP_002395764.1,GeneID:7138471;ID=cds1158;Name=YP_002395764.1 +NC_011744 S-MART CDS 1332366 1334445 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395767.1;Dbxref=Genbank:YP_002395767.1,GeneID:7138474;ID=cds1161;Name=YP_002395767.1--YP_002395766.1--YP_002395765.1 +NC_011744 S-MART CDS 1335086 1336894 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395771.1;Dbxref=Genbank:YP_002395771.1,GeneID:7138478;ID=cds1165;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1 +NC_011744 S-MART exon 1335086 1335376 . + . ID=cds1165-exon1;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon1;Parent=cds1165 +NC_011744 S-MART exon 1335416 1335703 . + . ID=cds1165-exon2;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon2;Parent=cds1165 +NC_011744 S-MART exon 1335760 1336290 . + . ID=cds1165-exon3;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon3;Parent=cds1165 +NC_011744 S-MART exon 1336367 1336894 . + . ID=cds1165-exon4;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon4;Parent=cds1165 +NC_011744 S-MART CDS 1337143 1337580 . + . product=riboflavin biosynthesis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395772.1;Dbxref=Genbank:YP_002395772.1,GeneID:7138479;ID=cds1166;Name=YP_002395772.1 +NC_011744 S-MART CDS 1337598 1338092 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395773.1;Dbxref=Genbank:YP_002395773.1,GeneID:7138480;ID=cds1167;Name=YP_002395773.1 +NC_011744 S-MART CDS 1338365 1340077 . + . product=ribosomal large chain pseudouridine synthase A;transl_table=11;gbkey=CDS;protein_id=YP_002395774.1;Dbxref=Genbank:YP_002395774.1,GeneID:7138481;ID=cds1168;Name=YP_002395774.1 +NC_011744 S-MART CDS 1340204 1340401 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395775.1;Dbxref=Genbank:YP_002395775.1,GeneID:7138482;ID=cds1169;Name=YP_002395775.1 +NC_011744 S-MART CDS 1340280 1340660 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395776.1;Dbxref=Genbank:YP_002395776.1,GeneID:7138483;ID=cds1170;Name=YP_002395776.1 +NC_011744 S-MART CDS 1340984 1343287 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395778.1;Dbxref=Genbank:YP_002395778.1,GeneID:7138485;ID=cds1172;Name=YP_002395778.1--YP_002395777.1 +NC_011744 S-MART exon 1340984 1342144 . + . ID=cds1172-exon1;Name=YP_002395778.1--YP_002395777.1-exon1;Parent=cds1172 +NC_011744 S-MART exon 1342271 1343287 . + . ID=cds1172-exon2;Name=YP_002395778.1--YP_002395777.1-exon2;Parent=cds1172 +NC_011744 S-MART CDS 1343308 1344375 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395779.1;Dbxref=Genbank:YP_002395779.1,GeneID:7138486;ID=cds1173;Name=YP_002395779.1 +NC_011744 S-MART CDS 1344533 1345891 . - . product=Na%2B%2FH%2B antiporter;transl_table=11;gbkey=CDS;protein_id=YP_002395780.1;Dbxref=Genbank:YP_002395780.1,GeneID:7138487;ID=cds1174;Name=YP_002395780.1 +NC_011744 S-MART CDS 1346082 1347993 . - . product=beta-lactamase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395782.1;Dbxref=Genbank:YP_002395782.1,GeneID:7138489;ID=cds1176;Name=YP_002395782.1--YP_002395781.1 +NC_011744 S-MART exon 1346082 1346846 . - . ID=cds1176-exon1;Name=YP_002395782.1--YP_002395781.1-exon1;Parent=cds1176 +NC_011744 S-MART exon 1346914 1347993 . - . ID=cds1176-exon2;Name=YP_002395782.1--YP_002395781.1-exon2;Parent=cds1176 +NC_011744 S-MART CDS 1348155 1349939 . - . product=transport protein;transl_table=11;gbkey=CDS;protein_id=YP_002395783.1;Dbxref=Genbank:YP_002395783.1,GeneID:7138490;ID=cds1177;Name=YP_002395783.1 +NC_011744 S-MART CDS 1350071 1350241 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395784.1;Dbxref=Genbank:YP_002395784.1,GeneID:7138491;ID=cds1178;Name=YP_002395784.1 +NC_011744 S-MART CDS 1350543 1351909 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395786.1;Dbxref=Genbank:YP_002395786.1,GeneID:7138493;ID=cds1180;Name=YP_002395786.1--YP_002395785.1 +NC_011744 S-MART exon 1350543 1351448 . + . ID=cds1180-exon1;Name=YP_002395786.1--YP_002395785.1-exon1;Parent=cds1180 +NC_011744 S-MART exon 1351481 1351909 . + . ID=cds1180-exon2;Name=YP_002395786.1--YP_002395785.1-exon2;Parent=cds1180 +NC_011744 S-MART CDS 1351985 1352779 . - . product=Zn-dependent hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002395787.1;Dbxref=Genbank:YP_002395787.1,GeneID:7138494;ID=cds1181;Name=YP_002395787.1 +NC_011744 S-MART CDS 1353161 1353763 . + . product=prolyl 4-hydroxylase subunit alpha;transl_table=11;gbkey=CDS;protein_id=YP_002395788.1;Dbxref=Genbank:YP_002395788.1,GeneID:7138495;ID=cds1182;Name=YP_002395788.1 +NC_011744 S-MART CDS 1354039 1355331 . + . product=sugar ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395789.1;Dbxref=Genbank:YP_002395789.1,GeneID:7138496;ID=cds1183;Name=YP_002395789.1 +NC_011744 S-MART CDS 1355408 1355551 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395790.1;Dbxref=Genbank:YP_002395790.1,GeneID:7138497;ID=cds1184;Name=YP_002395790.1 +NC_011744 S-MART CDS 1355502 1359415 . + . product=glycerophosphoryl diester phosphodiesterase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395794.1;Dbxref=Genbank:YP_002395794.1,GeneID:7138501;ID=cds1188;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1 +NC_011744 S-MART exon 1355502 1356458 . + . ID=cds1188-exon1;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon1;Parent=cds1188 +NC_011744 S-MART exon 1356497 1357339 . + . ID=cds1188-exon2;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon2;Parent=cds1188 +NC_011744 S-MART exon 1357449 1358639 . + . ID=cds1188-exon3;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon3;Parent=cds1188 +NC_011744 S-MART exon 1358696 1359415 . + . ID=cds1188-exon4;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon4;Parent=cds1188 +NC_011744 S-MART CDS 1359575 1360312 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395795.1;Dbxref=Genbank:YP_002395795.1,GeneID:7138502;ID=cds1189;Name=YP_002395795.1 +NC_011744 S-MART CDS 1360418 1361676 . - . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395797.1;Dbxref=Genbank:YP_002395797.1,GeneID:7138504;ID=cds1191;Name=YP_002395797.1--YP_002395796.1 +NC_011744 S-MART exon 1360418 1361191 . - . ID=cds1191-exon1;Name=YP_002395797.1--YP_002395796.1-exon1;Parent=cds1191 +NC_011744 S-MART exon 1361194 1361676 . - . ID=cds1191-exon2;Name=YP_002395797.1--YP_002395796.1-exon2;Parent=cds1191 +NC_011744 S-MART CDS 1361888 1362676 . - . product=Glycosyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395798.1;Dbxref=Genbank:YP_002395798.1,GeneID:7138505;ID=cds1192;Name=YP_002395798.1 +NC_011744 S-MART CDS 1363264 1364244 . + . product=oxidoreductase;transl_table=11;gbkey=CDS;protein_id=YP_002395799.1;Dbxref=Genbank:YP_002395799.1,GeneID:7138506;ID=cds1193;Name=YP_002395799.1 +NC_011744 S-MART CDS 1364408 1364569 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395800.1;Dbxref=Genbank:YP_002395800.1,GeneID:7138507;ID=cds1194;Name=YP_002395800.1 +NC_011744 S-MART CDS 1364917 1365549 . + . product=glutaredoxin;transl_table=11;Note=cofactor involved in the reduction of disulfides;gbkey=CDS;protein_id=YP_002395801.1;Dbxref=Genbank:YP_002395801.1,GeneID:7138508;ID=cds1195;Name=YP_002395801.1 +NC_011744 S-MART CDS 1365674 1366507 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395802.1;Dbxref=Genbank:YP_002395802.1,GeneID:7138509;ID=cds1196;Name=YP_002395802.1 +NC_011744 S-MART CDS 1366686 1369058 . + . product=phosphoenolpyruvate synthase;transl_table=11;Note=catalyzes the formation of phosphoenolpyruvate from pyruvate;gbkey=CDS;protein_id=YP_002395803.1;Dbxref=Genbank:YP_002395803.1,GeneID:7138510;ID=cds1197;Name=YP_002395803.1 +NC_011744 S-MART CDS 1369271 1370608 . + . product=Multi antimicrobial extrusion protein MatE;transl_table=11;gbkey=CDS;protein_id=YP_002395804.1;Dbxref=Genbank:YP_002395804.1,GeneID:7138511;ID=cds1198;Name=YP_002395804.1 +NC_011744 S-MART CDS 1371102 1375019 . + . product=coenzyme A disulfide reductase;nbElements=4.000000;transl_table=11;Note=CoADR%3B specific for coenzyme A disulfide%3B requires NADH%3B involved in protecting cells against reactive oxygen species by recycling coenzyme A disulfide which can reduce hydrogen peroxide;gbkey=CDS;protein_id=YP_002395808.1;Dbxref=Genbank:YP_002395808.1,GeneID:7138515;ID=cds1202;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1 +NC_011744 S-MART exon 1371102 1371767 . + . ID=cds1202-exon1;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon1;Parent=cds1202 +NC_011744 S-MART exon 1371792 1372175 . + . ID=cds1202-exon2;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon2;Parent=cds1202 +NC_011744 S-MART exon 1372213 1373619 . + . ID=cds1202-exon3;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon3;Parent=cds1202 +NC_011744 S-MART exon 1373697 1375019 . + . ID=cds1202-exon4;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon4;Parent=cds1202 +NC_011744 S-MART rRNA 1375211 1378513 . - . product=ribosomal RNA 23S;nbElements=4.000000;gbkey=rRNA;Dbxref=GeneID:7138806;ID=rna19;Name=rna19--rna18--rna17--rna16 +NC_011744 S-MART exon 1375211 1375301 . - . ID=rna19-exon1;Name=rna19--rna18--rna17--rna16-exon1;Parent=rna19 +NC_011744 S-MART exon 1375369 1375489 . - . ID=rna19-exon2;Name=rna19--rna18--rna17--rna16-exon2;Parent=rna19 +NC_011744 S-MART exon 1375609 1378513 . - . ID=rna19-exon3;Name=rna19--rna18--rna17--rna16-exon3;Parent=rna19 +NC_011744 S-MART rRNA 1378932 1381102 . - . product=ribosomal RNA 16S;nbElements=6.000000;gbkey=rRNA;Dbxref=GeneID:7138825;ID=rna25;Name=rna25--rna24--rna23--rna22--rna21--rna20 +NC_011744 S-MART exon 1378932 1379007 . - . ID=rna25-exon1;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon1;Parent=rna25 +NC_011744 S-MART exon 1379076 1379151 . - . ID=rna25-exon2;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon2;Parent=rna25 +NC_011744 S-MART exon 1379177 1379252 . - . ID=rna25-exon3;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon3;Parent=rna25 +NC_011744 S-MART exon 1379278 1379353 . - . ID=rna25-exon4;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon4;Parent=rna25 +NC_011744 S-MART exon 1379356 1379431 . - . ID=rna25-exon5;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon5;Parent=rna25 +NC_011744 S-MART exon 1379555 1381102 . - . ID=rna25-exon6;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon6;Parent=rna25 +NC_011744 S-MART CDS 1381807 1382205 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395809.1;Dbxref=Genbank:YP_002395809.1,GeneID:7138808;ID=cds1203;Name=YP_002395809.1 +NC_011744 S-MART CDS 1382635 1383234 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395810.1;Dbxref=Genbank:YP_002395810.1,GeneID:7138517;ID=cds1204;Name=YP_002395810.1 +NC_011744 S-MART CDS 1383353 1387051 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395813.1;Dbxref=Genbank:YP_002395813.1,GeneID:7138520;ID=cds1207;Name=YP_002395813.1--YP_002395812.1--YP_002395811.1 +NC_011744 S-MART CDS 1387465 1388616 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395814.1;Dbxref=Genbank:YP_002395814.1,GeneID:7138521;ID=cds1208;Name=YP_002395814.1 +NC_011744 S-MART CDS 1387832 1388134 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395815.1;Dbxref=Genbank:YP_002395815.1,GeneID:7138522;ID=cds1209;Name=YP_002395815.1 +NC_011744 S-MART CDS 1388799 1389693 . + . product=RNA polymerase sigma factor SigZ;nbElements=2.000000;transl_table=11;Note=Member of the extracytoplasmic function sigma factors which are active under specific conditions%3B binds with the catalytic core of RNA polymerase to produce the holoenzyme and directs bacterial core RNA polymerase to specific promoter elements to initiate transcription;gbkey=CDS;protein_id=YP_002395817.1;Dbxref=Genbank:YP_002395817.1,GeneID:7138524;ID=cds1211;Name=YP_002395817.1--YP_002395816.1 +NC_011744 S-MART exon 1388799 1389095 . + . ID=cds1211-exon1;Name=YP_002395817.1--YP_002395816.1-exon1;Parent=cds1211 +NC_011744 S-MART exon 1389133 1389693 . + . ID=cds1211-exon2;Name=YP_002395817.1--YP_002395816.1-exon2;Parent=cds1211 +NC_011744 S-MART CDS 1389802 1390446 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395818.1;Dbxref=Genbank:YP_002395818.1,GeneID:7138525;ID=cds1212;Name=YP_002395818.1 +NC_011744 S-MART CDS 1390708 1392261 . + . product=MFS transporter;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395820.1;Dbxref=Genbank:YP_002395820.1,GeneID:7138527;ID=cds1214;Name=YP_002395820.1--YP_002395819.1 +NC_011744 S-MART exon 1390708 1391040 . + . ID=cds1214-exon1;Name=YP_002395820.1--YP_002395819.1-exon1;Parent=cds1214 +NC_011744 S-MART exon 1391056 1392261 . + . ID=cds1214-exon2;Name=YP_002395820.1--YP_002395819.1-exon2;Parent=cds1214 +NC_011744 S-MART CDS 1392486 1393211 . + . product=permeases;transl_table=11;gbkey=CDS;protein_id=YP_002395821.1;Dbxref=Genbank:YP_002395821.1,GeneID:7138528;ID=cds1215;Name=YP_002395821.1 +NC_011744 S-MART CDS 1393571 1395505 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395822.1;Dbxref=Genbank:YP_002395822.1,GeneID:7138529;ID=cds1216;Name=YP_002395822.1 +NC_011744 S-MART CDS 1395684 1396430 . - . product=membrane-associated phospholipid phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002395823.1;Dbxref=Genbank:YP_002395823.1,GeneID:7138530;ID=cds1217;Name=YP_002395823.1 +NC_011744 S-MART ncRNA 1396814 1396964 . + . product=FMN riboswitch;ncrna_class=other;gbkey=ncRNA;Dbxref=GeneID:7138531;ID=rna26;Name=rna26 +NC_011744 S-MART CDS 1397312 1397968 . + . product=3%2C4-dihydroxy-2-butanone 4-phosphate synthase;transl_table=11;Note=DHBP synthase%3B functions during riboflavin biosynthesis;gbkey=CDS;protein_id=YP_002395824.1;Dbxref=Genbank:YP_002395824.1,GeneID:7138803;ID=cds1218;Name=YP_002395824.1 +NC_011744 S-MART CDS 1400921 1401307 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395828.1;Dbxref=Genbank:YP_002395828.1,GeneID:7138535;ID=cds1222;Name=YP_002395828.1 +NC_011744 S-MART CDS 1398300 1403173 . + . product=ABC transporter ATP-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395829.1;Dbxref=Genbank:YP_002395829.1,GeneID:7138536;ID=cds1223;Name=YP_002395829.1--YP_002395827.1--YP_002395826.1--YP_002395825.1 +NC_011744 S-MART CDS 1404163 1404264 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395831.1;Dbxref=Genbank:YP_002395831.1,GeneID:7138538;ID=cds1225;Name=YP_002395831.1 +NC_011744 S-MART CDS 1403576 1404439 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395830.1;Dbxref=Genbank:YP_002395830.1,GeneID:7138537;ID=cds1224;Name=YP_002395830.1 +NC_011744 S-MART CDS 1404576 1405475 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395832.1;Dbxref=Genbank:YP_002395832.1,GeneID:7138539;ID=cds1226;Name=YP_002395832.1 +NC_011744 S-MART CDS 1405635 1406273 . + . product=NADH-flavin reductase;transl_table=11;gbkey=CDS;protein_id=YP_002395833.1;Dbxref=Genbank:YP_002395833.1,GeneID:7138540;ID=cds1227;Name=YP_002395833.1 +NC_011744 S-MART CDS 1406351 1407979 . - . product=oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395835.1;Dbxref=Genbank:YP_002395835.1,GeneID:7138542;ID=cds1229;Name=YP_002395835.1--YP_002395834.1 +NC_011744 S-MART exon 1406351 1407004 . - . ID=cds1229-exon1;Name=YP_002395835.1--YP_002395834.1-exon1;Parent=cds1229 +NC_011744 S-MART exon 1407140 1407979 . - . ID=cds1229-exon2;Name=YP_002395835.1--YP_002395834.1-exon2;Parent=cds1229 +NC_011744 S-MART CDS 1408013 1408351 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395836.1;Dbxref=Genbank:YP_002395836.1,GeneID:7138543;ID=cds1230;Name=YP_002395836.1 +NC_011744 S-MART CDS 1408399 1409310 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395837.1;Dbxref=Genbank:YP_002395837.1,GeneID:7138544;ID=cds1231;Name=YP_002395837.1 +NC_011744 S-MART CDS 1409515 1410234 . + . product=Oxidoreductase%2C short-chain dehydrogenase%2Freductase;transl_table=11;gbkey=CDS;protein_id=YP_002395838.1;Dbxref=Genbank:YP_002395838.1,GeneID:7138545;ID=cds1232;Name=YP_002395838.1 +NC_011744 S-MART CDS 1410452 1411099 . - . product=outer membrane protein W;transl_table=11;Note=receptor for colicin S4;gbkey=CDS;protein_id=YP_002395839.1;Dbxref=Genbank:YP_002395839.1,GeneID:7138546;ID=cds1233;Name=YP_002395839.1 +NC_011744 S-MART CDS 1411500 1412720 . + . product=glucose-1-phosphate adenylyltransferase;transl_table=11;Note=catalyzes the formation of ADP-glucose and diphosphate from ATP and alpha-D-glucose 1-phosphate;gbkey=CDS;protein_id=YP_002395840.1;Dbxref=Genbank:YP_002395840.1,GeneID:7138547;ID=cds1234;Name=YP_002395840.1 +NC_011744 S-MART CDS 1413164 1413520 . + . product=ribosomal subunit interface protein;transl_table=11;gbkey=CDS;protein_id=YP_002395841.1;Dbxref=Genbank:YP_002395841.1,GeneID:7138548;ID=cds1235;Name=YP_002395841.1 +NC_011744 S-MART CDS 1413807 1414866 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395843.1;Dbxref=Genbank:YP_002395843.1,GeneID:7138550;ID=cds1237;Name=YP_002395843.1--YP_002395842.1 +NC_011744 S-MART exon 1413807 1413962 . + . ID=cds1237-exon1;Name=YP_002395843.1--YP_002395842.1-exon1;Parent=cds1237 +NC_011744 S-MART exon 1414072 1414866 . + . ID=cds1237-exon2;Name=YP_002395843.1--YP_002395842.1-exon2;Parent=cds1237 +NC_011744 S-MART CDS 1415023 1418583 . - . product=ABC transporter substrate-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395847.1;Dbxref=Genbank:YP_002395847.1,GeneID:7138554;ID=cds1241;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1 +NC_011744 S-MART exon 1415023 1417408 . - . ID=cds1241-exon1;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1-exon1;Parent=cds1241 +NC_011744 S-MART exon 1417537 1418583 . - . ID=cds1241-exon2;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1-exon2;Parent=cds1241 +NC_011744 S-MART CDS 1418879 1420120 . - . product=glycerophosphoryl diester phosphodiesterase;transl_table=11;gbkey=CDS;protein_id=YP_002395848.1;Dbxref=Genbank:YP_002395848.1,GeneID:7138555;ID=cds1242;Name=YP_002395848.1 +NC_011744 S-MART CDS 1420375 1423697 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395850.1;Dbxref=Genbank:YP_002395850.1,GeneID:7138557;ID=cds1244;Name=YP_002395850.1--YP_002395849.1 +NC_011744 S-MART CDS 1424117 1424959 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395851.1;Dbxref=Genbank:YP_002395851.1,GeneID:7138558;ID=cds1245;Name=YP_002395851.1 +NC_011744 S-MART CDS 1425300 1426140 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395853.1;Dbxref=Genbank:YP_002395853.1,GeneID:7138560;ID=cds1247;Name=YP_002395853.1--YP_002395852.1 +NC_011744 S-MART exon 1425300 1425659 . + . ID=cds1247-exon1;Name=YP_002395853.1--YP_002395852.1-exon1;Parent=cds1247 +NC_011744 S-MART exon 1425697 1426140 . + . ID=cds1247-exon2;Name=YP_002395853.1--YP_002395852.1-exon2;Parent=cds1247 +NC_011744 S-MART CDS 1426447 1427217 . + . product=glutamine amidotransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395854.1;Dbxref=Genbank:YP_002395854.1,GeneID:7138561;ID=cds1248;Name=YP_002395854.1 +NC_011744 S-MART CDS 1427257 1431262 . - . product=Lipase%2Facylhydrolase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395858.1;Dbxref=Genbank:YP_002395858.1,GeneID:7138565;ID=cds1252;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1 +NC_011744 S-MART exon 1427257 1428243 . - . ID=cds1252-exon1;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon1;Parent=cds1252 +NC_011744 S-MART exon 1428301 1429308 . - . ID=cds1252-exon2;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon2;Parent=cds1252 +NC_011744 S-MART exon 1429400 1430290 . - . ID=cds1252-exon3;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon3;Parent=cds1252 +NC_011744 S-MART exon 1430426 1431262 . - . ID=cds1252-exon4;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon4;Parent=cds1252 +NC_011744 S-MART CDS 1431541 1433601 . + . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002395859.1;Dbxref=Genbank:YP_002395859.1,GeneID:7138566;ID=cds1253;Name=YP_002395859.1 +NC_011744 S-MART CDS 1433713 1434225 . - . product=rRNA methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395860.1;Dbxref=Genbank:YP_002395860.1,GeneID:7138567;ID=cds1254;Name=YP_002395860.1 +NC_011744 S-MART CDS 1434499 1436160 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395861.1;Dbxref=Genbank:YP_002395861.1,GeneID:7138568;ID=cds1255;Name=YP_002395861.1 +NC_011744 S-MART CDS 1436281 1437150 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395862.1;Dbxref=Genbank:YP_002395862.1,GeneID:7138569;ID=cds1256;Name=YP_002395862.1 +NC_011744 S-MART CDS 1437413 1437760 . + . product=acyl-CoA synthetase;transl_table=11;gbkey=CDS;protein_id=YP_002395863.1;Dbxref=Genbank:YP_002395863.1,GeneID:7138570;ID=cds1257;Name=YP_002395863.1 +NC_011744 S-MART CDS 1437953 1439611 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395864.1;Dbxref=Genbank:YP_002395864.1,GeneID:7138571;ID=cds1258;Name=YP_002395864.1 +NC_011744 S-MART CDS 1439849 1440274 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395865.1;Dbxref=Genbank:YP_002395865.1,GeneID:7138572;ID=cds1259;Name=YP_002395865.1 +NC_011744 S-MART CDS 1440540 1441439 . - . product=drug%2Fmetabolite transporter permease;transl_table=11;gbkey=CDS;protein_id=YP_002395866.1;Dbxref=Genbank:YP_002395866.1,GeneID:7138573;ID=cds1260;Name=YP_002395866.1 +NC_011744 S-MART CDS 1441562 1442989 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395867.1;Dbxref=Genbank:YP_002395867.1,GeneID:7138574;ID=cds1261;Name=YP_002395867.1 +NC_011744 S-MART CDS 1443084 1444880 . - . product=transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395869.1;Dbxref=Genbank:YP_002395869.1,GeneID:7138576;ID=cds1263;Name=YP_002395869.1--YP_002395868.1 +NC_011744 S-MART exon 1443084 1443647 . - . ID=cds1263-exon1;Name=YP_002395869.1--YP_002395868.1-exon1;Parent=cds1263 +NC_011744 S-MART exon 1443648 1444880 . - . ID=cds1263-exon2;Name=YP_002395869.1--YP_002395868.1-exon2;Parent=cds1263 +NC_011744 S-MART CDS 1445373 1446536 . + . product=tyrosine-specific transport protein;transl_table=11;gbkey=CDS;protein_id=YP_002395870.1;Dbxref=Genbank:YP_002395870.1,GeneID:7138577;ID=cds1264;Name=YP_002395870.1 +NC_011744 S-MART CDS 1446689 1447132 . - . product=MarR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395871.1;Dbxref=Genbank:YP_002395871.1,GeneID:7138578;ID=cds1265;Name=YP_002395871.1 +NC_011744 S-MART CDS 1447254 1447676 . + . product=Osmotically inducible protein C;transl_table=11;gbkey=CDS;protein_id=YP_002395872.1;Dbxref=Genbank:YP_002395872.1,GeneID:7138579;ID=cds1266;Name=YP_002395872.1 +NC_011744 S-MART CDS 1447782 1449785 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395873.1;Dbxref=Genbank:YP_002395873.1,GeneID:7138580;ID=cds1267;Name=YP_002395873.1 +NC_011744 S-MART CDS 1450187 1451071 . + . product=Transcriptional regulator%2C TetR family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395875.1;Dbxref=Genbank:YP_002395875.1,GeneID:7138582;ID=cds1269;Name=YP_002395875.1--YP_002395874.1 +NC_011744 S-MART exon 1450187 1450360 . + . ID=cds1269-exon1;Name=YP_002395875.1--YP_002395874.1-exon1;Parent=cds1269 +NC_011744 S-MART exon 1450487 1451071 . + . ID=cds1269-exon2;Name=YP_002395875.1--YP_002395874.1-exon2;Parent=cds1269 +NC_011744 S-MART CDS 1451183 1453048 . - . product=PTS system fructose-specific transporter subunit IIABC;transl_table=11;gbkey=CDS;protein_id=YP_002395876.1;Dbxref=Genbank:YP_002395876.1,GeneID:7138583;ID=cds1270;Name=YP_002395876.1 +NC_011744 S-MART CDS 1453292 1454375 . + . product=Phosphotransferase system mannitol%2Ffructose-specific IIA domain;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395878.1;Dbxref=Genbank:YP_002395878.1,GeneID:7138585;ID=cds1272;Name=YP_002395878.1--YP_002395877.1 +NC_011744 S-MART exon 1453292 1453594 . + . ID=cds1272-exon1;Name=YP_002395878.1--YP_002395877.1-exon1;Parent=cds1272 +NC_011744 S-MART exon 1453602 1454375 . + . ID=cds1272-exon2;Name=YP_002395878.1--YP_002395877.1-exon2;Parent=cds1272 +NC_011744 S-MART CDS 1454439 1455302 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395879.1;Dbxref=Genbank:YP_002395879.1,GeneID:7138586;ID=cds1273;Name=YP_002395879.1 +NC_011744 S-MART CDS 1455657 1457561 . + . product=PTS system fructose-specific transporter subunit IIABC;transl_table=11;gbkey=CDS;protein_id=YP_002395880.1;Dbxref=Genbank:YP_002395880.1,GeneID:7138587;ID=cds1274;Name=YP_002395880.1 +NC_011744 S-MART CDS 1457746 1458909 . + . product=mannose-6-phosphate isomerase;transl_table=11;gbkey=CDS;protein_id=YP_002395881.1;Dbxref=Genbank:YP_002395881.1,GeneID:7138588;ID=cds1275;Name=YP_002395881.1 +NC_011744 S-MART CDS 1459174 1461052 . + . product=PTS system fructose-specific transporter subunit IIBC;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395883.1;Dbxref=Genbank:YP_002395883.1,GeneID:7138590;ID=cds1277;Name=YP_002395883.1--YP_002395882.1 +NC_011744 S-MART exon 1459174 1459614 . + . ID=cds1277-exon1;Name=YP_002395883.1--YP_002395882.1-exon1;Parent=cds1277 +NC_011744 S-MART exon 1459628 1461052 . + . ID=cds1277-exon2;Name=YP_002395883.1--YP_002395882.1-exon2;Parent=cds1277 +NC_011744 S-MART CDS 1461160 1462836 . - . product=ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395884.1;Dbxref=Genbank:YP_002395884.1,GeneID:7138591;ID=cds1278;Name=YP_002395884.1 +NC_011744 S-MART CDS 1462960 1463670 . + . product=murein peptide amidase A;transl_table=11;gbkey=CDS;protein_id=YP_002395885.1;Dbxref=Genbank:YP_002395885.1,GeneID:7138592;ID=cds1279;Name=YP_002395885.1 +NC_011744 S-MART CDS 1463824 1465293 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395886.1;Dbxref=Genbank:YP_002395886.1,GeneID:7138593;ID=cds1280;Name=YP_002395886.1 +NC_011744 S-MART CDS 1465782 1466930 . + . product=alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395887.1;Dbxref=Genbank:YP_002395887.1,GeneID:7138594;ID=cds1281;Name=YP_002395887.1 +NC_011744 S-MART CDS 1467088 1467927 . + . product=esterase;transl_table=11;gbkey=CDS;protein_id=YP_002395888.1;Dbxref=Genbank:YP_002395888.1,GeneID:7138595;ID=cds1282;Name=YP_002395888.1 +NC_011744 S-MART CDS 1468090 1468969 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395890.1;Dbxref=Genbank:YP_002395890.1,GeneID:7138597;ID=cds1284;Name=YP_002395890.1--YP_002395889.1 +NC_011744 S-MART exon 1468090 1468422 . + . ID=cds1284-exon1;Name=YP_002395890.1--YP_002395889.1-exon1;Parent=cds1284 +NC_011744 S-MART exon 1468568 1468969 . + . ID=cds1284-exon2;Name=YP_002395890.1--YP_002395889.1-exon2;Parent=cds1284 +NC_011744 S-MART CDS 1469206 1469946 . + . product=mutT domain protein-like;transl_table=11;gbkey=CDS;protein_id=YP_002395891.1;Dbxref=Genbank:YP_002395891.1,GeneID:7138598;ID=cds1285;Name=YP_002395891.1 +NC_011744 S-MART CDS 1470064 1470687 . - . product=homoserine%2Fhomoserine lactone efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002395892.1;Dbxref=Genbank:YP_002395892.1,GeneID:7138599;ID=cds1286;Name=YP_002395892.1 +NC_011744 S-MART CDS 1470805 1471716 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395893.1;Dbxref=Genbank:YP_002395893.1,GeneID:7138600;ID=cds1287;Name=YP_002395893.1 +NC_011744 S-MART CDS 1471790 1473310 . - . product=NAD-dependent aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395894.1;Dbxref=Genbank:YP_002395894.1,GeneID:7138601;ID=cds1288;Name=YP_002395894.1 +NC_011744 S-MART CDS 1473552 1475425 . + . product=Fis family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395896.1;Dbxref=Genbank:YP_002395896.1,GeneID:7138603;ID=cds1290;Name=YP_002395896.1--YP_002395895.1 +NC_011744 S-MART CDS 1475833 1478073 . + . product=methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395897.1;Dbxref=Genbank:YP_002395897.1,GeneID:7138604;ID=cds1291;Name=YP_002395897.1 +NC_011744 S-MART CDS 1478211 1479062 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395898.1;Dbxref=Genbank:YP_002395898.1,GeneID:7138605;ID=cds1292;Name=YP_002395898.1 +NC_011744 S-MART CDS 1479200 1479847 . + . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395899.1;Dbxref=Genbank:YP_002395899.1,GeneID:7138606;ID=cds1293;Name=YP_002395899.1 +NC_011744 S-MART CDS 1479924 1480773 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395901.1;Dbxref=Genbank:YP_002395901.1,GeneID:7138608;ID=cds1295;Name=YP_002395901.1--YP_002395900.1 +NC_011744 S-MART exon 1479924 1480157 . - . ID=cds1295-exon1;Name=YP_002395901.1--YP_002395900.1-exon1;Parent=cds1295 +NC_011744 S-MART exon 1480168 1480773 . - . ID=cds1295-exon2;Name=YP_002395901.1--YP_002395900.1-exon2;Parent=cds1295 +NC_011744 S-MART CDS 1480964 1482406 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395902.1;Dbxref=Genbank:YP_002395902.1,GeneID:7138609;ID=cds1296;Name=YP_002395902.1 +NC_011744 S-MART CDS 1482615 1483073 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395903.1;Dbxref=Genbank:YP_002395903.1,GeneID:7138610;ID=cds1297;Name=YP_002395903.1 +NC_011744 S-MART CDS 1483259 1485253 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395906.1;Dbxref=Genbank:YP_002395906.1,GeneID:7138613;ID=cds1300;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1 +NC_011744 S-MART exon 1483259 1483960 . + . ID=cds1300-exon1;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1-exon1;Parent=cds1300 +NC_011744 S-MART exon 1484046 1484837 . + . ID=cds1300-exon2;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1-exon2;Parent=cds1300 +NC_011744 S-MART exon 1484930 1485253 . + . ID=cds1300-exon3;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1-exon3;Parent=cds1300 +NC_011744 S-MART CDS 1485444 1485704 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395907.1;Dbxref=Genbank:YP_002395907.1,GeneID:7138614;ID=cds1301;Name=YP_002395907.1 +NC_011744 S-MART CDS 1485732 1487564 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395908.1;Dbxref=Genbank:YP_002395908.1,GeneID:7138615;ID=cds1302;Name=YP_002395908.1 +NC_011744 S-MART CDS 1487855 1489189 . - . product=anaerobic C4-dicarboxylate transporter;transl_table=11;Note=functions in anaerobic transport of C4-dicarboxylate compounds such as fumarate%3B similar to DcuA%3B DcuA and DcuB function as independent and mutually redundant C4-dicarboxylate %28aspartate%2C malate%2C fumarate and succinate%29 transporters;gbkey=CDS;protein_id=YP_002395909.1;Dbxref=Genbank:YP_002395909.1,GeneID:7138616;ID=cds1303;Name=YP_002395909.1 +NC_011744 S-MART CDS 1489595 1490254 . + . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395910.1;Dbxref=Genbank:YP_002395910.1,GeneID:7138617;ID=cds1304;Name=YP_002395910.1 +NC_011744 S-MART CDS 1490465 1491661 . + . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395912.1;Dbxref=Genbank:YP_002395912.1,GeneID:7138619;ID=cds1306;Name=YP_002395912.1--YP_002395911.1 +NC_011744 S-MART exon 1490465 1491091 . + . ID=cds1306-exon1;Name=YP_002395912.1--YP_002395911.1-exon1;Parent=cds1306 +NC_011744 S-MART exon 1491134 1491661 . + . ID=cds1306-exon2;Name=YP_002395912.1--YP_002395911.1-exon2;Parent=cds1306 +NC_011744 S-MART CDS 1491817 1492503 . + . product=DNA-3-methyladenine glycosylase;transl_table=11;gbkey=CDS;protein_id=YP_002395913.1;Dbxref=Genbank:YP_002395913.1,GeneID:7138620;ID=cds1307;Name=YP_002395913.1 +NC_011744 S-MART CDS 1492762 1493904 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395915.1;Dbxref=Genbank:YP_002395915.1,GeneID:7138622;ID=cds1309;Name=YP_002395915.1--YP_002395914.1 +NC_011744 S-MART exon 1492762 1493643 . + . ID=cds1309-exon1;Name=YP_002395915.1--YP_002395914.1-exon1;Parent=cds1309 +NC_011744 S-MART exon 1493713 1493904 . + . ID=cds1309-exon2;Name=YP_002395915.1--YP_002395914.1-exon2;Parent=cds1309 +NC_011744 S-MART CDS 1494104 1494520 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395916.1;Dbxref=Genbank:YP_002395916.1,GeneID:7138623;ID=cds1310;Name=YP_002395916.1 +NC_011744 S-MART CDS 1494720 1495373 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395917.1;Dbxref=Genbank:YP_002395917.1,GeneID:7138624;ID=cds1311;Name=YP_002395917.1 +NC_011744 S-MART CDS 1495584 1496496 . - . product=Transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395919.1;Dbxref=Genbank:YP_002395919.1,GeneID:7138626;ID=cds1313;Name=YP_002395919.1--YP_002395918.1 +NC_011744 S-MART exon 1495584 1495985 . - . ID=cds1313-exon1;Name=YP_002395919.1--YP_002395918.1-exon1;Parent=cds1313 +NC_011744 S-MART exon 1496014 1496496 . - . ID=cds1313-exon2;Name=YP_002395919.1--YP_002395918.1-exon2;Parent=cds1313 +NC_011744 S-MART CDS 1496621 1497514 . + . product=Permease of the drug-metabolite transporter %28DMT%29 superfamily;transl_table=11;gbkey=CDS;protein_id=YP_002395920.1;Dbxref=Genbank:YP_002395920.1,GeneID:7138627;ID=cds1314;Name=YP_002395920.1 +NC_011744 S-MART CDS 1497610 1498893 . - . product=transmembrane transport proteins;transl_table=11;gbkey=CDS;protein_id=YP_002395921.1;Dbxref=Genbank:YP_002395921.1,GeneID:7138628;ID=cds1315;Name=YP_002395921.1 +NC_011744 S-MART CDS 1498985 1500721 . + . product=ABC transporter substrate-bindnig protein;transl_table=11;gbkey=CDS;protein_id=YP_002395922.1;Dbxref=Genbank:YP_002395922.1,GeneID:7138629;ID=cds1316;Name=YP_002395922.1 +NC_011744 S-MART CDS 1500830 1501533 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395924.1;Dbxref=Genbank:YP_002395924.1,GeneID:7138631;ID=cds1318;Name=YP_002395924.1--YP_002395923.1 +NC_011744 S-MART CDS 1501648 1502550 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395925.1;Dbxref=Genbank:YP_002395925.1,GeneID:7138632;ID=cds1319;Name=YP_002395925.1 +NC_011744 S-MART CDS 1502816 1503733 . + . product=Permease of the drug%2Fmetabolite transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395926.1;Dbxref=Genbank:YP_002395926.1,GeneID:7138633;ID=cds1320;Name=YP_002395926.1 +NC_011744 S-MART CDS 1503909 1504016 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395927.1;Dbxref=Genbank:YP_002395927.1,GeneID:7138634;ID=cds1321;Name=YP_002395927.1 +NC_011744 S-MART CDS 1503996 1506286 . + . product=Na%2B driven multidrug efflux pump;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395929.1;Dbxref=Genbank:YP_002395929.1,GeneID:7138636;ID=cds1323;Name=YP_002395929.1--YP_002395928.1 +NC_011744 S-MART exon 1503996 1504838 . + . ID=cds1323-exon1;Name=YP_002395929.1--YP_002395928.1-exon1;Parent=cds1323 +NC_011744 S-MART exon 1504940 1506286 . + . ID=cds1323-exon2;Name=YP_002395929.1--YP_002395928.1-exon2;Parent=cds1323 +NC_011744 S-MART CDS 1506389 1509041 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395933.1;Dbxref=Genbank:YP_002395933.1,GeneID:7138640;ID=cds1327;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1 +NC_011744 S-MART exon 1506389 1507252 . - . ID=cds1327-exon1;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1-exon1;Parent=cds1327 +NC_011744 S-MART exon 1507261 1508740 . - . ID=cds1327-exon2;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1-exon2;Parent=cds1327 +NC_011744 S-MART exon 1508751 1509041 . - . ID=cds1327-exon3;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1-exon3;Parent=cds1327 +NC_011744 S-MART CDS 1509351 1510097 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395934.1;Dbxref=Genbank:YP_002395934.1,GeneID:7138641;ID=cds1328;Name=YP_002395934.1 +NC_011744 S-MART CDS 1510283 1512643 . - . product=ATP-dependent protease LA-related;transl_table=11;gbkey=CDS;protein_id=YP_002395935.1;Dbxref=Genbank:YP_002395935.1,GeneID:7138642;ID=cds1329;Name=YP_002395935.1 +NC_011744 S-MART CDS 1512884 1515019 . + . product=ABC transporter ATP-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395937.1;Dbxref=Genbank:YP_002395937.1,GeneID:7138644;ID=cds1331;Name=YP_002395937.1--YP_002395936.1 +NC_011744 S-MART exon 1512884 1513378 . + . ID=cds1331-exon1;Name=YP_002395937.1--YP_002395936.1-exon1;Parent=cds1331 +NC_011744 S-MART exon 1513391 1515019 . + . ID=cds1331-exon2;Name=YP_002395937.1--YP_002395936.1-exon2;Parent=cds1331 +NC_011744 S-MART CDS 1515440 1517185 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395939.1;Dbxref=Genbank:YP_002395939.1,GeneID:7138646;ID=cds1333;Name=YP_002395939.1--YP_002395938.1 +NC_011744 S-MART exon 1515440 1515808 . - . ID=cds1333-exon1;Name=YP_002395939.1--YP_002395938.1-exon1;Parent=cds1333 +NC_011744 S-MART exon 1515809 1517185 . - . ID=cds1333-exon2;Name=YP_002395939.1--YP_002395938.1-exon2;Parent=cds1333 +NC_011744 S-MART CDS 1516917 1517189 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395940.1;Dbxref=Genbank:YP_002395940.1,GeneID:7138647;ID=cds1334;Name=YP_002395940.1 +NC_011744 S-MART CDS 1517772 1518491 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395941.1;Dbxref=Genbank:YP_002395941.1,GeneID:7138648;ID=cds1335;Name=YP_002395941.1 +NC_011744 S-MART CDS 1518717 1523186 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395944.1;Dbxref=Genbank:YP_002395944.1,GeneID:7138651;ID=cds1338;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1 +NC_011744 S-MART exon 1518717 1518836 . - . ID=cds1338-exon1;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1-exon1;Parent=cds1338 +NC_011744 S-MART exon 1518867 1519880 . - . ID=cds1338-exon2;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1-exon2;Parent=cds1338 +NC_011744 S-MART exon 1519977 1523186 . - . ID=cds1338-exon3;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1-exon3;Parent=cds1338 +NC_011744 S-MART CDS 1523140 1524087 . + . product=galactose mutarotase;transl_table=11;gbkey=CDS;protein_id=YP_002395945.1;Dbxref=Genbank:YP_002395945.1,GeneID:7138652;ID=cds1339;Name=YP_002395945.1 +NC_011744 S-MART CDS 1524161 1533348 . - . product=Transcriptional regulator;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395952.1;Dbxref=Genbank:YP_002395952.1,GeneID:7138659;ID=cds1346;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0 +NC_011744 S-MART exon 1524161 1526617 . - . ID=cds1346-exon1;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon1;Parent=cds1346 +NC_011744 S-MART exon 1526669 1530020 . - . ID=cds1346-exon2;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon2;Parent=cds1346 +NC_011744 S-MART exon 1530022 1531008 . - . ID=cds1346-exon3;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon3;Parent=cds1346 +NC_011744 S-MART exon 1531075 1532322 . - . ID=cds1346-exon4;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon4;Parent=cds1346 +NC_011744 S-MART exon 1532341 1533348 . - . ID=cds1346-exon5;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon5;Parent=cds1346 +NC_011744 S-MART CDS 1533954 1535294 . - . product=maltoporin ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395953.1;Dbxref=Genbank:YP_002395953.1,GeneID:7138660;ID=cds1347;Name=YP_002395953.1 +NC_011744 S-MART CDS 1535471 1535671 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395954.1;Dbxref=Genbank:YP_002395954.1,GeneID:7138661;ID=cds1348;Name=YP_002395954.1 +NC_011744 S-MART CDS 1535668 1538657 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395956.1;Dbxref=Genbank:YP_002395956.1,GeneID:7138663;ID=cds1350;Name=YP_002395956.1--YP_002395955.1 +NC_011744 S-MART exon 1535668 1537728 . - . ID=cds1350-exon1;Name=YP_002395956.1--YP_002395955.1-exon1;Parent=cds1350 +NC_011744 S-MART exon 1537740 1538657 . - . ID=cds1350-exon2;Name=YP_002395956.1--YP_002395955.1-exon2;Parent=cds1350 +NC_011744 S-MART CDS 1538905 1540599 . + . product=L-lactate permease;transl_table=11;gbkey=CDS;protein_id=YP_002395957.1;Dbxref=Genbank:YP_002395957.1,GeneID:7138664;ID=cds1351;Name=YP_002395957.1 +NC_011744 S-MART CDS 1540898 1542046 . + . product=L-lactate dehydrogenase;transl_table=11;Note=flavin mononucleotide-dependent dehydrogenase%3B functions in aerobic respiration and also has a role in anaerobic nitrate respiration;gbkey=CDS;protein_id=YP_002395958.1;Dbxref=Genbank:YP_002395958.1,GeneID:7138665;ID=cds1352;Name=YP_002395958.1 +NC_011744 S-MART CDS 1542475 1545714 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395960.1;Dbxref=Genbank:YP_002395960.1,GeneID:7138667;ID=cds1354;Name=YP_002395960.1--YP_002395959.1 +NC_011744 S-MART exon 1542475 1545330 . + . ID=cds1354-exon1;Name=YP_002395960.1--YP_002395959.1-exon1;Parent=cds1354 +NC_011744 S-MART exon 1545433 1545714 . + . ID=cds1354-exon2;Name=YP_002395960.1--YP_002395959.1-exon2;Parent=cds1354 +NC_011744 S-MART CDS 1545470 1546605 . - . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395962.1;Dbxref=Genbank:YP_002395962.1,GeneID:7138669;ID=cds1356;Name=YP_002395962.1--YP_002395961.1 +NC_011744 S-MART exon 1545470 1545712 . - . ID=cds1356-exon1;Name=YP_002395962.1--YP_002395961.1-exon1;Parent=cds1356 +NC_011744 S-MART exon 1545736 1546605 . - . ID=cds1356-exon2;Name=YP_002395962.1--YP_002395961.1-exon2;Parent=cds1356 +NC_011744 S-MART CDS 1546721 1547869 . + . product=Transcriptional regulatory protein;transl_table=11;gbkey=CDS;protein_id=YP_002395963.1;Dbxref=Genbank:YP_002395963.1,GeneID:7138670;ID=cds1357;Name=YP_002395963.1 +NC_011744 S-MART CDS 1548184 1549173 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395964.1;Dbxref=Genbank:YP_002395964.1,GeneID:7138671;ID=cds1358;Name=YP_002395964.1 +NC_011744 S-MART CDS 1549641 1550528 . + . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395966.1;Dbxref=Genbank:YP_002395966.1,GeneID:7138673;ID=cds1360;Name=YP_002395966.1--YP_002395965.1 +NC_011744 S-MART exon 1549641 1549898 . + . ID=cds1360-exon1;Name=YP_002395966.1--YP_002395965.1-exon1;Parent=cds1360 +NC_011744 S-MART exon 1550043 1550528 . + . ID=cds1360-exon2;Name=YP_002395966.1--YP_002395965.1-exon2;Parent=cds1360 +NC_011744 S-MART CDS 1550545 1553912 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395968.1;Dbxref=Genbank:YP_002395968.1,GeneID:7138675;ID=cds1362;Name=YP_002395968.1--YP_002395967.1 +NC_011744 S-MART exon 1550545 1553463 . - . ID=cds1362-exon1;Name=YP_002395968.1--YP_002395967.1-exon1;Parent=cds1362 +NC_011744 S-MART exon 1553574 1553912 . - . ID=cds1362-exon2;Name=YP_002395968.1--YP_002395967.1-exon2;Parent=cds1362 +NC_011744 S-MART CDS 1554214 1555437 . + . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395969.1;Dbxref=Genbank:YP_002395969.1,GeneID:7138676;ID=cds1363;Name=YP_002395969.1 +NC_011744 S-MART CDS 1555434 1555766 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395970.1;Dbxref=Genbank:YP_002395970.1,GeneID:7138677;ID=cds1364;Name=YP_002395970.1 +NC_011744 S-MART CDS 1555874 1556746 . + . product=pirin;transl_table=11;gbkey=CDS;protein_id=YP_002395971.1;Dbxref=Genbank:YP_002395971.1,GeneID:7138678;ID=cds1365;Name=YP_002395971.1 +NC_011744 S-MART CDS 1556978 1557259 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395972.1;Dbxref=Genbank:YP_002395972.1,GeneID:7138679;ID=cds1366;Name=YP_002395972.1 +NC_011744 S-MART CDS 1557643 1558107 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395973.1;Dbxref=Genbank:YP_002395973.1,GeneID:7138680;ID=cds1367;Name=YP_002395973.1 +NC_011744 S-MART CDS 1558509 1561049 . + . product=chitinase;transl_table=11;gbkey=CDS;protein_id=YP_002395974.1;Dbxref=Genbank:YP_002395974.1,GeneID:7138681;ID=cds1368;Name=YP_002395974.1 +NC_011744 S-MART CDS 1561183 1562055 . - . product=hydrolase or acyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395975.1;Dbxref=Genbank:YP_002395975.1,GeneID:7138682;ID=cds1369;Name=YP_002395975.1 +NC_011744 S-MART CDS 1562226 1562348 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395976.1;Dbxref=Genbank:YP_002395976.1,GeneID:7138683;ID=cds1370;Name=YP_002395976.1 +NC_011744 S-MART CDS 1562271 1562864 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395977.1;Dbxref=Genbank:YP_002395977.1,GeneID:7138684;ID=cds1371;Name=YP_002395977.1 +NC_011744 S-MART CDS 1563025 1565145 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395979.1;Dbxref=Genbank:YP_002395979.1,GeneID:7138686;ID=cds1373;Name=YP_002395979.1--YP_002395978.1 +NC_011744 S-MART exon 1563025 1563981 . + . ID=cds1373-exon1;Name=YP_002395979.1--YP_002395978.1-exon1;Parent=cds1373 +NC_011744 S-MART exon 1564105 1565145 . + . ID=cds1373-exon2;Name=YP_002395979.1--YP_002395978.1-exon2;Parent=cds1373 +NC_011744 S-MART CDS 1565304 1566143 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395980.1;Dbxref=Genbank:YP_002395980.1,GeneID:7138687;ID=cds1374;Name=YP_002395980.1 +NC_011744 S-MART CDS 1566254 1566730 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395981.1;Dbxref=Genbank:YP_002395981.1,GeneID:7138688;ID=cds1375;Name=YP_002395981.1 +NC_011744 S-MART CDS 1566976 1567611 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395982.1;Dbxref=Genbank:YP_002395982.1,GeneID:7138689;ID=cds1376;Name=YP_002395982.1 +NC_011744 S-MART CDS 1567670 1568595 . - . product=glutathione S-transferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395984.1;Dbxref=Genbank:YP_002395984.1,GeneID:7138691;ID=cds1378;Name=YP_002395984.1--YP_002395983.1 +NC_011744 S-MART exon 1567670 1568200 . - . ID=cds1378-exon1;Name=YP_002395984.1--YP_002395983.1-exon1;Parent=cds1378 +NC_011744 S-MART exon 1568209 1568595 . - . ID=cds1378-exon2;Name=YP_002395984.1--YP_002395983.1-exon2;Parent=cds1378 +NC_011744 S-MART ncRNA 1568849 1569184 . + . ncrna_class=other;product=CsrB;Note=regulatory RNA bound by CsrA;gbkey=ncRNA;Dbxref=GeneID:7138692;ID=rna27;Name=rna27 +NC_011744 S-MART CDS 1569243 1570447 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395986.1;Dbxref=Genbank:YP_002395986.1,GeneID:7138693;ID=cds1380;Name=YP_002395986.1--YP_002395985.1 +NC_011744 S-MART CDS 1570873 1572312 . + . product=Na%2B%2FH%2B antiporter NhaD;transl_table=11;gbkey=CDS;protein_id=YP_002395987.1;Dbxref=Genbank:YP_002395987.1,GeneID:7138694;ID=cds1381;Name=YP_002395987.1 +NC_011744 S-MART CDS 1572314 1572697 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395988.1;Dbxref=Genbank:YP_002395988.1,GeneID:7138695;ID=cds1382;Name=YP_002395988.1 +NC_011744 S-MART CDS 1572896 1574837 . - . product=3-methyladenine DNA glycosylase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395990.1;Dbxref=Genbank:YP_002395990.1,GeneID:7138697;ID=cds1384;Name=YP_002395990.1--YP_002395989.1 +NC_011744 S-MART exon 1572896 1573378 . - . ID=cds1384-exon1;Name=YP_002395990.1--YP_002395989.1-exon1;Parent=cds1384 +NC_011744 S-MART exon 1573461 1574837 . - . ID=cds1384-exon2;Name=YP_002395990.1--YP_002395989.1-exon2;Parent=cds1384 +NC_011744 S-MART CDS 1575074 1575277 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395991.1;Dbxref=Genbank:YP_002395991.1,GeneID:7138698;ID=cds1385;Name=YP_002395991.1 +NC_011744 S-MART CDS 1575488 1576381 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395992.1;Dbxref=Genbank:YP_002395992.1,GeneID:7138699;ID=cds1386;Name=YP_002395992.1 +NC_011744 S-MART CDS 1576535 1576888 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395993.1;Dbxref=Genbank:YP_002395993.1,GeneID:7138700;ID=cds1387;Name=YP_002395993.1 +NC_011744 S-MART CDS 1577357 1578157 . + . product=glucosamine-6-phosphate deaminase;transl_table=11;Note=catalyzes the reversible formation of fructose 6-phosphate from glucosamine 6-phosphate;gbkey=CDS;protein_id=YP_002395994.1;Dbxref=Genbank:YP_002395994.1,GeneID:7138701;ID=cds1388;Name=YP_002395994.1 +NC_011744 S-MART CDS 1578534 1579400 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395995.1;Dbxref=Genbank:YP_002395995.1,GeneID:7138702;ID=cds1389;Name=YP_002395995.1 +NC_011744 S-MART CDS 1579724 1580618 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395997.1;Dbxref=Genbank:YP_002395997.1,GeneID:7138704;ID=cds1391;Name=YP_002395997.1--YP_002395996.1 +NC_011744 S-MART exon 1579724 1580380 . + . ID=cds1391-exon1;Name=YP_002395997.1--YP_002395996.1-exon1;Parent=cds1391 +NC_011744 S-MART exon 1580451 1580618 . + . ID=cds1391-exon2;Name=YP_002395997.1--YP_002395996.1-exon2;Parent=cds1391 +NC_011744 S-MART CDS 1580865 1583707 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396000.1;Dbxref=Genbank:YP_002396000.1,GeneID:7138707;ID=cds1394;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1 +NC_011744 S-MART exon 1580865 1582370 . + . ID=cds1394-exon1;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1-exon1;Parent=cds1394 +NC_011744 S-MART exon 1582372 1583541 . + . ID=cds1394-exon2;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1-exon2;Parent=cds1394 +NC_011744 S-MART exon 1583576 1583707 . + . ID=cds1394-exon3;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1-exon3;Parent=cds1394 +NC_011744 S-MART CDS 1583744 1584970 . - . product=Sodium%2Fglutamate symporter;transl_table=11;gbkey=CDS;protein_id=YP_002396001.1;Dbxref=Genbank:YP_002396001.1,GeneID:7138708;ID=cds1395;Name=YP_002396001.1 +NC_011744 S-MART CDS 1585287 1585643 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396002.1;Dbxref=Genbank:YP_002396002.1,GeneID:7138709;ID=cds1396;Name=YP_002396002.1 +NC_011744 S-MART CDS 1585831 1589052 . - . product=O-antigen ligase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396004.1;Dbxref=Genbank:YP_002396004.1,GeneID:7138711;ID=cds1398;Name=YP_002396004.1--YP_002396003.1 +NC_011744 S-MART exon 1585831 1587795 . - . ID=cds1398-exon1;Name=YP_002396004.1--YP_002396003.1-exon1;Parent=cds1398 +NC_011744 S-MART exon 1587874 1589052 . - . ID=cds1398-exon2;Name=YP_002396004.1--YP_002396003.1-exon2;Parent=cds1398 +NC_011744 S-MART CDS 1589312 1589704 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396005.1;Dbxref=Genbank:YP_002396005.1,GeneID:7138712;ID=cds1399;Name=YP_002396005.1 +NC_011744 S-MART CDS 1589995 1600872 . + . product=hypothetical protein;nbElements=13.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396018.1;Dbxref=Genbank:YP_002396018.1,GeneID:7138725;ID=cds1412;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0 +NC_011744 S-MART exon 1589995 1590615 . + . ID=cds1412-exon1;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon1;Parent=cds1412 +NC_011744 S-MART exon 1590725 1592054 . + . ID=cds1412-exon2;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon2;Parent=cds1412 +NC_011744 S-MART exon 1592199 1594603 . + . ID=cds1412-exon3;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon3;Parent=cds1412 +NC_011744 S-MART exon 1594618 1595780 . + . ID=cds1412-exon4;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon4;Parent=cds1412 +NC_011744 S-MART exon 1595783 1597857 . + . ID=cds1412-exon5;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon5;Parent=cds1412 +NC_011744 S-MART exon 1597963 1599742 . + . ID=cds1412-exon6;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon6;Parent=cds1412 +NC_011744 S-MART exon 1599746 1600872 . + . ID=cds1412-exon7;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon7;Parent=cds1412 +NC_011744 S-MART CDS 1600869 1601141 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396019.1;Dbxref=Genbank:YP_002396019.1,GeneID:7138726;ID=cds1413;Name=YP_002396019.1 +NC_011744 S-MART CDS 1601203 1601466 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396020.1;Dbxref=Genbank:YP_002396020.1,GeneID:7138727;ID=cds1414;Name=YP_002396020.1 +NC_011744 S-MART CDS 1601705 1602732 . + . product=RNA-binding proteins;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396022.1;Dbxref=Genbank:YP_002396022.1,GeneID:7138729;ID=cds1416;Name=YP_002396022.1--YP_002396021.1 +NC_011744 S-MART exon 1601705 1602379 . + . ID=cds1416-exon1;Name=YP_002396022.1--YP_002396021.1-exon1;Parent=cds1416 +NC_011744 S-MART exon 1602493 1602732 . + . ID=cds1416-exon2;Name=YP_002396022.1--YP_002396021.1-exon2;Parent=cds1416 +NC_011744 S-MART CDS 1602866 1603210 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396023.1;Dbxref=Genbank:YP_002396023.1,GeneID:7138730;ID=cds1417;Name=YP_002396023.1 +NC_011744 S-MART CDS 1603005 1603073 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396024.1;Dbxref=Genbank:YP_002396024.1,GeneID:7138731;ID=cds1418;Name=YP_002396024.1 +NC_011744 S-MART CDS 1603433 1605788 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396028.1;Dbxref=Genbank:YP_002396028.1,GeneID:7138735;ID=cds1422;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1 +NC_011744 S-MART exon 1603433 1604764 . - . ID=cds1422-exon1;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon1;Parent=cds1422 +NC_011744 S-MART exon 1604788 1605255 . - . ID=cds1422-exon2;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon2;Parent=cds1422 +NC_011744 S-MART exon 1605285 1605701 . - . ID=cds1422-exon3;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon3;Parent=cds1422 +NC_011744 S-MART exon 1605711 1605788 . - . ID=cds1422-exon4;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon4;Parent=cds1422 +NC_011744 S-MART CDS 1605920 1607398 . + . product=PTS permease for N-acetylglucosamine and glucose;transl_table=11;gbkey=CDS;protein_id=YP_002396029.1;Dbxref=Genbank:YP_002396029.1,GeneID:7138736;ID=cds1423;Name=YP_002396029.1 +NC_011744 S-MART CDS 1607784 1608212 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396030.1;Dbxref=Genbank:YP_002396030.1,GeneID:7138737;ID=cds1424;Name=YP_002396030.1 +NC_011744 S-MART CDS 1608380 1608862 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396032.1;Dbxref=Genbank:YP_002396032.1,GeneID:7138739;ID=cds1426;Name=YP_002396032.1--YP_002396031.1 +NC_011744 S-MART CDS 1609169 1611113 . - . product=DNA-binding response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396034.1;Dbxref=Genbank:YP_002396034.1,GeneID:7138741;ID=cds1428;Name=YP_002396034.1--YP_002396033.1 +NC_011744 S-MART CDS 1611320 1612255 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396035.1;Dbxref=Genbank:YP_002396035.1,GeneID:7138742;ID=cds1429;Name=YP_002396035.1 +NC_011744 S-MART CDS 1612372 1615488 . + . product=NADH:flavin oxidoreductase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396038.1;Dbxref=Genbank:YP_002396038.1,GeneID:7138745;ID=cds1432;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1 +NC_011744 S-MART exon 1612372 1613055 . + . ID=cds1432-exon1;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1-exon1;Parent=cds1432 +NC_011744 S-MART exon 1613139 1614347 . + . ID=cds1432-exon2;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1-exon2;Parent=cds1432 +NC_011744 S-MART exon 1614400 1615488 . + . ID=cds1432-exon3;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1-exon3;Parent=cds1432 +NC_011744 S-MART CDS 1615785 1616651 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396039.1;Dbxref=Genbank:YP_002396039.1,GeneID:7138746;ID=cds1433;Name=YP_002396039.1 +NC_011744 S-MART CDS 1616884 1619609 . - . product=Protein export;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396041.1;Dbxref=Genbank:YP_002396041.1,GeneID:7138748;ID=cds1435;Name=YP_002396041.1--YP_002396040.1 +NC_011744 S-MART exon 1616884 1617807 . - . ID=cds1435-exon1;Name=YP_002396041.1--YP_002396040.1-exon1;Parent=cds1435 +NC_011744 S-MART exon 1617810 1619609 . - . ID=cds1435-exon2;Name=YP_002396041.1--YP_002396040.1-exon2;Parent=cds1435 +NC_011744 S-MART CDS 1619882 1620406 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396042.1;Dbxref=Genbank:YP_002396042.1,GeneID:7138749;ID=cds1436;Name=YP_002396042.1 +NC_011744 S-MART CDS 1620650 1623430 . - . product=Zn-dependent protease;transl_table=11;gbkey=CDS;protein_id=YP_002396043.1;Dbxref=Genbank:YP_002396043.1,GeneID:7138750;ID=cds1437;Name=YP_002396043.1 +NC_011744 S-MART CDS 1623757 1626519 . - . product=zinc protease;transl_table=11;gbkey=CDS;protein_id=YP_002396044.1;Dbxref=Genbank:YP_002396044.1,GeneID:7138751;ID=cds1438;Name=YP_002396044.1 +NC_011744 S-MART CDS 1626732 1633492 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396051.1;Dbxref=Genbank:YP_002396051.1,GeneID:7138758;ID=cds1445;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0 +NC_011744 S-MART exon 1626732 1627577 . - . ID=cds1445-exon1;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon1;Parent=cds1445 +NC_011744 S-MART exon 1627650 1629985 . - . ID=cds1445-exon2;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon2;Parent=cds1445 +NC_011744 S-MART exon 1629986 1632760 . - . ID=cds1445-exon3;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon3;Parent=cds1445 +NC_011744 S-MART exon 1632812 1633492 . - . ID=cds1445-exon4;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon4;Parent=cds1445 +NC_011744 S-MART CDS 1633846 1634775 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396052.1;Dbxref=Genbank:YP_002396052.1,GeneID:7138759;ID=cds1446;Name=YP_002396052.1 +NC_011744 S-MART CDS 1636980 1637186 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396054.1;Dbxref=Genbank:YP_002396054.1,GeneID:7138761;ID=cds1448;Name=YP_002396054.1 +NC_011744 S-MART CDS 1634996 1637844 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396055.1;Dbxref=Genbank:YP_002396055.1,GeneID:7138762;ID=cds1449;Name=YP_002396055.1--YP_002396053.1 +NC_011744 S-MART exon 1634996 1636978 . + . ID=cds1449-exon1;Name=YP_002396055.1--YP_002396053.1-exon1;Parent=cds1449 +NC_011744 S-MART exon 1637059 1637844 . + . ID=cds1449-exon2;Name=YP_002396055.1--YP_002396053.1-exon2;Parent=cds1449 +NC_011744 S-MART CDS 1637949 1638386 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396056.1;Dbxref=Genbank:YP_002396056.1,GeneID:7138763;ID=cds1450;Name=YP_002396056.1 +NC_011744 S-MART CDS 1638514 1639428 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396057.1;Dbxref=Genbank:YP_002396057.1,GeneID:7138764;ID=cds1451;Name=YP_002396057.1 +NC_011744 S-MART CDS 1639627 1641237 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002396058.1;Dbxref=Genbank:YP_002396058.1,GeneID:7138765;ID=cds1452;Name=YP_002396058.1 +NC_011744 S-MART CDS 1641680 1643497 . - . product=Transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396060.1;Dbxref=Genbank:YP_002396060.1,GeneID:7138767;ID=cds1454;Name=YP_002396060.1--YP_002396059.1 +NC_011744 S-MART exon 1641680 1642555 . - . ID=cds1454-exon1;Name=YP_002396060.1--YP_002396059.1-exon1;Parent=cds1454 +NC_011744 S-MART exon 1642568 1643497 . - . ID=cds1454-exon2;Name=YP_002396060.1--YP_002396059.1-exon2;Parent=cds1454 +NC_011744 S-MART CDS 1643555 1643806 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396061.1;Dbxref=Genbank:YP_002396061.1,GeneID:7138768;ID=cds1455;Name=YP_002396061.1 +NC_011744 S-MART CDS 1643986 1645065 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396063.1;Dbxref=Genbank:YP_002396063.1,GeneID:7138770;ID=cds1457;Name=YP_002396063.1--YP_002396062.1 +NC_011744 S-MART exon 1643986 1644702 . - . ID=cds1457-exon1;Name=YP_002396063.1--YP_002396062.1-exon1;Parent=cds1457 +NC_011744 S-MART exon 1644799 1645065 . - . ID=cds1457-exon2;Name=YP_002396063.1--YP_002396062.1-exon2;Parent=cds1457 +NC_011744 S-MART CDS 1645252 1646514 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396064.1;Dbxref=Genbank:YP_002396064.1,GeneID:7138771;ID=cds1458;Name=YP_002396064.1 +NC_011744 S-MART CDS 1646662 1649029 . - . product=phenylalanine 4-monooxygenase;nbElements=3.000000;transl_table=11;Note=phenylalanine 4-hydroxylase%3B phenylalanine 4-hydroxylase%3B catalyzes the formation of 4a-hydroxytetrahydrobiopterin and tyrosine from phenylalanine and tetrahydrobiopterin;gbkey=CDS;protein_id=YP_002396067.1;Dbxref=Genbank:YP_002396067.1,GeneID:7138774;ID=cds1461;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1 +NC_011744 S-MART exon 1646662 1647774 . - . ID=cds1461-exon1;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1-exon1;Parent=cds1461 +NC_011744 S-MART exon 1647907 1649029 . - . ID=cds1461-exon2;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1-exon2;Parent=cds1461 +NC_011744 S-MART CDS 1649229 1651280 . + . product=acetoacetyl-CoA synthetase;transl_table=11;Note=AcsA%3B in Sinorhizobium meliloti this enzyme is required for acetoacetate activation%3B similar to acetyl-CoA synthase;gbkey=CDS;protein_id=YP_002396068.1;Dbxref=Genbank:YP_002396068.1,GeneID:7138775;ID=cds1462;Name=YP_002396068.1 +NC_011744 S-MART CDS 1651672 1657718 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396074.1;Dbxref=Genbank:YP_002396074.1,GeneID:7138781;ID=cds1468;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1 +NC_011744 S-MART exon 1651672 1652136 . + . ID=cds1468-exon1;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon1;Parent=cds1468 +NC_011744 S-MART exon 1652164 1654986 . + . ID=cds1468-exon2;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon2;Parent=cds1468 +NC_011744 S-MART exon 1654998 1656358 . + . ID=cds1468-exon3;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon3;Parent=cds1468 +NC_011744 S-MART exon 1656418 1657038 . + . ID=cds1468-exon4;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon4;Parent=cds1468 +NC_011744 S-MART exon 1657098 1657718 . + . ID=cds1468-exon5;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon5;Parent=cds1468 +NC_011744 S-MART CDS 1658632 1659561 . + . product=carbamate kinase;transl_table=11;Note=reversible synthesis of carbamate and ATP from carbamoyl phosphate and ADP;gbkey=CDS;protein_id=YP_002396075.1;Dbxref=Genbank:YP_002396075.1,GeneID:7138782;ID=cds1469;Name=YP_002396075.1 +NC_011744 S-MART CDS 1659797 1663769 . - . product=4-hydroxyphenylpyruvate dioxygenase;nbElements=4.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 8112844%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002396079.1;Dbxref=Genbank:YP_002396079.1,GeneID:7138786;ID=cds1473;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1 +NC_011744 S-MART exon 1659797 1660501 . - . ID=cds1473-exon1;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1-exon1;Parent=cds1473 +NC_011744 S-MART exon 1660523 1661560 . - . ID=cds1473-exon2;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1-exon2;Parent=cds1473 +NC_011744 S-MART exon 1661573 1663769 . - . ID=cds1473-exon3;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1-exon3;Parent=cds1473 +NC_011744 S-MART CDS 1663853 1664035 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396080.1;Dbxref=Genbank:YP_002396080.1,GeneID:7138787;ID=cds1474;Name=YP_002396080.1 +NC_011744 S-MART CDS 1664130 1664789 . - . product=phosphoserine phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002396081.1;Dbxref=Genbank:YP_002396081.1,GeneID:7138788;ID=cds1475;Name=YP_002396081.1 +NC_011744 S-MART CDS 1665142 1667568 . - . product=two-component sensor;transl_table=11;gbkey=CDS;protein_id=YP_002396082.1;Dbxref=Genbank:YP_002396082.1,GeneID:7138789;ID=cds1476;Name=YP_002396082.1 +NC_011744 S-MART CDS 1667657 1668415 . + . product=amino acid ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002396083.1;Dbxref=Genbank:YP_002396083.1,GeneID:7138790;ID=cds1477;Name=YP_002396083.1 +NC_011744 S-MART CDS 1668625 1669185 . - . product=GTP cyclohydrolase II;transl_table=11;gbkey=CDS;protein_id=YP_002396084.1;Dbxref=Genbank:YP_002396084.1,GeneID:7138791;ID=cds1478;Name=YP_002396084.1 +NC_011744 S-MART CDS 1669376 1669699 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396085.1;Dbxref=Genbank:YP_002396085.1,GeneID:7138792;ID=cds1479;Name=YP_002396085.1 +NC_011744 S-MART CDS 1669923 1672240 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396088.1;Dbxref=Genbank:YP_002396088.1,GeneID:7138795;ID=cds1482;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1 +NC_011744 S-MART exon 1669923 1670756 . + . ID=cds1482-exon1;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1-exon1;Parent=cds1482 +NC_011744 S-MART exon 1670766 1672240 . + . ID=cds1482-exon2;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1-exon2;Parent=cds1482 +NC_011744 S-MART CDS 1672182 1672271 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396089.1;Dbxref=Genbank:YP_002396089.1,GeneID:7138796;ID=cds1483;Name=YP_002396089.1 +NC_011744 S-MART CDS 1672683 1674662 . - . product=RctB protein;transl_table=11;gbkey=CDS;protein_id=YP_002396090.1;Dbxref=Genbank:YP_002396090.1,GeneID:7138797;ID=cds1484;Name=YP_002396090.1 diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/listGff_Results.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/listGff_Results.txt Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,5 @@ + 871 CDS + 699 exon + 6 ncRNA + 2 rRNA + 3 tRNA diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/splitTranscript_Reference.gff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/splitTranscript_Reference.gff Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,1581 @@ +NC_011744 S-MART CDS 409 4831 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394608.1;Dbxref=Genbank:YP_002394608.1,GeneID:7137318;ID=cds2;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1 +NC_011744 S-MART exon 409 1626 . + . ID=cds2-exon1;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1-exon1;Parent=cds2 +NC_011744 S-MART exon 1632 2606 . + . ID=cds2-exon2;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1-exon2;Parent=cds2 +NC_011744 S-MART exon 2699 4831 . + . ID=cds2-exon3;Name=YP_002394608.1--YP_002394607.1--YP_002394606.1-exon3;Parent=cds2 +NC_011744 S-MART CDS 5362 7032 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394609.1;Dbxref=Genbank:YP_002394609.1,GeneID:7137319;ID=cds3;Name=YP_002394609.1 +NC_011744 S-MART CDS 7180 16787 . - . product=Signal transduction histidine kinase regulating C4-dicarboxylate transport system;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394615.1;Dbxref=Genbank:YP_002394615.1,GeneID:7137325;ID=cds9;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1 +NC_011744 S-MART exon 7180 9294 . - . ID=cds9-exon1;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon1;Parent=cds9 +NC_011744 S-MART exon 9312 11222 . - . ID=cds9-exon2;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon2;Parent=cds9 +NC_011744 S-MART exon 11228 11896 . - . ID=cds9-exon3;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon3;Parent=cds9 +NC_011744 S-MART exon 11956 13347 . - . ID=cds9-exon4;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon4;Parent=cds9 +NC_011744 S-MART exon 13460 14773 . - . ID=cds9-exon5;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon5;Parent=cds9 +NC_011744 S-MART exon 14865 16787 . - . ID=cds9-exon6;Name=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1-exon6;Parent=cds9 +NC_011744 S-MART CDS 16954 17589 . + . product=pyridoxamine 5%27-phosphate oxidase;transl_table=11;Note=catalyzes the formation of pyridoxal 5%27-phosphate from pyridoxamine 5%27-phosphate;gbkey=CDS;protein_id=YP_002394616.1;Dbxref=Genbank:YP_002394616.1,GeneID:7137326;ID=cds10;Name=YP_002394616.1 +NC_011744 S-MART CDS 17694 18476 . - . product=LuxR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394617.1;Dbxref=Genbank:YP_002394617.1,GeneID:7137327;ID=cds11;Name=YP_002394617.1 +NC_011744 S-MART CDS 18853 20682 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394618.1;Dbxref=Genbank:YP_002394618.1,GeneID:7137328;ID=cds12;Name=YP_002394618.1 +NC_011744 S-MART CDS 20840 21961 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394619.1;Dbxref=Genbank:YP_002394619.1,GeneID:7137329;ID=cds13;Name=YP_002394619.1 +NC_011744 S-MART CDS 22321 22524 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394620.1;Dbxref=Genbank:YP_002394620.1,GeneID:7137330;ID=cds14;Name=YP_002394620.1 +NC_011744 S-MART CDS 22448 23272 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394621.1;Dbxref=Genbank:YP_002394621.1,GeneID:7137331;ID=cds15;Name=YP_002394621.1 +NC_011744 S-MART CDS 23454 27325 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394623.1;Dbxref=Genbank:YP_002394623.1,GeneID:7137333;ID=cds17;Name=YP_002394623.1--YP_002394622.1 +NC_011744 S-MART exon 23454 26609 . + . ID=cds17-exon1;Name=YP_002394623.1--YP_002394622.1-exon1;Parent=cds17 +NC_011744 S-MART exon 26621 27325 . + . ID=cds17-exon2;Name=YP_002394623.1--YP_002394622.1-exon2;Parent=cds17 +NC_011744 S-MART CDS 27509 29002 . + . product=Sodium%2Fproline symporter;transl_table=11;gbkey=CDS;protein_id=YP_002394624.1;Dbxref=Genbank:YP_002394624.1,GeneID:7137334;ID=cds18;Name=YP_002394624.1 +NC_011744 S-MART CDS 29390 29614 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394625.1;Dbxref=Genbank:YP_002394625.1,GeneID:7137335;ID=cds19;Name=YP_002394625.1 +NC_011744 S-MART CDS 29677 29847 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394626.1;Dbxref=Genbank:YP_002394626.1,GeneID:7137336;ID=cds20;Name=YP_002394626.1 +NC_011744 S-MART CDS 30127 30615 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394627.1;Dbxref=Genbank:YP_002394627.1,GeneID:7137337;ID=cds21;Name=YP_002394627.1 +NC_011744 S-MART CDS 30726 31430 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394628.1;Dbxref=Genbank:YP_002394628.1,GeneID:7137338;ID=cds22;Name=YP_002394628.1 +NC_011744 S-MART CDS 31728 33578 . - . product=ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002394629.1;Dbxref=Genbank:YP_002394629.1,GeneID:7137339;ID=cds23;Name=YP_002394629.1 +NC_011744 S-MART CDS 34145 35119 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394630.1;Dbxref=Genbank:YP_002394630.1,GeneID:7137340;ID=cds24;Name=YP_002394630.1 +NC_011744 S-MART CDS 35271 36858 . - . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394632.1;Dbxref=Genbank:YP_002394632.1,GeneID:7137342;ID=cds26;Name=YP_002394632.1--YP_002394631.1 +NC_011744 S-MART exon 35271 35903 . - . ID=cds26-exon1;Name=YP_002394632.1--YP_002394631.1-exon1;Parent=cds26 +NC_011744 S-MART exon 36019 36858 . - . ID=cds26-exon2;Name=YP_002394632.1--YP_002394631.1-exon2;Parent=cds26 +NC_011744 S-MART CDS 37057 37881 . - . product=transferase;transl_table=11;gbkey=CDS;protein_id=YP_002394633.1;Dbxref=Genbank:YP_002394633.1,GeneID:7137343;ID=cds27;Name=YP_002394633.1 +NC_011744 S-MART CDS 38102 39724 . - . product=membrane-associated%2C metal-dependent hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394634.1;Dbxref=Genbank:YP_002394634.1,GeneID:7137344;ID=cds28;Name=YP_002394634.1 +NC_011744 S-MART CDS 39954 40544 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394635.1;Dbxref=Genbank:YP_002394635.1,GeneID:7137345;ID=cds29;Name=YP_002394635.1 +NC_011744 S-MART CDS 40887 41426 . + . product=amidase;transl_table=11;gbkey=CDS;protein_id=YP_002394636.1;Dbxref=Genbank:YP_002394636.1,GeneID:7137346;ID=cds30;Name=YP_002394636.1 +NC_011744 S-MART CDS 41423 43678 . - . product=amino acid aldolase or racemase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394638.1;Dbxref=Genbank:YP_002394638.1,GeneID:7137348;ID=cds32;Name=YP_002394638.1--YP_002394637.1 +NC_011744 S-MART exon 41423 42286 . - . ID=cds32-exon1;Name=YP_002394638.1--YP_002394637.1-exon1;Parent=cds32 +NC_011744 S-MART exon 42404 43678 . - . ID=cds32-exon2;Name=YP_002394638.1--YP_002394637.1-exon2;Parent=cds32 +NC_011744 S-MART CDS 43855 45801 . + . product=translation initiationinhibitor%2C yjgF family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394640.1;Dbxref=Genbank:YP_002394640.1,GeneID:7137350;ID=cds34;Name=YP_002394640.1--YP_002394639.1 +NC_011744 S-MART exon 43855 45288 . + . ID=cds34-exon1;Name=YP_002394640.1--YP_002394639.1-exon1;Parent=cds34 +NC_011744 S-MART exon 45409 45801 . + . ID=cds34-exon2;Name=YP_002394640.1--YP_002394639.1-exon2;Parent=cds34 +NC_011744 S-MART CDS 46007 49254 . + . product=keto-hydroxyglutarate-aldolase%2Fketo-deoxy-phosphogluconate aldolase;nbElements=3.000000;transl_table=11;Note=catalyzes the formation of pyruvate and glyoxylate from 4-hydroxy-2-oxoglutarate%3B or pyruvate and D-glyceraldehyde 3-phosphate from 2-dehydro-3-deoxy-D-glyconate 6-phosphate;gbkey=CDS;protein_id=YP_002394643.1;Dbxref=Genbank:YP_002394643.1,GeneID:7137353;ID=cds37;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1 +NC_011744 S-MART exon 46007 47521 . + . ID=cds37-exon1;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1-exon1;Parent=cds37 +NC_011744 S-MART exon 47652 48593 . + . ID=cds37-exon2;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1-exon2;Parent=cds37 +NC_011744 S-MART exon 48619 49254 . + . ID=cds37-exon3;Name=YP_002394643.1--YP_002394642.1--YP_002394641.1-exon3;Parent=cds37 +NC_011744 S-MART CDS 49412 51862 . + . product=N-acetyl-beta-hexosaminidase;transl_table=11;gbkey=CDS;protein_id=YP_002394644.1;Dbxref=Genbank:YP_002394644.1,GeneID:7137354;ID=cds38;Name=YP_002394644.1 +NC_011744 S-MART CDS 52087 54567 . - . product=DNA-binding response regulator;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394647.1;Dbxref=Genbank:YP_002394647.1,GeneID:7137357;ID=cds41;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1 +NC_011744 S-MART exon 52087 52383 . - . ID=cds41-exon1;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1-exon1;Parent=cds41 +NC_011744 S-MART exon 52507 53826 . - . ID=cds41-exon2;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1-exon2;Parent=cds41 +NC_011744 S-MART exon 53863 54567 . - . ID=cds41-exon3;Name=YP_002394647.1--YP_002394646.1--YP_002394645.1-exon3;Parent=cds41 +NC_011744 S-MART CDS 54927 57177 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394649.1;Dbxref=Genbank:YP_002394649.1,GeneID:7137359;ID=cds43;Name=YP_002394649.1--YP_002394648.1 +NC_011744 S-MART CDS 57403 58506 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394650.1;Dbxref=Genbank:YP_002394650.1,GeneID:7137360;ID=cds44;Name=YP_002394650.1 +NC_011744 S-MART CDS 58866 60065 . + . product=diaminopropionate ammonia-lyase;transl_table=11;Note=catalyzes the formation of pyruvate from 2%2C3-diaminopropionate;gbkey=CDS;protein_id=YP_002394651.1;Dbxref=Genbank:YP_002394651.1,GeneID:7137361;ID=cds45;Name=YP_002394651.1 +NC_011744 S-MART CDS 60250 60756 . - . product=Hypothetical transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394652.1;Dbxref=Genbank:YP_002394652.1,GeneID:7137362;ID=cds46;Name=YP_002394652.1 +NC_011744 S-MART CDS 61052 63159 . + . product=amidohydrolase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394654.1;Dbxref=Genbank:YP_002394654.1,GeneID:7137364;ID=cds48;Name=YP_002394654.1--YP_002394653.1 +NC_011744 S-MART exon 61052 61846 . + . ID=cds48-exon1;Name=YP_002394654.1--YP_002394653.1-exon1;Parent=cds48 +NC_011744 S-MART exon 61948 63159 . + . ID=cds48-exon2;Name=YP_002394654.1--YP_002394653.1-exon2;Parent=cds48 +NC_011744 S-MART CDS 63377 67642 . + . product=Metallopeptidase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394658.1;Dbxref=Genbank:YP_002394658.1,GeneID:7137368;ID=cds52;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1 +NC_011744 S-MART exon 63377 64420 . + . ID=cds52-exon1;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1-exon1;Parent=cds52 +NC_011744 S-MART exon 64541 66423 . + . ID=cds52-exon2;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1-exon2;Parent=cds52 +NC_011744 S-MART exon 66461 67642 . + . ID=cds52-exon3;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1-exon3;Parent=cds52 +NC_011744 S-MART CDS 68078 75324 . + . product=ABC transporter ATP-binding protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394664.1;Dbxref=Genbank:YP_002394664.1,GeneID:7137374;ID=cds58;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1 +NC_011744 S-MART exon 68078 68680 . + . ID=cds58-exon1;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon1;Parent=cds58 +NC_011744 S-MART exon 68797 70257 . + . ID=cds58-exon2;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon2;Parent=cds58 +NC_011744 S-MART exon 70330 72042 . + . ID=cds58-exon3;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon3;Parent=cds58 +NC_011744 S-MART exon 72186 73157 . + . ID=cds58-exon4;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon4;Parent=cds58 +NC_011744 S-MART exon 73265 74107 . + . ID=cds58-exon5;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon5;Parent=cds58 +NC_011744 S-MART exon 74137 75324 . + . ID=cds58-exon6;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1-exon6;Parent=cds58 +NC_011744 S-MART CDS 75688 76170 . + . product=MarR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394665.1;Dbxref=Genbank:YP_002394665.1,GeneID:7137375;ID=cds59;Name=YP_002394665.1 +NC_011744 S-MART CDS 76628 77284 . + . product=quinolone resistance determinant;transl_table=11;gbkey=CDS;protein_id=YP_002394666.1;Dbxref=Genbank:YP_002394666.1,GeneID:7137376;ID=cds60;Name=YP_002394666.1 +NC_011744 S-MART CDS 77461 77685 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394667.1;Dbxref=Genbank:YP_002394667.1,GeneID:7137377;ID=cds61;Name=YP_002394667.1 +NC_011744 S-MART CDS 78060 78320 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394668.1;Dbxref=Genbank:YP_002394668.1,GeneID:7137378;ID=cds62;Name=YP_002394668.1 +NC_011744 S-MART CDS 78790 82528 . + . product=aspartate kinase;nbElements=4.000000;transl_table=11;Note=catalyzes the formation of 4-phospho-L-aspartate from L-aspartate and ATP;gbkey=CDS;protein_id=YP_002394672.1;Dbxref=Genbank:YP_002394672.1,GeneID:7137382;ID=cds66;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1 +NC_011744 S-MART exon 78790 79323 . + . ID=cds66-exon1;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon1;Parent=cds66 +NC_011744 S-MART exon 79359 80624 . + . ID=cds66-exon2;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon2;Parent=cds66 +NC_011744 S-MART exon 80638 81024 . + . ID=cds66-exon3;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon3;Parent=cds66 +NC_011744 S-MART exon 81104 82528 . + . ID=cds66-exon4;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1-exon4;Parent=cds66 +NC_011744 S-MART CDS 82754 84273 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394674.1;Dbxref=Genbank:YP_002394674.1,GeneID:7137384;ID=cds68;Name=YP_002394674.1--YP_002394673.1 +NC_011744 S-MART exon 82754 83377 . + . ID=cds68-exon1;Name=YP_002394674.1--YP_002394673.1-exon1;Parent=cds68 +NC_011744 S-MART exon 83458 84273 . + . ID=cds68-exon2;Name=YP_002394674.1--YP_002394673.1-exon2;Parent=cds68 +NC_011744 S-MART CDS 84373 84948 . - . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394675.1;Dbxref=Genbank:YP_002394675.1,GeneID:7137385;ID=cds69;Name=YP_002394675.1 +NC_011744 S-MART CDS 85279 86277 . - . product=adenosine deaminase;transl_table=11;Note=catalyzes the formation of inosine from adenosine;gbkey=CDS;protein_id=YP_002394676.1;Dbxref=Genbank:YP_002394676.1,GeneID:7137386;ID=cds70;Name=YP_002394676.1 +NC_011744 S-MART CDS 86398 88921 . + . product=Glutathione synthetase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394678.1;Dbxref=Genbank:YP_002394678.1,GeneID:7137388;ID=cds72;Name=YP_002394678.1--YP_002394677.1 +NC_011744 S-MART exon 86398 87333 . + . ID=cds72-exon1;Name=YP_002394678.1--YP_002394677.1-exon1;Parent=cds72 +NC_011744 S-MART exon 87470 88921 . + . ID=cds72-exon2;Name=YP_002394678.1--YP_002394677.1-exon2;Parent=cds72 +NC_011744 S-MART CDS 88922 92825 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394682.1;Dbxref=Genbank:YP_002394682.1,GeneID:7137392;ID=cds76;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1 +NC_011744 S-MART exon 88922 90430 . - . ID=cds76-exon1;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon1;Parent=cds76 +NC_011744 S-MART exon 90441 91505 . - . ID=cds76-exon2;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon2;Parent=cds76 +NC_011744 S-MART exon 91565 92470 . - . ID=cds76-exon3;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon3;Parent=cds76 +NC_011744 S-MART exon 92598 92825 . - . ID=cds76-exon4;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1-exon4;Parent=cds76 +NC_011744 S-MART CDS 92897 93433 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394683.1;Dbxref=Genbank:YP_002394683.1,GeneID:7137393;ID=cds77;Name=YP_002394683.1 +NC_011744 S-MART CDS 93618 93836 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394684.1;Dbxref=Genbank:YP_002394684.1,GeneID:7137394;ID=cds78;Name=YP_002394684.1 +NC_011744 S-MART CDS 93893 94486 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394685.1;Dbxref=Genbank:YP_002394685.1,GeneID:7137395;ID=cds79;Name=YP_002394685.1 +NC_011744 S-MART CDS 94865 96993 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394687.1;Dbxref=Genbank:YP_002394687.1,GeneID:7137397;ID=cds81;Name=YP_002394687.1--YP_002394686.1 +NC_011744 S-MART CDS 97330 98777 . + . product=lipoate-protein ligase A;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394690.1;Dbxref=Genbank:YP_002394690.1,GeneID:7137400;ID=cds84;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1 +NC_011744 S-MART exon 97330 97895 . + . ID=cds84-exon1;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1-exon1;Parent=cds84 +NC_011744 S-MART exon 98040 98777 . + . ID=cds84-exon2;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1-exon2;Parent=cds84 +NC_011744 S-MART CDS 98945 99784 . - . product=oxidoreductase;transl_table=11;gbkey=CDS;protein_id=YP_002394691.1;Dbxref=Genbank:YP_002394691.1,GeneID:7137401;ID=cds85;Name=YP_002394691.1 +NC_011744 S-MART CDS 99962 103402 . - . product=hydrolase%2C metallo-beta-lactamase superfamily;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394694.1;Dbxref=Genbank:YP_002394694.1,GeneID:7137404;ID=cds88;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1 +NC_011744 S-MART exon 99962 101184 . - . ID=cds88-exon1;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1-exon1;Parent=cds88 +NC_011744 S-MART exon 101330 103402 . - . ID=cds88-exon2;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1-exon2;Parent=cds88 +NC_011744 S-MART CDS 103591 104505 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394695.1;Dbxref=Genbank:YP_002394695.1,GeneID:7137405;ID=cds89;Name=YP_002394695.1 +NC_011744 S-MART CDS 104593 105597 . - . product=Transporter%2C drug%2Fmetabolite exporter family;transl_table=11;gbkey=CDS;protein_id=YP_002394696.1;Dbxref=Genbank:YP_002394696.1,GeneID:7137406;ID=cds90;Name=YP_002394696.1 +NC_011744 S-MART CDS 105690 106655 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394698.1;Dbxref=Genbank:YP_002394698.1,GeneID:7137408;ID=cds92;Name=YP_002394698.1--YP_002394697.1 +NC_011744 S-MART exon 105690 106079 . + . ID=cds92-exon1;Name=YP_002394698.1--YP_002394697.1-exon1;Parent=cds92 +NC_011744 S-MART exon 106131 106655 . + . ID=cds92-exon2;Name=YP_002394698.1--YP_002394697.1-exon2;Parent=cds92 +NC_011744 S-MART CDS 106826 109364 . + . product=LacI-family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394700.1;Dbxref=Genbank:YP_002394700.1,GeneID:7137410;ID=cds94;Name=YP_002394700.1--YP_002394699.1 +NC_011744 S-MART exon 106826 108265 . + . ID=cds94-exon1;Name=YP_002394700.1--YP_002394699.1-exon1;Parent=cds94 +NC_011744 S-MART exon 108366 109364 . + . ID=cds94-exon2;Name=YP_002394700.1--YP_002394699.1-exon2;Parent=cds94 +NC_011744 S-MART CDS 109568 110131 . + . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394701.1;Dbxref=Genbank:YP_002394701.1,GeneID:7137411;ID=cds95;Name=YP_002394701.1 +NC_011744 S-MART CDS 110231 111424 . - . product=transmembrane efflux transmembrane protein;transl_table=11;gbkey=CDS;protein_id=YP_002394702.1;Dbxref=Genbank:YP_002394702.1,GeneID:7137412;ID=cds96;Name=YP_002394702.1 +NC_011744 S-MART CDS 111700 112581 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394703.1;Dbxref=Genbank:YP_002394703.1,GeneID:7137413;ID=cds97;Name=YP_002394703.1 +NC_011744 S-MART CDS 112703 113697 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394705.1;Dbxref=Genbank:YP_002394705.1,GeneID:7137415;ID=cds99;Name=YP_002394705.1--YP_002394704.1 +NC_011744 S-MART exon 112703 113062 . - . ID=cds99-exon1;Name=YP_002394705.1--YP_002394704.1-exon1;Parent=cds99 +NC_011744 S-MART exon 113200 113697 . - . ID=cds99-exon2;Name=YP_002394705.1--YP_002394704.1-exon2;Parent=cds99 +NC_011744 S-MART CDS 113921 114712 . - . product=plasmid-related protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type h : extrachromosomal origin;gbkey=CDS;protein_id=YP_002394706.1;Dbxref=Genbank:YP_002394706.1,GeneID:7137416;ID=cds100;Name=YP_002394706.1 +NC_011744 S-MART CDS 114873 115439 . - . product=dihydrofolate reductase;transl_table=11;gbkey=CDS;protein_id=YP_002394707.1;Dbxref=Genbank:YP_002394707.1,GeneID:7137417;ID=cds101;Name=YP_002394707.1 +NC_011744 S-MART CDS 115500 116063 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394708.1;Dbxref=Genbank:YP_002394708.1,GeneID:7137418;ID=cds102;Name=YP_002394708.1 +NC_011744 S-MART CDS 116223 117755 . + . product=phospholipase D;transl_table=11;gbkey=CDS;protein_id=YP_002394709.1;Dbxref=Genbank:YP_002394709.1,GeneID:7137419;ID=cds103;Name=YP_002394709.1 +NC_011744 S-MART CDS 117879 118601 . - . product=nitroreductase A;transl_table=11;Note=NADPH-dependent%3B oxygen-insensitive%3B catalyzes the reduction of nitroaromatic compounds;gbkey=CDS;protein_id=YP_002394710.1;Dbxref=Genbank:YP_002394710.1,GeneID:7137420;ID=cds104;Name=YP_002394710.1 +NC_011744 S-MART CDS 118880 120124 . + . product=NADH oxidase;transl_table=11;gbkey=CDS;protein_id=YP_002394711.1;Dbxref=Genbank:YP_002394711.1,GeneID:7137421;ID=cds105;Name=YP_002394711.1 +NC_011744 S-MART CDS 120342 121256 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394712.1;Dbxref=Genbank:YP_002394712.1,GeneID:7137422;ID=cds106;Name=YP_002394712.1 +NC_011744 S-MART CDS 121363 122403 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394713.1;Dbxref=Genbank:YP_002394713.1,GeneID:7137423;ID=cds107;Name=YP_002394713.1 +NC_011744 S-MART CDS 123070 123306 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394714.1;Dbxref=Genbank:YP_002394714.1,GeneID:7137424;ID=cds108;Name=YP_002394714.1 +NC_011744 S-MART CDS 123588 125222 . - . product=glycerol-3-phosphate dehydrogenase;transl_table=11;Note=in Escherichia coli this homodimeric enzyme is expressed under aerobic conditions%3B anaerobic expression is repressed by the arcAB system%3B converts sn-glycerol-3-phosphate and ubiquinone-8 to dihydroxy acetone phosphate and ubiquinol-8%3B associates with the cytoplasmic membrane;gbkey=CDS;protein_id=YP_002394715.1;Dbxref=Genbank:YP_002394715.1,GeneID:7137425;ID=cds109;Name=YP_002394715.1 +NC_011744 S-MART CDS 125434 126219 . - . product=Transcriptional regulator%2C DeoR family;transl_table=11;gbkey=CDS;protein_id=YP_002394716.1;Dbxref=Genbank:YP_002394716.1,GeneID:7137426;ID=cds110;Name=YP_002394716.1 +NC_011744 S-MART CDS 126512 128949 . - . product=Glycerol uptake facilitator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394718.1;Dbxref=Genbank:YP_002394718.1,GeneID:7137428;ID=cds112;Name=YP_002394718.1--YP_002394717.1 +NC_011744 S-MART exon 126512 128035 . - . ID=cds112-exon1;Name=YP_002394718.1--YP_002394717.1-exon1;Parent=cds112 +NC_011744 S-MART exon 128095 128949 . - . ID=cds112-exon2;Name=YP_002394718.1--YP_002394717.1-exon2;Parent=cds112 +NC_011744 S-MART CDS 129398 129829 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394719.1;Dbxref=Genbank:YP_002394719.1,GeneID:7137429;ID=cds113;Name=YP_002394719.1 +NC_011744 S-MART CDS 129984 130850 . + . product=Hypothetical transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394720.1;Dbxref=Genbank:YP_002394720.1,GeneID:7137430;ID=cds114;Name=YP_002394720.1 +NC_011744 S-MART CDS 130935 132437 . - . product=regulatory protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394722.1;Dbxref=Genbank:YP_002394722.1,GeneID:7137432;ID=cds116;Name=YP_002394722.1--YP_002394721.1 +NC_011744 S-MART exon 130935 131990 . - . ID=cds116-exon1;Name=YP_002394722.1--YP_002394721.1-exon1;Parent=cds116 +NC_011744 S-MART exon 132096 132437 . - . ID=cds116-exon2;Name=YP_002394722.1--YP_002394721.1-exon2;Parent=cds116 +NC_011744 S-MART CDS 132757 133554 . + . product=hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394723.1;Dbxref=Genbank:YP_002394723.1,GeneID:7137433;ID=cds117;Name=YP_002394723.1 +NC_011744 S-MART CDS 133736 135626 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394725.1;Dbxref=Genbank:YP_002394725.1,GeneID:7137435;ID=cds119;Name=YP_002394725.1--YP_002394724.1 +NC_011744 S-MART exon 133736 134383 . + . ID=cds119-exon1;Name=YP_002394725.1--YP_002394724.1-exon1;Parent=cds119 +NC_011744 S-MART exon 134418 135626 . + . ID=cds119-exon2;Name=YP_002394725.1--YP_002394724.1-exon2;Parent=cds119 +NC_011744 S-MART CDS 135655 136593 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394726.1;Dbxref=Genbank:YP_002394726.1,GeneID:7137436;ID=cds120;Name=YP_002394726.1 +NC_011744 S-MART CDS 136700 138001 . + . product=oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394728.1;Dbxref=Genbank:YP_002394728.1,GeneID:7137438;ID=cds122;Name=YP_002394728.1--YP_002394727.1 +NC_011744 S-MART exon 136700 137023 . + . ID=cds122-exon1;Name=YP_002394728.1--YP_002394727.1-exon1;Parent=cds122 +NC_011744 S-MART exon 137027 138001 . + . ID=cds122-exon2;Name=YP_002394728.1--YP_002394727.1-exon2;Parent=cds122 +NC_011744 S-MART CDS 138201 138539 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394729.1;Dbxref=Genbank:YP_002394729.1,GeneID:7137439;ID=cds123;Name=YP_002394729.1 +NC_011744 S-MART CDS 138848 140416 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394730.1;Dbxref=Genbank:YP_002394730.1,GeneID:7137440;ID=cds124;Name=YP_002394730.1 +NC_011744 S-MART CDS 140862 143009 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394731.1;Dbxref=Genbank:YP_002394731.1,GeneID:7137441;ID=cds125;Name=YP_002394731.1 +NC_011744 S-MART CDS 143382 144595 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394735.1;Dbxref=Genbank:YP_002394735.1,GeneID:7137445;ID=cds129;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1 +NC_011744 S-MART exon 143382 144219 . + . ID=cds129-exon1;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1-exon1;Parent=cds129 +NC_011744 S-MART exon 144281 144427 . + . ID=cds129-exon2;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1-exon2;Parent=cds129 +NC_011744 S-MART exon 144458 144595 . + . ID=cds129-exon3;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1-exon3;Parent=cds129 +NC_011744 S-MART CDS 144807 156233 . - . product=2%2C3-diketo-L-gulonate reductase;nbElements=13.000000;transl_table=11;Note=NAD%28P%29H-dependent%3B catalyzes the reduction of 2%2C3-diketo-L-gulonate to 3-keto-L-gulonate;gbkey=CDS;protein_id=YP_002394748.1;Dbxref=Genbank:YP_002394748.1,GeneID:7137458;ID=cds142;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0 +NC_011744 S-MART exon 144807 146006 . - . ID=cds142-exon1;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon1;Parent=cds142 +NC_011744 S-MART exon 146096 147299 . - . ID=cds142-exon2;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon2;Parent=cds142 +NC_011744 S-MART exon 147309 148067 . - . ID=cds142-exon3;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon3;Parent=cds142 +NC_011744 S-MART exon 148075 150714 . - . ID=cds142-exon4;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon4;Parent=cds142 +NC_011744 S-MART exon 150763 151626 . - . ID=cds142-exon5;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon5;Parent=cds142 +NC_011744 S-MART exon 151637 152347 . - . ID=cds142-exon6;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon6;Parent=cds142 +NC_011744 S-MART exon 152443 153417 . - . ID=cds142-exon7;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon7;Parent=cds142 +NC_011744 S-MART exon 153439 155207 . - . ID=cds142-exon8;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon8;Parent=cds142 +NC_011744 S-MART exon 155232 156233 . - . ID=cds142-exon9;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0-exon9;Parent=cds142 +NC_011744 S-MART CDS 156656 157825 . + . product=glycerate kinase;transl_table=11;gbkey=CDS;protein_id=YP_002394749.1;Dbxref=Genbank:YP_002394749.1,GeneID:7137459;ID=cds143;Name=YP_002394749.1 +NC_011744 S-MART CDS 158027 159478 . + . product=catalase;transl_table=11;gbkey=CDS;protein_id=YP_002394750.1;Dbxref=Genbank:YP_002394750.1,GeneID:7137460;ID=cds144;Name=YP_002394750.1 +NC_011744 S-MART CDS 159709 160581 . + . product=Phospholipase;transl_table=11;gbkey=CDS;protein_id=YP_002394751.1;Dbxref=Genbank:YP_002394751.1,GeneID:7137461;ID=cds145;Name=YP_002394751.1 +NC_011744 S-MART CDS 160700 161692 . - . product=D-lactate dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002394752.1;Dbxref=Genbank:YP_002394752.1,GeneID:7137462;ID=cds146;Name=YP_002394752.1 +NC_011744 S-MART CDS 162181 163424 . - . product=ferredoxin-NADP reductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394754.1;Dbxref=Genbank:YP_002394754.1,GeneID:7137464;ID=cds148;Name=YP_002394754.1--YP_002394753.1 +NC_011744 S-MART exon 162181 162513 . - . ID=cds148-exon1;Name=YP_002394754.1--YP_002394753.1-exon1;Parent=cds148 +NC_011744 S-MART exon 162576 163424 . - . ID=cds148-exon2;Name=YP_002394754.1--YP_002394753.1-exon2;Parent=cds148 +NC_011744 S-MART CDS 163858 164139 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394756.1;Dbxref=Genbank:YP_002394756.1,GeneID:7137466;ID=cds150;Name=YP_002394756.1 +NC_011744 S-MART CDS 163720 164664 . + . product=acyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394755.1;Dbxref=Genbank:YP_002394755.1,GeneID:7137465;ID=cds149;Name=YP_002394755.1 +NC_011744 S-MART CDS 164814 165557 . - . product=SAM-dependent methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394757.1;Dbxref=Genbank:YP_002394757.1,GeneID:7137467;ID=cds151;Name=YP_002394757.1 +NC_011744 S-MART CDS 165711 167525 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394758.1;Dbxref=Genbank:YP_002394758.1,GeneID:7137468;ID=cds152;Name=YP_002394758.1 +NC_011744 S-MART CDS 167706 169679 . - . product=Type II secretory pathway%2C pullulanase PulA and related glycosidases;transl_table=11;gbkey=CDS;protein_id=YP_002394759.1;Dbxref=Genbank:YP_002394759.1,GeneID:7137469;ID=cds153;Name=YP_002394759.1 +NC_011744 S-MART CDS 170112 172475 . + . product=Maltose operon periplasmic protein precursor;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394761.1;Dbxref=Genbank:YP_002394761.1,GeneID:7137471;ID=cds155;Name=YP_002394761.1--YP_002394760.1 +NC_011744 S-MART exon 170112 171515 . + . ID=cds155-exon1;Name=YP_002394761.1--YP_002394760.1-exon1;Parent=cds155 +NC_011744 S-MART exon 171594 172475 . + . ID=cds155-exon2;Name=YP_002394761.1--YP_002394760.1-exon2;Parent=cds155 +NC_011744 S-MART CDS 172685 173512 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394762.1;Dbxref=Genbank:YP_002394762.1,GeneID:7137472;ID=cds156;Name=YP_002394762.1 +NC_011744 S-MART CDS 173629 177705 . - . product=maltose ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;Note=functions in the MalKFGE ABC transporter complex to transport maltose into the cell by using ATP hydrolysis;gbkey=CDS;protein_id=YP_002394764.1;Dbxref=Genbank:YP_002394764.1,GeneID:7137474;ID=cds158;Name=YP_002394764.1--YP_002394763.1 +NC_011744 S-MART exon 173629 176496 . - . ID=cds158-exon1;Name=YP_002394764.1--YP_002394763.1-exon1;Parent=cds158 +NC_011744 S-MART exon 176527 177705 . - . ID=cds158-exon2;Name=YP_002394764.1--YP_002394763.1-exon2;Parent=cds158 +NC_011744 S-MART CDS 178073 179716 . - . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002394765.1;Dbxref=Genbank:YP_002394765.1,GeneID:7137475;ID=cds159;Name=YP_002394765.1 +NC_011744 S-MART CDS 179899 180816 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394766.1;Dbxref=Genbank:YP_002394766.1,GeneID:7137476;ID=cds160;Name=YP_002394766.1 +NC_011744 S-MART CDS 180946 181239 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394767.1;Dbxref=Genbank:YP_002394767.1,GeneID:7137477;ID=cds161;Name=YP_002394767.1 +NC_011744 S-MART CDS 181650 186638 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394768.1;Dbxref=Genbank:YP_002394768.1,GeneID:7137478;ID=cds162;Name=YP_002394768.1 +NC_011744 S-MART CDS 187101 188867 . - . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002394769.1;Dbxref=Genbank:YP_002394769.1,GeneID:7137479;ID=cds163;Name=YP_002394769.1 +NC_011744 S-MART CDS 189145 192858 . - . product=pullulanase;transl_table=11;gbkey=CDS;protein_id=YP_002394770.1;Dbxref=Genbank:YP_002394770.1,GeneID:7137480;ID=cds164;Name=YP_002394770.1 +NC_011744 S-MART CDS 193236 193625 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394771.1;Dbxref=Genbank:YP_002394771.1,GeneID:7137481;ID=cds165;Name=YP_002394771.1 +NC_011744 S-MART CDS 193680 194318 . - . product=threonine efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002394772.1;Dbxref=Genbank:YP_002394772.1,GeneID:7137482;ID=cds166;Name=YP_002394772.1 +NC_011744 S-MART CDS 194406 195846 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394775.1;Dbxref=Genbank:YP_002394775.1,GeneID:7137485;ID=cds169;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1 +NC_011744 S-MART exon 194406 194846 . + . ID=cds169-exon1;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1-exon1;Parent=cds169 +NC_011744 S-MART exon 194873 195846 . + . ID=cds169-exon2;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1-exon2;Parent=cds169 +NC_011744 S-MART CDS 196083 197327 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394776.1;Dbxref=Genbank:YP_002394776.1,GeneID:7137486;ID=cds170;Name=YP_002394776.1 +NC_011744 S-MART CDS 197624 198841 . - . product=serine%2Fthreonine transporter SstT;transl_table=11;Note=involved in the import of serine and threonine coupled with the import of sodium;gbkey=CDS;protein_id=YP_002394777.1;Dbxref=Genbank:YP_002394777.1,GeneID:7137487;ID=cds171;Name=YP_002394777.1 +NC_011744 S-MART CDS 199011 200347 . - . product=ribosome-associated GTPase;nbElements=2.000000;transl_table=11;Note=EngC%3B RsgA%3B CpgA%3B circularly permuted GTPase%3B ribosome small subunit-dependent GTPase A%3B has the pattern G4-G1-G3 as opposed to other GTPases%3B interacts strongly with 30S ribosome which stimulates GTPase activity;gbkey=CDS;protein_id=YP_002394779.1;Dbxref=Genbank:YP_002394779.1,GeneID:7137489;ID=cds173;Name=YP_002394779.1--YP_002394778.1 +NC_011744 S-MART exon 199011 199193 . - . ID=cds173-exon1;Name=YP_002394779.1--YP_002394778.1-exon1;Parent=cds173 +NC_011744 S-MART exon 199283 200347 . - . ID=cds173-exon2;Name=YP_002394779.1--YP_002394778.1-exon2;Parent=cds173 +NC_011744 S-MART CDS 200868 202474 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394782.1;Dbxref=Genbank:YP_002394782.1,GeneID:7137492;ID=cds176;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1 +NC_011744 S-MART exon 200868 201326 . - . ID=cds176-exon1;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1-exon1;Parent=cds176 +NC_011744 S-MART exon 201441 202474 . - . ID=cds176-exon2;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1-exon2;Parent=cds176 +NC_011744 S-MART CDS 202677 203636 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394783.1;Dbxref=Genbank:YP_002394783.1,GeneID:7137493;ID=cds177;Name=YP_002394783.1 +NC_011744 S-MART ncRNA 203925 204035 . + . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137494;ID=rna0;Name=rna0 +NC_011744 S-MART CDS 204183 206906 . - . product=transcriptional regulator MalT;transl_table=11;Note=Positively regulates the transcription of the maltose regulon whose gene products are responsible for uptake and catabolism of malto-oligosaccharides;gbkey=CDS;protein_id=YP_002394784.1;Dbxref=Genbank:YP_002394784.1,GeneID:7138798;ID=cds178;Name=YP_002394784.1 +NC_011744 S-MART CDS 207458 209911 . + . product=maltodextrin phosphorylase;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394785.1;Dbxref=Genbank:YP_002394785.1,GeneID:7137495;ID=cds179;Name=YP_002394785.1 +NC_011744 S-MART CDS 210088 212268 . + . product=4-alpha-glucanotransferase;transl_table=11;Note=amylomaltase%3B acts to release glucose from maltodextrins;gbkey=CDS;protein_id=YP_002394786.1;Dbxref=Genbank:YP_002394786.1,GeneID:7137496;ID=cds180;Name=YP_002394786.1 +NC_011744 S-MART CDS 212444 214624 . + . product=glycogen branching protein;transl_table=11;Note=catalyzes the transfer of a segment of a 1%2C4-alpha-D-glucan chain to a primary hydroxy group in a similar glucan chain;gbkey=CDS;protein_id=YP_002394787.1;Dbxref=Genbank:YP_002394787.1,GeneID:7137497;ID=cds181;Name=YP_002394787.1 +NC_011744 S-MART CDS 214777 217985 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394790.1;Dbxref=Genbank:YP_002394790.1,GeneID:7137500;ID=cds184;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1 +NC_011744 S-MART exon 214777 217307 . - . ID=cds184-exon1;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1-exon1;Parent=cds184 +NC_011744 S-MART exon 217314 217985 . - . ID=cds184-exon2;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1-exon2;Parent=cds184 +NC_011744 S-MART CDS 218171 219696 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394792.1;Dbxref=Genbank:YP_002394792.1,GeneID:7137502;ID=cds186;Name=YP_002394792.1--YP_002394791.1 +NC_011744 S-MART CDS 219953 220867 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394793.1;Dbxref=Genbank:YP_002394793.1,GeneID:7137503;ID=cds187;Name=YP_002394793.1 +NC_011744 S-MART CDS 220939 226435 . - . product=purine nucleoside phosphorylase;nbElements=5.000000;transl_table=11;Note=catalyzes the reversible phosphorolysis of ribonucleosides and 2%27- deoxyribonucleosides to the free base and %282%27-deoxy%29ribose-1- phosphate;gbkey=CDS;protein_id=YP_002394798.1;Dbxref=Genbank:YP_002394798.1,GeneID:7137508;ID=cds192;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1 +NC_011744 S-MART exon 220939 224140 . - . ID=cds192-exon1;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1-exon1;Parent=cds192 +NC_011744 S-MART exon 224175 225707 . - . ID=cds192-exon2;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1-exon2;Parent=cds192 +NC_011744 S-MART exon 225725 226435 . - . ID=cds192-exon3;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1-exon3;Parent=cds192 +NC_011744 S-MART CDS 226854 227756 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394799.1;Dbxref=Genbank:YP_002394799.1,GeneID:7137509;ID=cds193;Name=YP_002394799.1 +NC_011744 S-MART CDS 227951 228283 . - . product=outer membrane lipoprotein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pm : membrane component;gbkey=CDS;protein_id=YP_002394800.1;Dbxref=Genbank:YP_002394800.1,GeneID:7137510;ID=cds194;Name=YP_002394800.1 +NC_011744 S-MART CDS 228566 229909 . + . product=ATP-dependent RNA helicase%2C DEAD box family;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 2461520%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394801.1;Dbxref=Genbank:YP_002394801.1,GeneID:7137511;ID=cds195;Name=YP_002394801.1 +NC_011744 S-MART CDS 230062 231345 . - . product=Thermolabile hemolysin %28TL%29-%28Lecithin-dependent hemolysin%29 %28LDH%29;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 1791426%2C 3508495%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394802.1;Dbxref=Genbank:YP_002394802.1,GeneID:7137512;ID=cds196;Name=YP_002394802.1 +NC_011744 S-MART CDS 231825 233699 . + . product=lipase chaperone;nbElements=2.000000;transl_table=11;Note=acts as a molecular chaperone to fold and export lipase A;gbkey=CDS;protein_id=YP_002394804.1;Dbxref=Genbank:YP_002394804.1,GeneID:7137514;ID=cds198;Name=YP_002394804.1--YP_002394803.1 +NC_011744 S-MART exon 231825 232766 . + . ID=cds198-exon1;Name=YP_002394804.1--YP_002394803.1-exon1;Parent=cds198 +NC_011744 S-MART exon 232806 233699 . + . ID=cds198-exon2;Name=YP_002394804.1--YP_002394803.1-exon2;Parent=cds198 +NC_011744 S-MART CDS 233889 235571 . - . product=methyl-accepting chemotaxis protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pf : factor;gbkey=CDS;protein_id=YP_002394805.1;Dbxref=Genbank:YP_002394805.1,GeneID:7137515;ID=cds199;Name=YP_002394805.1 +NC_011744 S-MART CDS 235997 239625 . + . product=phosphate ABC transporter ATP-binding protein;nbElements=4.000000;transl_table=11;Note=ATP-binding protein%3B PstABCS is an ATP dependent phosphate uptake system which is responsible for inorganic phosphate uptake during phosphate starvation;gbkey=CDS;protein_id=YP_002394809.1;Dbxref=Genbank:YP_002394809.1,GeneID:7137519;ID=cds203;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1 +NC_011744 S-MART exon 235997 236818 . + . ID=cds203-exon1;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon1;Parent=cds203 +NC_011744 S-MART exon 236943 237872 . + . ID=cds203-exon2;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon2;Parent=cds203 +NC_011744 S-MART exon 237937 238800 . + . ID=cds203-exon3;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon3;Parent=cds203 +NC_011744 S-MART exon 238876 239625 . + . ID=cds203-exon4;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1-exon4;Parent=cds203 +NC_011744 S-MART CDS 239945 242089 . + . product=GGDEF family protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type f : factor;gbkey=CDS;protein_id=YP_002394810.1;Dbxref=Genbank:YP_002394810.1,GeneID:7137520;ID=cds204;Name=YP_002394810.1 +NC_011744 S-MART CDS 242225 249098 . - . product=MoxR-ATPase;nbElements=6.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 165787%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394816.1;Dbxref=Genbank:YP_002394816.1,GeneID:7137526;ID=cds210;Name=YP_002394816.1--YP_002394815.1--YP_002394814.1--YP_002394813.1--YP_002394812.1--YP_002394811.1 +NC_011744 S-MART CDS 249562 251478 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B PubMedId : 8188684%3B Product type f : factor;gbkey=CDS;protein_id=YP_002394817.1;Dbxref=Genbank:YP_002394817.1,GeneID:7137527;ID=cds211;Name=YP_002394817.1 +NC_011744 S-MART CDS 251798 252053 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394819.1;Dbxref=Genbank:YP_002394819.1,GeneID:7137529;ID=cds213;Name=YP_002394819.1--YP_002394818.1 +NC_011744 S-MART CDS 252277 253389 . - . product=maltose ABC transporter ATP-binding protein;transl_table=11;Note=with malEFG is involved in import of maltose%2Fmaltodextrin;gbkey=CDS;protein_id=YP_002394820.1;Dbxref=Genbank:YP_002394820.1,GeneID:7137530;ID=cds214;Name=YP_002394820.1 +NC_011744 S-MART CDS 254055 257791 . + . product=maltose ABC transporter permease;nbElements=3.000000;transl_table=11;Note=with MalKFE is involved in the transport of maltose into the cell;gbkey=CDS;protein_id=YP_002394823.1;Dbxref=Genbank:YP_002394823.1,GeneID:7137533;ID=cds217;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1 +NC_011744 S-MART exon 254055 255239 . + . ID=cds217-exon1;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1-exon1;Parent=cds217 +NC_011744 S-MART exon 255318 256889 . + . ID=cds217-exon2;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1-exon2;Parent=cds217 +NC_011744 S-MART exon 256901 257791 . + . ID=cds217-exon3;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1-exon3;Parent=cds217 +NC_011744 S-MART CDS 258382 258654 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394824.1;Dbxref=Genbank:YP_002394824.1,GeneID:7137534;ID=cds218;Name=YP_002394824.1 +NC_011744 S-MART CDS 258885 259388 . - . product=hydrolase;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 9139899%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394825.1;Dbxref=Genbank:YP_002394825.1,GeneID:7137535;ID=cds219;Name=YP_002394825.1 +NC_011744 S-MART CDS 260282 261175 . - . product=transport protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pt : transporter;gbkey=CDS;protein_id=YP_002394826.1;Dbxref=Genbank:YP_002394826.1,GeneID:7137536;ID=cds220;Name=YP_002394826.1 +NC_011744 S-MART CDS 261274 262062 . + . product=HTH-type transcriptional regulator;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002394827.1;Dbxref=Genbank:YP_002394827.1,GeneID:7137537;ID=cds221;Name=YP_002394827.1 +NC_011744 S-MART CDS 262176 262564 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394829.1;Dbxref=Genbank:YP_002394829.1,GeneID:7137539;ID=cds223;Name=YP_002394829.1--YP_002394828.1 +NC_011744 S-MART CDS 262770 264620 . - . product=Alkyl sulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002394830.1;Dbxref=Genbank:YP_002394830.1,GeneID:7137540;ID=cds224;Name=YP_002394830.1 +NC_011744 S-MART CDS 265017 266057 . + . product=esterase;transl_table=11;gbkey=CDS;protein_id=YP_002394831.1;Dbxref=Genbank:YP_002394831.1,GeneID:7137541;ID=cds225;Name=YP_002394831.1 +NC_011744 S-MART CDS 266265 268079 . + . product=mechanosensitive ion channel;transl_table=11;gbkey=CDS;protein_id=YP_002394832.1;Dbxref=Genbank:YP_002394832.1,GeneID:7137542;ID=cds226;Name=YP_002394832.1 +NC_011744 S-MART CDS 268214 269146 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394833.1;Dbxref=Genbank:YP_002394833.1,GeneID:7137543;ID=cds227;Name=YP_002394833.1 +NC_011744 S-MART CDS 269443 270897 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394835.1;Dbxref=Genbank:YP_002394835.1,GeneID:7137545;ID=cds229;Name=YP_002394835.1--YP_002394834.1 +NC_011744 S-MART exon 269443 270144 . - . ID=cds229-exon1;Name=YP_002394835.1--YP_002394834.1-exon1;Parent=cds229 +NC_011744 S-MART exon 270220 270897 . - . ID=cds229-exon2;Name=YP_002394835.1--YP_002394834.1-exon2;Parent=cds229 +NC_011744 S-MART CDS 271085 275014 . - . product=Calcium%2Fproton antiporter;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394840.1;Dbxref=Genbank:YP_002394840.1,GeneID:7137550;ID=cds234;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1 +NC_011744 S-MART exon 271085 271747 . - . ID=cds234-exon1;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1-exon1;Parent=cds234 +NC_011744 S-MART exon 271772 273865 . - . ID=cds234-exon2;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1-exon2;Parent=cds234 +NC_011744 S-MART exon 273923 275014 . - . ID=cds234-exon3;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1-exon3;Parent=cds234 +NC_011744 S-MART CDS 275309 277998 . - . product=protein-export membrane protein SecD;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394842.1;Dbxref=Genbank:YP_002394842.1,GeneID:7137552;ID=cds236;Name=YP_002394842.1--YP_002394841.1 +NC_011744 S-MART CDS 278312 278647 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394843.1;Dbxref=Genbank:YP_002394843.1,GeneID:7137553;ID=cds237;Name=YP_002394843.1 +NC_011744 S-MART CDS 278912 279706 . + . product=ribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002394844.1;Dbxref=Genbank:YP_002394844.1,GeneID:7137554;ID=cds238;Name=YP_002394844.1 +NC_011744 S-MART CDS 279767 284156 . - . product=ABC transporter-ATP binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394847.1;Dbxref=Genbank:YP_002394847.1,GeneID:7137557;ID=cds241;Name=YP_002394847.1--YP_002394846.1--YP_002394845.1 +NC_011744 S-MART CDS 284606 287767 . + . product=diguanylate cyclase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394849.1;Dbxref=Genbank:YP_002394849.1,GeneID:7137559;ID=cds243;Name=YP_002394849.1--YP_002394848.1 +NC_011744 S-MART exon 284606 285568 . + . ID=cds243-exon1;Name=YP_002394849.1--YP_002394848.1-exon1;Parent=cds243 +NC_011744 S-MART exon 285581 287767 . + . ID=cds243-exon2;Name=YP_002394849.1--YP_002394848.1-exon2;Parent=cds243 +NC_011744 S-MART CDS 287851 288837 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394850.1;Dbxref=Genbank:YP_002394850.1,GeneID:7137560;ID=cds244;Name=YP_002394850.1 +NC_011744 S-MART CDS 289034 290551 . + . product=radical SAM protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394852.1;Dbxref=Genbank:YP_002394852.1,GeneID:7137562;ID=cds246;Name=YP_002394852.1--YP_002394851.1 +NC_011744 S-MART exon 289034 289309 . + . ID=cds246-exon1;Name=YP_002394852.1--YP_002394851.1-exon1;Parent=cds246 +NC_011744 S-MART exon 289340 290551 . + . ID=cds246-exon2;Name=YP_002394852.1--YP_002394851.1-exon2;Parent=cds246 +NC_011744 S-MART CDS 290698 291947 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394854.1;Dbxref=Genbank:YP_002394854.1,GeneID:7137564;ID=cds248;Name=YP_002394854.1--YP_002394853.1 +NC_011744 S-MART exon 290698 291039 . - . ID=cds248-exon1;Name=YP_002394854.1--YP_002394853.1-exon1;Parent=cds248 +NC_011744 S-MART exon 291159 291947 . - . ID=cds248-exon2;Name=YP_002394854.1--YP_002394853.1-exon2;Parent=cds248 +NC_011744 S-MART CDS 292132 294467 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394856.1;Dbxref=Genbank:YP_002394856.1,GeneID:7137566;ID=cds250;Name=YP_002394856.1--YP_002394855.1 +NC_011744 S-MART exon 292132 293013 . - . ID=cds250-exon1;Name=YP_002394856.1--YP_002394855.1-exon1;Parent=cds250 +NC_011744 S-MART exon 293136 294467 . - . ID=cds250-exon2;Name=YP_002394856.1--YP_002394855.1-exon2;Parent=cds250 +NC_011744 S-MART CDS 294685 297090 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394858.1;Dbxref=Genbank:YP_002394858.1,GeneID:7137568;ID=cds252;Name=YP_002394858.1--YP_002394857.1 +NC_011744 S-MART exon 294685 296196 . - . ID=cds252-exon1;Name=YP_002394858.1--YP_002394857.1-exon1;Parent=cds252 +NC_011744 S-MART exon 296302 297090 . - . ID=cds252-exon2;Name=YP_002394858.1--YP_002394857.1-exon2;Parent=cds252 +NC_011744 S-MART CDS 297221 298147 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394859.1;Dbxref=Genbank:YP_002394859.1,GeneID:7137569;ID=cds253;Name=YP_002394859.1 +NC_011744 S-MART CDS 298191 302041 . - . product=LuxM protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394861.1;Dbxref=Genbank:YP_002394861.1,GeneID:7137571;ID=cds255;Name=YP_002394861.1--YP_002394860.1 +NC_011744 S-MART CDS 302458 302850 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394862.1;Dbxref=Genbank:YP_002394862.1,GeneID:7137572;ID=cds256;Name=YP_002394862.1 +NC_011744 S-MART CDS 302973 303563 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394863.1;Dbxref=Genbank:YP_002394863.1,GeneID:7137573;ID=cds257;Name=YP_002394863.1 +NC_011744 S-MART CDS 303764 305362 . - . product=isocitrate lyase;transl_table=11;Note=Catalyzes the first step in the glyoxalate cycle%2C which converts lipids to carbohydrates;gbkey=CDS;protein_id=YP_002394864.1;Dbxref=Genbank:YP_002394864.1,GeneID:7137574;ID=cds258;Name=YP_002394864.1 +NC_011744 S-MART CDS 305504 306457 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394865.1;Dbxref=Genbank:YP_002394865.1,GeneID:7137575;ID=cds259;Name=YP_002394865.1 +NC_011744 S-MART CDS 306613 308796 . + . product=malate synthase G;transl_table=11;Note=catalyzes the formation of malate from glyoxylate and acetyl-CoA;gbkey=CDS;protein_id=YP_002394866.1;Dbxref=Genbank:YP_002394866.1,GeneID:7137576;ID=cds260;Name=YP_002394866.1 +NC_011744 S-MART CDS 309040 310467 . - . product=Succinate-semialdehyde dehydrogenase %5BNADP%2B%5D;transl_table=11;gbkey=CDS;protein_id=YP_002394867.1;Dbxref=Genbank:YP_002394867.1,GeneID:7137577;ID=cds261;Name=YP_002394867.1 +NC_011744 S-MART CDS 310935 311507 . + . product=malate synthase;transl_table=11;Note=Catalyzes the aldol condensation of glyoxylate with acetyl-CoA to form malate as part of the second step of the glyoxylate bypass and an alternative to the tricarboxylic acid cycle;gbkey=CDS;protein_id=YP_002394868.1;Dbxref=Genbank:YP_002394868.1,GeneID:7137578;ID=cds262;Name=YP_002394868.1 +NC_011744 S-MART CDS 312002 313609 . + . product=transporter%2C BCCT family;transl_table=11;gbkey=CDS;protein_id=YP_002394869.1;Dbxref=Genbank:YP_002394869.1,GeneID:7137579;ID=cds263;Name=YP_002394869.1 +NC_011744 S-MART CDS 313812 314738 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394870.1;Dbxref=Genbank:YP_002394870.1,GeneID:7137580;ID=cds264;Name=YP_002394870.1 +NC_011744 S-MART CDS 314963 316180 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394871.1;Dbxref=Genbank:YP_002394871.1,GeneID:7137581;ID=cds265;Name=YP_002394871.1 +NC_011744 S-MART CDS 316352 317380 . - . product=dihydroorotase;transl_table=11;Note=catalyzes the formation of N-carbamoyl-L-aspartate from %28S%29-dihydroorotate in pyrimidine biosynthesis;gbkey=CDS;protein_id=YP_002394872.1;Dbxref=Genbank:YP_002394872.1,GeneID:7137582;ID=cds266;Name=YP_002394872.1 +NC_011744 S-MART CDS 317573 317731 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394873.1;Dbxref=Genbank:YP_002394873.1,GeneID:7137583;ID=cds267;Name=YP_002394873.1 +NC_011744 S-MART CDS 317950 319806 . + . product=Flavodoxin reductase 1 protein;transl_table=11;gbkey=CDS;protein_id=YP_002394874.1;Dbxref=Genbank:YP_002394874.1,GeneID:7137584;ID=cds268;Name=YP_002394874.1 +NC_011744 S-MART CDS 319914 320744 . - . product=NAD synthetase;transl_table=11;Note=catalyzes the formation of nicotinamide adenine dinucleotide %28NAD%29 from nicotinic acid adenine dinucleotide %28NAAD%29 using either ammonia or glutamine as the amide donor and ATP%3B ammonia-utilizing enzymes include the ones from Bacillus and Escherichia coli while glutamine-utilizing enzymes include the Mycobacterial one%3B forms homodimers;gbkey=CDS;protein_id=YP_002394875.1;Dbxref=Genbank:YP_002394875.1,GeneID:7137585;ID=cds269;Name=YP_002394875.1 +NC_011744 S-MART CDS 320854 321889 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394877.1;Dbxref=Genbank:YP_002394877.1,GeneID:7137587;ID=cds271;Name=YP_002394877.1--YP_002394876.1 +NC_011744 S-MART exon 320854 321375 . + . ID=cds271-exon1;Name=YP_002394877.1--YP_002394876.1-exon1;Parent=cds271 +NC_011744 S-MART exon 321404 321889 . + . ID=cds271-exon2;Name=YP_002394877.1--YP_002394876.1-exon2;Parent=cds271 +NC_011744 S-MART CDS 322012 322638 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394878.1;Dbxref=Genbank:YP_002394878.1,GeneID:7137588;ID=cds272;Name=YP_002394878.1 +NC_011744 S-MART CDS 322802 323920 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394879.1;Dbxref=Genbank:YP_002394879.1,GeneID:7137589;ID=cds273;Name=YP_002394879.1 +NC_011744 S-MART CDS 324050 324649 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394880.1;Dbxref=Genbank:YP_002394880.1,GeneID:7137590;ID=cds274;Name=YP_002394880.1 +NC_011744 S-MART CDS 324751 325053 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394881.1;Dbxref=Genbank:YP_002394881.1,GeneID:7137591;ID=cds275;Name=YP_002394881.1 +NC_011744 S-MART CDS 325090 325431 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394882.1;Dbxref=Genbank:YP_002394882.1,GeneID:7137592;ID=cds276;Name=YP_002394882.1 +NC_011744 S-MART CDS 325919 326380 . + . product=LuxT regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394883.1;Dbxref=Genbank:YP_002394883.1,GeneID:7137593;ID=cds277;Name=YP_002394883.1 +NC_011744 S-MART CDS 326774 329589 . - . product=hemin ABC transporter substrate-binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394886.1;Dbxref=Genbank:YP_002394886.1,GeneID:7137596;ID=cds280;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1 +NC_011744 S-MART exon 326774 328605 . - . ID=cds280-exon1;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1-exon1;Parent=cds280 +NC_011744 S-MART exon 328699 329589 . - . ID=cds280-exon2;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1-exon2;Parent=cds280 +NC_011744 S-MART CDS 329765 331646 . - . product=TonB-like protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394889.1;Dbxref=Genbank:YP_002394889.1,GeneID:7137599;ID=cds283;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1 +NC_011744 S-MART exon 329765 330876 . - . ID=cds283-exon1;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1-exon1;Parent=cds283 +NC_011744 S-MART exon 330879 331646 . - . ID=cds283-exon2;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1-exon2;Parent=cds283 +NC_011744 S-MART CDS 331801 334462 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394892.1;Dbxref=Genbank:YP_002394892.1,GeneID:7137602;ID=cds286;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1 +NC_011744 S-MART exon 331801 333210 . + . ID=cds286-exon1;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1-exon1;Parent=cds286 +NC_011744 S-MART exon 333269 333790 . + . ID=cds286-exon2;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1-exon2;Parent=cds286 +NC_011744 S-MART exon 333932 334462 . + . ID=cds286-exon3;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1-exon3;Parent=cds286 +NC_011744 S-MART CDS 334516 335430 . - . product=Chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002394893.1;Dbxref=Genbank:YP_002394893.1,GeneID:7137603;ID=cds287;Name=YP_002394893.1 +NC_011744 S-MART CDS 335714 335992 . + . product=Peptidyl-prolyl cis-trans isomerase C;transl_table=11;gbkey=CDS;protein_id=YP_002394894.1;Dbxref=Genbank:YP_002394894.1,GeneID:7137604;ID=cds288;Name=YP_002394894.1 +NC_011744 S-MART CDS 336291 337661 . + . product=alpha-amylase;transl_table=11;gbkey=CDS;protein_id=YP_002394895.1;Dbxref=Genbank:YP_002394895.1,GeneID:7137605;ID=cds289;Name=YP_002394895.1 +NC_011744 S-MART CDS 337828 339699 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002394896.1;Dbxref=Genbank:YP_002394896.1,GeneID:7137606;ID=cds290;Name=YP_002394896.1 +NC_011744 S-MART CDS 340153 341523 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394897.1;Dbxref=Genbank:YP_002394897.1,GeneID:7137607;ID=cds291;Name=YP_002394897.1 +NC_011744 S-MART CDS 341752 343059 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394899.1;Dbxref=Genbank:YP_002394899.1,GeneID:7137609;ID=cds293;Name=YP_002394899.1--YP_002394898.1 +NC_011744 S-MART exon 341752 342435 . - . ID=cds293-exon1;Name=YP_002394899.1--YP_002394898.1-exon1;Parent=cds293 +NC_011744 S-MART exon 342577 343059 . - . ID=cds293-exon2;Name=YP_002394899.1--YP_002394898.1-exon2;Parent=cds293 +NC_011744 S-MART CDS 343092 344162 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394901.1;Dbxref=Genbank:YP_002394901.1,GeneID:7137611;ID=cds295;Name=YP_002394901.1--YP_002394900.1 +NC_011744 S-MART exon 343092 343739 . + . ID=cds295-exon1;Name=YP_002394901.1--YP_002394900.1-exon1;Parent=cds295 +NC_011744 S-MART exon 343863 344162 . + . ID=cds295-exon2;Name=YP_002394901.1--YP_002394900.1-exon2;Parent=cds295 +NC_011744 S-MART CDS 344408 345700 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394902.1;Dbxref=Genbank:YP_002394902.1,GeneID:7137612;ID=cds296;Name=YP_002394902.1 +NC_011744 S-MART CDS 345872 348793 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394904.1;Dbxref=Genbank:YP_002394904.1,GeneID:7137614;ID=cds298;Name=YP_002394904.1--YP_002394903.1 +NC_011744 S-MART exon 345872 347824 . - . ID=cds298-exon1;Name=YP_002394904.1--YP_002394903.1-exon1;Parent=cds298 +NC_011744 S-MART exon 347897 348793 . - . ID=cds298-exon2;Name=YP_002394904.1--YP_002394903.1-exon2;Parent=cds298 +NC_011744 S-MART CDS 348902 350580 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394906.1;Dbxref=Genbank:YP_002394906.1,GeneID:7137616;ID=cds300;Name=YP_002394906.1--YP_002394905.1 +NC_011744 S-MART exon 348902 350107 . + . ID=cds300-exon1;Name=YP_002394906.1--YP_002394905.1-exon1;Parent=cds300 +NC_011744 S-MART exon 350230 350580 . + . ID=cds300-exon2;Name=YP_002394906.1--YP_002394905.1-exon2;Parent=cds300 +NC_011744 S-MART CDS 350824 350958 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394907.1;Dbxref=Genbank:YP_002394907.1,GeneID:7137617;ID=cds301;Name=YP_002394907.1 +NC_011744 S-MART CDS 351134 352710 . - . product=transporter;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394909.1;Dbxref=Genbank:YP_002394909.1,GeneID:7137619;ID=cds303;Name=YP_002394909.1--YP_002394908.1 +NC_011744 S-MART exon 351134 351751 . - . ID=cds303-exon1;Name=YP_002394909.1--YP_002394908.1-exon1;Parent=cds303 +NC_011744 S-MART exon 351820 352710 . - . ID=cds303-exon2;Name=YP_002394909.1--YP_002394908.1-exon2;Parent=cds303 +NC_011744 S-MART CDS 352866 353861 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394910.1;Dbxref=Genbank:YP_002394910.1,GeneID:7137620;ID=cds304;Name=YP_002394910.1 +NC_011744 S-MART CDS 354232 355245 . + . product=succinate dehydrogenase subunit Sdh;transl_table=11;gbkey=CDS;protein_id=YP_002394911.1;Dbxref=Genbank:YP_002394911.1,GeneID:7137621;ID=cds305;Name=YP_002394911.1 +NC_011744 S-MART CDS 355397 357379 . - . product=PTS system transporter subunit IIB;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394914.1;Dbxref=Genbank:YP_002394914.1,GeneID:7137624;ID=cds308;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1 +NC_011744 S-MART exon 355397 357099 . - . ID=cds308-exon1;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1-exon1;Parent=cds308 +NC_011744 S-MART exon 357110 357379 . - . ID=cds308-exon2;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1-exon2;Parent=cds308 +NC_011744 S-MART CDS 357665 358150 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394915.1;Dbxref=Genbank:YP_002394915.1,GeneID:7137625;ID=cds309;Name=YP_002394915.1 +NC_011744 S-MART CDS 358753 359961 . + . product=nucleoside permease;transl_table=11;gbkey=CDS;protein_id=YP_002394916.1;Dbxref=Genbank:YP_002394916.1,GeneID:7137626;ID=cds310;Name=YP_002394916.1 +NC_011744 S-MART CDS 360320 361246 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394918.1;Dbxref=Genbank:YP_002394918.1,GeneID:7137628;ID=cds312;Name=YP_002394918.1--YP_002394917.1 +NC_011744 S-MART exon 360320 360589 . + . ID=cds312-exon1;Name=YP_002394918.1--YP_002394917.1-exon1;Parent=cds312 +NC_011744 S-MART exon 360635 361246 . + . ID=cds312-exon2;Name=YP_002394918.1--YP_002394917.1-exon2;Parent=cds312 +NC_011744 S-MART CDS 361344 362552 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394919.1;Dbxref=Genbank:YP_002394919.1,GeneID:7137629;ID=cds313;Name=YP_002394919.1 +NC_011744 S-MART CDS 362826 364181 . + . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394920.1;Dbxref=Genbank:YP_002394920.1,GeneID:7137630;ID=cds314;Name=YP_002394920.1 +NC_011744 S-MART CDS 364346 365917 . + . product=ATP-dependent RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002394921.1;Dbxref=Genbank:YP_002394921.1,GeneID:7137631;ID=cds315;Name=YP_002394921.1 +NC_011744 S-MART ncRNA 366376 366484 . + . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137632;ID=rna1;Name=rna1 +NC_011744 S-MART CDS 366620 368185 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394922.1;Dbxref=Genbank:YP_002394922.1,GeneID:7138799;ID=cds316;Name=YP_002394922.1 +NC_011744 S-MART CDS 368323 368925 . + . product=malate synthase;transl_table=11;Note=Catalyzes the aldol condensation of glyoxylate with acetyl-CoA to form malate as part of the second step of the glyoxylate bypass and an alternative to the tricarboxylic acid cycle;gbkey=CDS;protein_id=YP_002394923.1;Dbxref=Genbank:YP_002394923.1,GeneID:7137633;ID=cds317;Name=YP_002394923.1 +NC_011744 S-MART CDS 369191 370228 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394924.1;Dbxref=Genbank:YP_002394924.1,GeneID:7137634;ID=cds318;Name=YP_002394924.1 +NC_011744 S-MART CDS 370524 370754 . - . product=cold shock protein;transl_table=11;gbkey=CDS;protein_id=YP_002394925.1;Dbxref=Genbank:YP_002394925.1,GeneID:7137635;ID=cds319;Name=YP_002394925.1 +NC_011744 S-MART CDS 371098 373622 . - . product=cytosine transporter;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pt : transporter;gbkey=CDS;protein_id=YP_002394928.1;Dbxref=Genbank:YP_002394928.1,GeneID:7137638;ID=cds322;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1 +NC_011744 S-MART exon 371098 372375 . - . ID=cds322-exon1;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1-exon1;Parent=cds322 +NC_011744 S-MART exon 372385 373622 . - . ID=cds322-exon2;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1-exon2;Parent=cds322 +NC_011744 S-MART CDS 373850 373924 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394929.1;Dbxref=Genbank:YP_002394929.1,GeneID:7137639;ID=cds323;Name=YP_002394929.1 +NC_011744 S-MART ncRNA 373934 374042 . - . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137640;ID=rna2;Name=rna2 +NC_011744 S-MART CDS 374356 375923 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394931.1;Dbxref=Genbank:YP_002394931.1,GeneID:7137641;ID=cds325;Name=YP_002394931.1--YP_002394930.1 +NC_011744 S-MART CDS 376058 377065 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394932.1;Dbxref=Genbank:YP_002394932.1,GeneID:7137642;ID=cds326;Name=YP_002394932.1 +NC_011744 S-MART CDS 377072 378717 . - . product=flavin-nucleotide-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394934.1;Dbxref=Genbank:YP_002394934.1,GeneID:7137644;ID=cds328;Name=YP_002394934.1--YP_002394933.1 +NC_011744 S-MART CDS 378808 380265 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394935.1;Dbxref=Genbank:YP_002394935.1,GeneID:7137645;ID=cds329;Name=YP_002394935.1 +NC_011744 S-MART CDS 380313 381578 . - . product=hypothetical protein;transl_table=11;Note=uncharacterized member of the APC superfamily of amino acid transporters%3B unknown function;gbkey=CDS;protein_id=YP_002394936.1;Dbxref=Genbank:YP_002394936.1,GeneID:7137646;ID=cds330;Name=YP_002394936.1 +NC_011744 S-MART CDS 381822 384039 . + . product=LysE type translocator;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394939.1;Dbxref=Genbank:YP_002394939.1,GeneID:7137649;ID=cds333;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1 +NC_011744 S-MART exon 381822 382283 . + . ID=cds333-exon1;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1-exon1;Parent=cds333 +NC_011744 S-MART exon 382377 383324 . + . ID=cds333-exon2;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1-exon2;Parent=cds333 +NC_011744 S-MART exon 383422 384039 . + . ID=cds333-exon3;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1-exon3;Parent=cds333 +NC_011744 S-MART CDS 384149 385659 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394941.1;Dbxref=Genbank:YP_002394941.1,GeneID:7137651;ID=cds335;Name=YP_002394941.1--YP_002394940.1 +NC_011744 S-MART exon 384149 385312 . - . ID=cds335-exon1;Name=YP_002394941.1--YP_002394940.1-exon1;Parent=cds335 +NC_011744 S-MART exon 385366 385659 . - . ID=cds335-exon2;Name=YP_002394941.1--YP_002394940.1-exon2;Parent=cds335 +NC_011744 S-MART CDS 385873 388726 . + . product=ferredoxin oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394943.1;Dbxref=Genbank:YP_002394943.1,GeneID:7137653;ID=cds337;Name=YP_002394943.1--YP_002394942.1 +NC_011744 S-MART exon 385873 387534 . + . ID=cds337-exon1;Name=YP_002394943.1--YP_002394942.1-exon1;Parent=cds337 +NC_011744 S-MART exon 387647 388726 . + . ID=cds337-exon2;Name=YP_002394943.1--YP_002394942.1-exon2;Parent=cds337 +NC_011744 S-MART CDS 388972 390408 . - . product=glyceraldehyde-3-phosphate dehydrogenase;transl_table=11;Note=catalyzes the formation of 3-phospho-D-glyceroyl phosphate from D-glyceraldehyde 3-phosphate%3B involved in growth under gluconeogenic conditions and in glycolytic activity at high ATP concentrations in Corynebacterium%3B NAD and NADP dependent;gbkey=CDS;protein_id=YP_002394944.1;Dbxref=Genbank:YP_002394944.1,GeneID:7137654;ID=cds338;Name=YP_002394944.1 +NC_011744 S-MART CDS 391162 393817 . + . product=sensor protein;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002394946.1;Dbxref=Genbank:YP_002394946.1,GeneID:7137656;ID=cds340;Name=YP_002394946.1--YP_002394945.1 +NC_011744 S-MART exon 391162 392187 . + . ID=cds340-exon1;Name=YP_002394946.1--YP_002394945.1-exon1;Parent=cds340 +NC_011744 S-MART exon 392204 393817 . + . ID=cds340-exon2;Name=YP_002394946.1--YP_002394945.1-exon2;Parent=cds340 +NC_011744 S-MART CDS 393850 394086 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394947.1;Dbxref=Genbank:YP_002394947.1,GeneID:7137657;ID=cds341;Name=YP_002394947.1 +NC_011744 S-MART CDS 394251 394877 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394948.1;Dbxref=Genbank:YP_002394948.1,GeneID:7137658;ID=cds342;Name=YP_002394948.1 +NC_011744 S-MART CDS 395048 395362 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394949.1;Dbxref=Genbank:YP_002394949.1,GeneID:7137659;ID=cds343;Name=YP_002394949.1 +NC_011744 S-MART CDS 395459 396793 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394952.1;Dbxref=Genbank:YP_002394952.1,GeneID:7137662;ID=cds346;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1 +NC_011744 S-MART exon 395459 395758 . + . ID=cds346-exon1;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1-exon1;Parent=cds346 +NC_011744 S-MART exon 395822 396478 . + . ID=cds346-exon2;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1-exon2;Parent=cds346 +NC_011744 S-MART exon 396479 396793 . + . ID=cds346-exon3;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1-exon3;Parent=cds346 +NC_011744 S-MART CDS 397101 401235 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394956.1;Dbxref=Genbank:YP_002394956.1,GeneID:7137666;ID=cds350;Name=YP_002394956.1--YP_002394955.1--YP_002394954.1--YP_002394953.1 +NC_011744 S-MART CDS 401372 401680 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394957.1;Dbxref=Genbank:YP_002394957.1,GeneID:7137667;ID=cds351;Name=YP_002394957.1 +NC_011744 S-MART CDS 402093 403457 . + . product=chaperone;transl_table=11;gbkey=CDS;protein_id=YP_002394958.1;Dbxref=Genbank:YP_002394958.1,GeneID:7137668;ID=cds352;Name=YP_002394958.1 +NC_011744 S-MART CDS 403968 405026 . + . product=outer membrane protein N;transl_table=11;gbkey=CDS;protein_id=YP_002394959.1;Dbxref=Genbank:YP_002394959.1,GeneID:7137669;ID=cds353;Name=YP_002394959.1 +NC_011744 S-MART CDS 405444 406049 . + . product=Fumarylacetoacetate %28FAA%29 hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394960.1;Dbxref=Genbank:YP_002394960.1,GeneID:7137670;ID=cds354;Name=YP_002394960.1 +NC_011744 S-MART CDS 406200 406832 . + . product=threonine efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002394961.1;Dbxref=Genbank:YP_002394961.1,GeneID:7137671;ID=cds355;Name=YP_002394961.1 +NC_011744 S-MART CDS 406960 408690 . - . product=phosphomannomutase;transl_table=11;gbkey=CDS;protein_id=YP_002394962.1;Dbxref=Genbank:YP_002394962.1,GeneID:7137672;ID=cds356;Name=YP_002394962.1 +NC_011744 S-MART CDS 409209 419043 . + . product=hypothetical protein;nbElements=11.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394973.1;Dbxref=Genbank:YP_002394973.1,GeneID:7137683;ID=cds367;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0 +NC_011744 S-MART exon 409209 412126 . + . ID=cds367-exon1;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon1;Parent=cds367 +NC_011744 S-MART exon 412138 412812 . + . ID=cds367-exon2;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon2;Parent=cds367 +NC_011744 S-MART exon 412851 413735 . + . ID=cds367-exon3;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon3;Parent=cds367 +NC_011744 S-MART exon 413858 414820 . + . ID=cds367-exon4;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon4;Parent=cds367 +NC_011744 S-MART exon 414861 415421 . + . ID=cds367-exon5;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon5;Parent=cds367 +NC_011744 S-MART exon 415571 417557 . + . ID=cds367-exon6;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon6;Parent=cds367 +NC_011744 S-MART exon 417691 418044 . + . ID=cds367-exon7;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon7;Parent=cds367 +NC_011744 S-MART exon 418162 418812 . + . ID=cds367-exon8;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon8;Parent=cds367 +NC_011744 S-MART exon 418825 419043 . + . ID=cds367-exon9;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0-exon9;Parent=cds367 +NC_011744 S-MART CDS 419340 419477 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394974.1;Dbxref=Genbank:YP_002394974.1,GeneID:7137684;ID=cds368;Name=YP_002394974.1 +NC_011744 S-MART CDS 419627 420304 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394975.1;Dbxref=Genbank:YP_002394975.1,GeneID:7137685;ID=cds369;Name=YP_002394975.1 +NC_011744 S-MART CDS 420608 420964 . - . product=transposase;transl_table=11;gbkey=CDS;protein_id=YP_002394976.1;Dbxref=Genbank:YP_002394976.1,GeneID:7137686;ID=cds370;Name=YP_002394976.1 +NC_011744 S-MART CDS 421035 421463 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394977.1;Dbxref=Genbank:YP_002394977.1,GeneID:7137687;ID=cds371;Name=YP_002394977.1 +NC_011744 S-MART CDS 421959 422592 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394979.1;Dbxref=Genbank:YP_002394979.1,GeneID:7137689;ID=cds373;Name=YP_002394979.1--YP_002394978.1 +NC_011744 S-MART CDS 423194 423962 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394981.1;Dbxref=Genbank:YP_002394981.1,GeneID:7137691;ID=cds375;Name=YP_002394981.1--YP_002394980.1 +NC_011744 S-MART CDS 424285 424524 . - . product=transposase;transl_table=11;gbkey=CDS;protein_id=YP_002394982.1;Dbxref=Genbank:YP_002394982.1,GeneID:7137692;ID=cds376;Name=YP_002394982.1 +NC_011744 S-MART CDS 424597 425118 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394983.1;Dbxref=Genbank:YP_002394983.1,GeneID:7137693;ID=cds377;Name=YP_002394983.1 +NC_011744 S-MART CDS 425805 426857 . + . product=phospho-2-dehydro-3-deoxyheptonate aldolase;transl_table=11;Note=catalyzes the formation of 3-deoxy-D-arabino-hept-2-ulosonate 7 phosphate from phosphoenolpyruvate and D-erythrose 4-phosphate%2C phenylalanine sensitive;gbkey=CDS;protein_id=YP_002394984.1;Dbxref=Genbank:YP_002394984.1,GeneID:7137694;ID=cds378;Name=YP_002394984.1 +NC_011744 S-MART CDS 426970 431237 . - . product=Small-conductance mechanosensitive channel;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394987.1;Dbxref=Genbank:YP_002394987.1,GeneID:7137697;ID=cds381;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1 +NC_011744 S-MART exon 426970 428394 . - . ID=cds381-exon1;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1-exon1;Parent=cds381 +NC_011744 S-MART exon 428410 429990 . - . ID=cds381-exon2;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1-exon2;Parent=cds381 +NC_011744 S-MART exon 430125 431237 . - . ID=cds381-exon3;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1-exon3;Parent=cds381 +NC_011744 S-MART CDS 431422 433473 . + . product=KtrB;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394989.1;Dbxref=Genbank:YP_002394989.1,GeneID:7137699;ID=cds383;Name=YP_002394989.1--YP_002394988.1 +NC_011744 S-MART exon 431422 432078 . + . ID=cds383-exon1;Name=YP_002394989.1--YP_002394988.1-exon1;Parent=cds383 +NC_011744 S-MART exon 432106 433473 . + . ID=cds383-exon2;Name=YP_002394989.1--YP_002394988.1-exon2;Parent=cds383 +NC_011744 S-MART CDS 433580 434722 . - . product=Methionine sulfoxide reductase;transl_table=11;gbkey=CDS;protein_id=YP_002394990.1;Dbxref=Genbank:YP_002394990.1,GeneID:7137700;ID=cds384;Name=YP_002394990.1 +NC_011744 S-MART CDS 434919 435317 . + . product=OsmC-like protein;transl_table=11;gbkey=CDS;protein_id=YP_002394991.1;Dbxref=Genbank:YP_002394991.1,GeneID:7137701;ID=cds385;Name=YP_002394991.1 +NC_011744 S-MART CDS 435461 436522 . - . product=outer membrane protein OmpA;transl_table=11;gbkey=CDS;protein_id=YP_002394992.1;Dbxref=Genbank:YP_002394992.1,GeneID:7137702;ID=cds386;Name=YP_002394992.1 +NC_011744 S-MART CDS 436874 440325 . - . product=2-aminoethylphosphonate--pyruvate transaminase;nbElements=3.000000;transl_table=11;Note=catalyzes the formation of phosphonoacetaldehyde from 2-aminoethylphosphonate and pyruvate;gbkey=CDS;protein_id=YP_002394995.1;Dbxref=Genbank:YP_002394995.1,GeneID:7137705;ID=cds389;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1 +NC_011744 S-MART exon 436874 437692 . - . ID=cds389-exon1;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1-exon1;Parent=cds389 +NC_011744 S-MART exon 437777 440325 . - . ID=cds389-exon2;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1-exon2;Parent=cds389 +NC_011744 S-MART CDS 440720 443272 . + . product=ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394997.1;Dbxref=Genbank:YP_002394997.1,GeneID:7137707;ID=cds391;Name=YP_002394997.1--YP_002394996.1 +NC_011744 S-MART exon 440720 441730 . + . ID=cds391-exon1;Name=YP_002394997.1--YP_002394996.1-exon1;Parent=cds391 +NC_011744 S-MART exon 441851 443272 . + . ID=cds391-exon2;Name=YP_002394997.1--YP_002394996.1-exon2;Parent=cds391 +NC_011744 S-MART CDS 443500 448153 . + . product=permease of the drug%2Fmetabolite transporter %28DMT%29 superfamily;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395001.1;Dbxref=Genbank:YP_002395001.1,GeneID:7137711;ID=cds395;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1 +NC_011744 S-MART exon 443500 444609 . + . ID=cds395-exon1;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon1;Parent=cds395 +NC_011744 S-MART exon 444616 446340 . + . ID=cds395-exon2;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon2;Parent=cds395 +NC_011744 S-MART exon 446409 447113 . + . ID=cds395-exon3;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon3;Parent=cds395 +NC_011744 S-MART exon 447251 448153 . + . ID=cds395-exon4;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1-exon4;Parent=cds395 +NC_011744 S-MART CDS 448354 453436 . + . product=6-phosphogluconate dehydrogenase;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395006.1;Dbxref=Genbank:YP_002395006.1,GeneID:7137716;ID=cds400;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1 +NC_011744 S-MART exon 448354 449370 . + . ID=cds400-exon1;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon1;Parent=cds400 +NC_011744 S-MART exon 449436 451308 . + . ID=cds400-exon2;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon2;Parent=cds400 +NC_011744 S-MART exon 451427 451924 . + . ID=cds400-exon3;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon3;Parent=cds400 +NC_011744 S-MART exon 451928 453436 . + . ID=cds400-exon4;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1-exon4;Parent=cds400 +NC_011744 S-MART CDS 453913 454644 . + . product=peptidase E;transl_table=11;Note=alpha-aspartyl dipeptidase%3B catalyzes the hydrolysis of dipeptides with an N-terminal aspartate residue%3B belongs to peptidase S51 family;gbkey=CDS;protein_id=YP_002395007.1;Dbxref=Genbank:YP_002395007.1,GeneID:7137717;ID=cds401;Name=YP_002395007.1 +NC_011744 S-MART CDS 454955 455956 . + . product=HTH-type transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395008.1;Dbxref=Genbank:YP_002395008.1,GeneID:7137718;ID=cds402;Name=YP_002395008.1 +NC_011744 S-MART CDS 456071 456853 . - . product=Siderophore-interacting protein ViuB;transl_table=11;gbkey=CDS;protein_id=YP_002395009.1;Dbxref=Genbank:YP_002395009.1,GeneID:7137719;ID=cds403;Name=YP_002395009.1 +NC_011744 S-MART CDS 457057 458580 . - . product=Dipeptide%2Ftripeptide permease;transl_table=11;gbkey=CDS;protein_id=YP_002395010.1;Dbxref=Genbank:YP_002395010.1,GeneID:7137720;ID=cds404;Name=YP_002395010.1 +NC_011744 S-MART CDS 458945 460315 . - . product=L-serine dehydratase;transl_table=11;gbkey=CDS;protein_id=YP_002395011.1;Dbxref=Genbank:YP_002395011.1,GeneID:7137721;ID=cds405;Name=YP_002395011.1 +NC_011744 S-MART CDS 460691 461569 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395012.1;Dbxref=Genbank:YP_002395012.1,GeneID:7137722;ID=cds406;Name=YP_002395012.1 +NC_011744 S-MART CDS 461764 462018 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395013.1;Dbxref=Genbank:YP_002395013.1,GeneID:7137723;ID=cds407;Name=YP_002395013.1 +NC_011744 S-MART CDS 462389 462907 . + . product=MutT%2FNUDIX protein;transl_table=11;gbkey=CDS;protein_id=YP_002395014.1;Dbxref=Genbank:YP_002395014.1,GeneID:7137724;ID=cds408;Name=YP_002395014.1 +NC_011744 S-MART CDS 465520 465708 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395016.1;Dbxref=Genbank:YP_002395016.1,GeneID:7137726;ID=cds410;Name=YP_002395016.1 +NC_011744 S-MART CDS 463412 466069 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395017.1;Dbxref=Genbank:YP_002395017.1,GeneID:7137727;ID=cds411;Name=YP_002395017.1--YP_002395015.1 +NC_011744 S-MART exon 463412 465523 . + . ID=cds411-exon1;Name=YP_002395017.1--YP_002395015.1-exon1;Parent=cds411 +NC_011744 S-MART exon 465536 466069 . + . ID=cds411-exon2;Name=YP_002395017.1--YP_002395015.1-exon2;Parent=cds411 +NC_011744 S-MART CDS 466296 472210 . + . product=metalloprotease;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395021.1;Dbxref=Genbank:YP_002395021.1,GeneID:7137731;ID=cds415;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1 +NC_011744 S-MART exon 466296 469837 . + . ID=cds415-exon1;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1-exon1;Parent=cds415 +NC_011744 S-MART exon 469967 470806 . + . ID=cds415-exon2;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1-exon2;Parent=cds415 +NC_011744 S-MART exon 470954 472210 . + . ID=cds415-exon3;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1-exon3;Parent=cds415 +NC_011744 S-MART CDS 472311 473616 . - . product=Glycine cleavage system transcriptional activator %28Gcv operon activator%29;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395023.1;Dbxref=Genbank:YP_002395023.1,GeneID:7137733;ID=cds417;Name=YP_002395023.1--YP_002395022.1 +NC_011744 S-MART CDS 473708 474718 . + . product=drug%2Fmetabolite transporter permease;transl_table=11;gbkey=CDS;protein_id=YP_002395024.1;Dbxref=Genbank:YP_002395024.1,GeneID:7137734;ID=cds418;Name=YP_002395024.1 +NC_011744 S-MART CDS 474756 477779 . - . product=chemotactic transducer-related protein;transl_table=11;gbkey=CDS;protein_id=YP_002395025.1;Dbxref=Genbank:YP_002395025.1,GeneID:7137735;ID=cds419;Name=YP_002395025.1 +NC_011744 S-MART CDS 478058 478804 . + . product=hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002395026.1;Dbxref=Genbank:YP_002395026.1,GeneID:7137736;ID=cds420;Name=YP_002395026.1 +NC_011744 S-MART CDS 478976 479371 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395027.1;Dbxref=Genbank:YP_002395027.1,GeneID:7137737;ID=cds421;Name=YP_002395027.1 +NC_011744 S-MART CDS 479698 481695 . + . product=Iron-regulated membrane protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395029.1;Dbxref=Genbank:YP_002395029.1,GeneID:7137739;ID=cds423;Name=YP_002395029.1--YP_002395028.1 +NC_011744 S-MART exon 479698 480048 . + . ID=cds423-exon1;Name=YP_002395029.1--YP_002395028.1-exon1;Parent=cds423 +NC_011744 S-MART exon 480160 481695 . + . ID=cds423-exon2;Name=YP_002395029.1--YP_002395028.1-exon2;Parent=cds423 +NC_011744 S-MART CDS 481826 483189 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395031.1;Dbxref=Genbank:YP_002395031.1,GeneID:7137741;ID=cds425;Name=YP_002395031.1--YP_002395030.1 +NC_011744 S-MART CDS 483488 484627 . + . product=Permease of the major facilitator superfamily;transl_table=11;gbkey=CDS;protein_id=YP_002395032.1;Dbxref=Genbank:YP_002395032.1,GeneID:7137742;ID=cds426;Name=YP_002395032.1 +NC_011744 S-MART CDS 484944 487278 . + . product=L-threonine 3-dehydrogenase;nbElements=2.000000;transl_table=11;Note=converts threonine and NAD to 1%2C2-amino-3-oxobutanoate and NADH%3B functions in threonine catabolism;gbkey=CDS;protein_id=YP_002395034.1;Dbxref=Genbank:YP_002395034.1,GeneID:7137744;ID=cds428;Name=YP_002395034.1--YP_002395033.1 +NC_011744 S-MART exon 484944 486137 . + . ID=cds428-exon1;Name=YP_002395034.1--YP_002395033.1-exon1;Parent=cds428 +NC_011744 S-MART exon 486247 487278 . + . ID=cds428-exon2;Name=YP_002395034.1--YP_002395033.1-exon2;Parent=cds428 +NC_011744 S-MART CDS 487458 488681 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395035.1;Dbxref=Genbank:YP_002395035.1,GeneID:7137745;ID=cds429;Name=YP_002395035.1 +NC_011744 S-MART CDS 488848 489003 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395036.1;Dbxref=Genbank:YP_002395036.1,GeneID:7137746;ID=cds430;Name=YP_002395036.1 +NC_011744 S-MART CDS 489208 491805 . - . product=NAD%28P%29H oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395038.1;Dbxref=Genbank:YP_002395038.1,GeneID:7137748;ID=cds432;Name=YP_002395038.1--YP_002395037.1 +NC_011744 S-MART exon 489208 491133 . - . ID=cds432-exon1;Name=YP_002395038.1--YP_002395037.1-exon1;Parent=cds432 +NC_011744 S-MART exon 491137 491805 . - . ID=cds432-exon2;Name=YP_002395038.1--YP_002395037.1-exon2;Parent=cds432 +NC_011744 S-MART CDS 492055 493131 . + . product=threonine aldolase;transl_table=11;gbkey=CDS;protein_id=YP_002395039.1;Dbxref=Genbank:YP_002395039.1,GeneID:7137749;ID=cds433;Name=YP_002395039.1 +NC_011744 S-MART CDS 493609 494043 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395040.1;Dbxref=Genbank:YP_002395040.1,GeneID:7137750;ID=cds434;Name=YP_002395040.1 +NC_011744 S-MART CDS 494164 495087 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395041.1;Dbxref=Genbank:YP_002395041.1,GeneID:7137751;ID=cds435;Name=YP_002395041.1 +NC_011744 S-MART CDS 495325 496473 . - . product=alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395042.1;Dbxref=Genbank:YP_002395042.1,GeneID:7137752;ID=cds436;Name=YP_002395042.1 +NC_011744 S-MART CDS 496712 496897 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395043.1;Dbxref=Genbank:YP_002395043.1,GeneID:7137753;ID=cds437;Name=YP_002395043.1 +NC_011744 S-MART CDS 497111 497785 . + . product=nucleotidase;transl_table=11;Note=manganese-dependent 5%27-nucleotidase%3B specific for 5%27-UMP%2C 5%27-dUMP%2C and 5%27-dTMP%3B member of haloacid dehalogenase %28HAD%29-like hydrolase superfamily;gbkey=CDS;protein_id=YP_002395044.1;Dbxref=Genbank:YP_002395044.1,GeneID:7137754;ID=cds438;Name=YP_002395044.1 +NC_011744 S-MART CDS 497965 498897 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395045.1;Dbxref=Genbank:YP_002395045.1,GeneID:7137755;ID=cds439;Name=YP_002395045.1 +NC_011744 S-MART CDS 498928 502047 . - . product=cation efflux system component;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395047.1;Dbxref=Genbank:YP_002395047.1,GeneID:7137757;ID=cds441;Name=YP_002395047.1--YP_002395046.1 +NC_011744 S-MART exon 498928 501090 . - . ID=cds441-exon1;Name=YP_002395047.1--YP_002395046.1-exon1;Parent=cds441 +NC_011744 S-MART exon 501151 502047 . - . ID=cds441-exon2;Name=YP_002395047.1--YP_002395046.1-exon2;Parent=cds441 +NC_011744 S-MART CDS 502409 502759 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395048.1;Dbxref=Genbank:YP_002395048.1,GeneID:7137758;ID=cds442;Name=YP_002395048.1 +NC_011744 S-MART CDS 502821 503699 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395049.1;Dbxref=Genbank:YP_002395049.1,GeneID:7137759;ID=cds443;Name=YP_002395049.1 +NC_011744 S-MART CDS 503849 504460 . + . product=methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395050.1;Dbxref=Genbank:YP_002395050.1,GeneID:7137760;ID=cds444;Name=YP_002395050.1 +NC_011744 S-MART CDS 504872 507401 . + . product=pyruvate formate-lyase activating enzyme;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395052.1;Dbxref=Genbank:YP_002395052.1,GeneID:7137762;ID=cds446;Name=YP_002395052.1--YP_002395051.1 +NC_011744 S-MART exon 504872 506437 . + . ID=cds446-exon1;Name=YP_002395052.1--YP_002395051.1-exon1;Parent=cds446 +NC_011744 S-MART exon 506514 507401 . + . ID=cds446-exon2;Name=YP_002395052.1--YP_002395051.1-exon2;Parent=cds446 +NC_011744 S-MART CDS 507467 510462 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395056.1;Dbxref=Genbank:YP_002395056.1,GeneID:7137766;ID=cds450;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1 +NC_011744 S-MART exon 507467 508393 . - . ID=cds450-exon1;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon1;Parent=cds450 +NC_011744 S-MART exon 508432 509721 . - . ID=cds450-exon2;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon2;Parent=cds450 +NC_011744 S-MART exon 509859 510179 . - . ID=cds450-exon3;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon3;Parent=cds450 +NC_011744 S-MART exon 510301 510462 . - . ID=cds450-exon4;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1-exon4;Parent=cds450 +NC_011744 S-MART CDS 510815 513001 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395057.1;Dbxref=Genbank:YP_002395057.1,GeneID:7137767;ID=cds451;Name=YP_002395057.1 +NC_011744 S-MART CDS 513179 515736 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395059.1;Dbxref=Genbank:YP_002395059.1,GeneID:7137769;ID=cds453;Name=YP_002395059.1--YP_002395058.1 +NC_011744 S-MART exon 513179 515254 . + . ID=cds453-exon1;Name=YP_002395059.1--YP_002395058.1-exon1;Parent=cds453 +NC_011744 S-MART exon 515386 515736 . + . ID=cds453-exon2;Name=YP_002395059.1--YP_002395058.1-exon2;Parent=cds453 +NC_011744 S-MART CDS 515923 519015 . - . product=transaldolase B;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395061.1;Dbxref=Genbank:YP_002395061.1,GeneID:7137771;ID=cds455;Name=YP_002395061.1--YP_002395060.1 +NC_011744 S-MART exon 515923 517926 . - . ID=cds455-exon1;Name=YP_002395061.1--YP_002395060.1-exon1;Parent=cds455 +NC_011744 S-MART exon 518005 519015 . - . ID=cds455-exon2;Name=YP_002395061.1--YP_002395060.1-exon2;Parent=cds455 +NC_011744 S-MART CDS 519415 520407 . + . product=Transcriptional regulator%2C SorC family;transl_table=11;gbkey=CDS;protein_id=YP_002395062.1;Dbxref=Genbank:YP_002395062.1,GeneID:7137772;ID=cds456;Name=YP_002395062.1 +NC_011744 S-MART CDS 520677 523694 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395063.1;Dbxref=Genbank:YP_002395063.1,GeneID:7137773;ID=cds457;Name=YP_002395063.1 +NC_011744 S-MART CDS 524243 525127 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395064.1;Dbxref=Genbank:YP_002395064.1,GeneID:7137774;ID=cds458;Name=YP_002395064.1 +NC_011744 S-MART CDS 525128 525586 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395065.1;Dbxref=Genbank:YP_002395065.1,GeneID:7137775;ID=cds459;Name=YP_002395065.1 +NC_011744 S-MART CDS 525798 536990 . + . product=hypothetical protein;nbElements=13.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395078.1;Dbxref=Genbank:YP_002395078.1,GeneID:7137788;ID=cds472;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0 +NC_011744 S-MART exon 525798 526016 . + . ID=cds472-exon1;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon1;Parent=cds472 +NC_011744 S-MART exon 526071 528635 . + . ID=cds472-exon2;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon2;Parent=cds472 +NC_011744 S-MART exon 528638 535104 . + . ID=cds472-exon3;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon3;Parent=cds472 +NC_011744 S-MART exon 535106 536422 . + . ID=cds472-exon4;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon4;Parent=cds472 +NC_011744 S-MART exon 536424 536990 . + . ID=cds472-exon5;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0-exon5;Parent=cds472 +NC_011744 S-MART CDS 537128 539515 . - . product=signal transduction protein;transl_table=11;gbkey=CDS;protein_id=YP_002395079.1;Dbxref=Genbank:YP_002395079.1,GeneID:7137789;ID=cds473;Name=YP_002395079.1 +NC_011744 S-MART CDS 539867 541156 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395082.1;Dbxref=Genbank:YP_002395082.1,GeneID:7137792;ID=cds476;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1 +NC_011744 S-MART exon 539867 540730 . - . ID=cds476-exon1;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1-exon1;Parent=cds476 +NC_011744 S-MART exon 540751 541156 . - . ID=cds476-exon2;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1-exon2;Parent=cds476 +NC_011744 S-MART CDS 541314 544200 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395084.1;Dbxref=Genbank:YP_002395084.1,GeneID:7137794;ID=cds478;Name=YP_002395084.1--YP_002395083.1 +NC_011744 S-MART CDS 544457 546454 . - . product=Molybdopterin biosynthesis protein moeA;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395086.1;Dbxref=Genbank:YP_002395086.1,GeneID:7137796;ID=cds480;Name=YP_002395086.1--YP_002395085.1 +NC_011744 S-MART exon 544457 545212 . - . ID=cds480-exon1;Name=YP_002395086.1--YP_002395085.1-exon1;Parent=cds480 +NC_011744 S-MART exon 545219 546454 . - . ID=cds480-exon2;Name=YP_002395086.1--YP_002395085.1-exon2;Parent=cds480 +NC_011744 S-MART CDS 546671 547324 . + . product=GTP cyclohydrolase I;transl_table=11;Note=involved in the first step of tetrahydrofolate biosynthesis%3B catalyzes the formation of formate and 2-amino-4-hydroxy-6-%28erythro-1%2C2%2C3-trihydroxypropyl%29dihydropteridine triphosphate from GTP and water%3B forms a homopolymer;gbkey=CDS;protein_id=YP_002395087.1;Dbxref=Genbank:YP_002395087.1,GeneID:7137797;ID=cds481;Name=YP_002395087.1 +NC_011744 S-MART CDS 547390 548886 . - . product=dipeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395088.1;Dbxref=Genbank:YP_002395088.1,GeneID:7137798;ID=cds482;Name=YP_002395088.1 +NC_011744 S-MART CDS 549372 550810 . - . product=cold-shock protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395091.1;Dbxref=Genbank:YP_002395091.1,GeneID:7137801;ID=cds485;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1 +NC_011744 S-MART exon 549372 550485 . - . ID=cds485-exon1;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1-exon1;Parent=cds485 +NC_011744 S-MART exon 550601 550810 . - . ID=cds485-exon2;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1-exon2;Parent=cds485 +NC_011744 S-MART CDS 551259 552344 . - . product=glucose dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395092.1;Dbxref=Genbank:YP_002395092.1,GeneID:7137802;ID=cds486;Name=YP_002395092.1 +NC_011744 S-MART CDS 552642 553835 . + . product=Multidrug resistance protein mdtL;transl_table=11;gbkey=CDS;protein_id=YP_002395093.1;Dbxref=Genbank:YP_002395093.1,GeneID:7137803;ID=cds487;Name=YP_002395093.1 +NC_011744 S-MART CDS 553978 555599 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395095.1;Dbxref=Genbank:YP_002395095.1,GeneID:7137805;ID=cds489;Name=YP_002395095.1--YP_002395094.1 +NC_011744 S-MART exon 553978 554763 . - . ID=cds489-exon1;Name=YP_002395095.1--YP_002395094.1-exon1;Parent=cds489 +NC_011744 S-MART exon 554841 555599 . - . ID=cds489-exon2;Name=YP_002395095.1--YP_002395094.1-exon2;Parent=cds489 +NC_011744 S-MART CDS 555855 556727 . + . product=Transcription activator;transl_table=11;gbkey=CDS;protein_id=YP_002395096.1;Dbxref=Genbank:YP_002395096.1,GeneID:7137806;ID=cds490;Name=YP_002395096.1 +NC_011744 S-MART CDS 556974 562141 . + . product=Fe3%2B-hydroxamate ABC transporter permease;nbElements=3.000000;transl_table=11;Note=part of the FhuBCD ATP-dependent iron %28III%29 hydroxamate transporter involved in the high-affinity transport of Fe%283%2B%29-ferrichrome;gbkey=CDS;protein_id=YP_002395099.1;Dbxref=Genbank:YP_002395099.1,GeneID:7137809;ID=cds493;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1 +NC_011744 S-MART exon 556974 559103 . + . ID=cds493-exon1;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1-exon1;Parent=cds493 +NC_011744 S-MART exon 559194 560144 . + . ID=cds493-exon2;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1-exon2;Parent=cds493 +NC_011744 S-MART exon 560147 562141 . + . ID=cds493-exon3;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1-exon3;Parent=cds493 +NC_011744 S-MART CDS 562394 565179 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395102.1;Dbxref=Genbank:YP_002395102.1,GeneID:7137812;ID=cds496;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1 +NC_011744 S-MART exon 562394 563206 . + . ID=cds496-exon1;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1-exon1;Parent=cds496 +NC_011744 S-MART exon 563300 565179 . + . ID=cds496-exon2;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1-exon2;Parent=cds496 +NC_011744 S-MART CDS 565513 566625 . + . product=NADH oxidase;transl_table=11;gbkey=CDS;protein_id=YP_002395103.1;Dbxref=Genbank:YP_002395103.1,GeneID:7137813;ID=cds497;Name=YP_002395103.1 +NC_011744 S-MART CDS 567046 567681 . + . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395104.1;Dbxref=Genbank:YP_002395104.1,GeneID:7137814;ID=cds498;Name=YP_002395104.1 +NC_011744 S-MART CDS 567834 573035 . + . product=ABC transporter;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395107.1;Dbxref=Genbank:YP_002395107.1,GeneID:7137817;ID=cds501;Name=YP_002395107.1--YP_002395106.1--YP_002395105.1 +NC_011744 S-MART CDS 573132 581666 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395108.1;Dbxref=Genbank:YP_002395108.1,GeneID:7137818;ID=cds502;Name=YP_002395108.1 +NC_011744 S-MART CDS 581891 590044 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395114.1;Dbxref=Genbank:YP_002395114.1,GeneID:7137824;ID=cds508;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1 +NC_011744 S-MART exon 581891 582355 . + . ID=cds508-exon1;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon1;Parent=cds508 +NC_011744 S-MART exon 582449 583909 . + . ID=cds508-exon2;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon2;Parent=cds508 +NC_011744 S-MART exon 583921 588770 . + . ID=cds508-exon3;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon3;Parent=cds508 +NC_011744 S-MART exon 588877 589446 . + . ID=cds508-exon4;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon4;Parent=cds508 +NC_011744 S-MART exon 589559 590044 . + . ID=cds508-exon5;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1-exon5;Parent=cds508 +NC_011744 S-MART CDS 590206 590463 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395115.1;Dbxref=Genbank:YP_002395115.1,GeneID:7137825;ID=cds509;Name=YP_002395115.1 +NC_011744 S-MART tRNA 590718 590976 . - . product=tRNA-Gly;nbElements=3.000000;gbkey=tRNA;Dbxref=GeneID:7138809;ID=rna4;Name=rna4--rna3--YP_002395116.1 +NC_011744 S-MART exon 590718 590867 . - . ID=rna4-exon1;Name=rna4--rna3--YP_002395116.1-exon1;Parent=rna4 +NC_011744 S-MART exon 590902 590976 . - . ID=rna4-exon2;Name=rna4--rna3--YP_002395116.1-exon2;Parent=rna4 +NC_011744 S-MART CDS 591502 592665 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395117.1;Dbxref=Genbank:YP_002395117.1,GeneID:7138810;ID=cds511;Name=YP_002395117.1 +NC_011744 S-MART CDS 592846 594812 . + . product=acetyltransferase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395121.1;Dbxref=Genbank:YP_002395121.1,GeneID:7137831;ID=cds515;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1 +NC_011744 S-MART exon 592846 593184 . + . ID=cds515-exon1;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon1;Parent=cds515 +NC_011744 S-MART exon 593284 593706 . + . ID=cds515-exon2;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon2;Parent=cds515 +NC_011744 S-MART exon 593754 594248 . + . ID=cds515-exon3;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon3;Parent=cds515 +NC_011744 S-MART exon 594342 594812 . + . ID=cds515-exon4;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1-exon4;Parent=cds515 +NC_011744 S-MART CDS 594859 595968 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395122.1;Dbxref=Genbank:YP_002395122.1,GeneID:7137832;ID=cds516;Name=YP_002395122.1 +NC_011744 S-MART CDS 595989 597995 . + . product=Enterobactin receptor;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 12065481%3B Product type rc : receptor;gbkey=CDS;protein_id=YP_002395123.1;Dbxref=Genbank:YP_002395123.1,GeneID:7137833;ID=cds517;Name=YP_002395123.1 +NC_011744 S-MART CDS 598168 599112 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395124.1;Dbxref=Genbank:YP_002395124.1,GeneID:7137834;ID=cds518;Name=YP_002395124.1 +NC_011744 S-MART CDS 599305 600231 . - . product=ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395125.1;Dbxref=Genbank:YP_002395125.1,GeneID:7137835;ID=cds519;Name=YP_002395125.1 +NC_011744 S-MART CDS 600409 602774 . - . product=ABC transporter ATP-binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395128.1;Dbxref=Genbank:YP_002395128.1,GeneID:7137838;ID=cds522;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1 +NC_011744 S-MART exon 600409 601218 . - . ID=cds522-exon1;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1-exon1;Parent=cds522 +NC_011744 S-MART exon 601231 602774 . - . ID=cds522-exon2;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1-exon2;Parent=cds522 +NC_011744 S-MART CDS 603010 604158 . - . product=iron-containing alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395129.1;Dbxref=Genbank:YP_002395129.1,GeneID:7137839;ID=cds523;Name=YP_002395129.1 +NC_011744 S-MART CDS 604352 605236 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395130.1;Dbxref=Genbank:YP_002395130.1,GeneID:7137840;ID=cds524;Name=YP_002395130.1 +NC_011744 S-MART CDS 605901 607148 . + . product=endoribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395131.1;Dbxref=Genbank:YP_002395131.1,GeneID:7137841;ID=cds525;Name=YP_002395131.1 +NC_011744 S-MART CDS 607390 607992 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395133.1;Dbxref=Genbank:YP_002395133.1,GeneID:7137843;ID=cds527;Name=YP_002395133.1--YP_002395132.1 +NC_011744 S-MART exon 607390 607746 . + . ID=cds527-exon1;Name=YP_002395133.1--YP_002395132.1-exon1;Parent=cds527 +NC_011744 S-MART exon 607840 607992 . + . ID=cds527-exon2;Name=YP_002395133.1--YP_002395132.1-exon2;Parent=cds527 +NC_011744 S-MART CDS 608947 611939 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395135.1;Dbxref=Genbank:YP_002395135.1,GeneID:7137845;ID=cds529;Name=YP_002395135.1--YP_002395134.1 +NC_011744 S-MART exon 608947 610356 . + . ID=cds529-exon1;Name=YP_002395135.1--YP_002395134.1-exon1;Parent=cds529 +NC_011744 S-MART exon 610485 611939 . + . ID=cds529-exon2;Name=YP_002395135.1--YP_002395134.1-exon2;Parent=cds529 +NC_011744 S-MART CDS 612150 612668 . + . product=acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395136.1;Dbxref=Genbank:YP_002395136.1,GeneID:7137846;ID=cds530;Name=YP_002395136.1 +NC_011744 S-MART CDS 612782 613228 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395137.1;Dbxref=Genbank:YP_002395137.1,GeneID:7137847;ID=cds531;Name=YP_002395137.1 +NC_011744 S-MART CDS 613510 613872 . + . product=translation initiation inhibitor;transl_table=11;gbkey=CDS;protein_id=YP_002395138.1;Dbxref=Genbank:YP_002395138.1,GeneID:7137848;ID=cds532;Name=YP_002395138.1 +NC_011744 S-MART CDS 614016 615650 . - . product=glycine betaine transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395139.1;Dbxref=Genbank:YP_002395139.1,GeneID:7137849;ID=cds533;Name=YP_002395139.1 +NC_011744 S-MART CDS 616053 619211 . + . product=chitinase;transl_table=11;gbkey=CDS;protein_id=YP_002395140.1;Dbxref=Genbank:YP_002395140.1,GeneID:7137850;ID=cds534;Name=YP_002395140.1 +NC_011744 S-MART CDS 619498 620967 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395141.1;Dbxref=Genbank:YP_002395141.1,GeneID:7137851;ID=cds535;Name=YP_002395141.1 +NC_011744 S-MART CDS 621058 621312 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395142.1;Dbxref=Genbank:YP_002395142.1,GeneID:7137852;ID=cds536;Name=YP_002395142.1 +NC_011744 S-MART CDS 621581 622165 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395143.1;Dbxref=Genbank:YP_002395143.1,GeneID:7137853;ID=cds537;Name=YP_002395143.1 +NC_011744 S-MART CDS 622344 623528 . + . product=D-alanyl-D-alanine carboxypeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395144.1;Dbxref=Genbank:YP_002395144.1,GeneID:7137854;ID=cds538;Name=YP_002395144.1 +NC_011744 S-MART CDS 623726 624019 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395145.1;Dbxref=Genbank:YP_002395145.1,GeneID:7137855;ID=cds539;Name=YP_002395145.1 +NC_011744 S-MART CDS 624071 624967 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395146.1;Dbxref=Genbank:YP_002395146.1,GeneID:7137856;ID=cds540;Name=YP_002395146.1 +NC_011744 S-MART CDS 625084 625464 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395147.1;Dbxref=Genbank:YP_002395147.1,GeneID:7137857;ID=cds541;Name=YP_002395147.1 +NC_011744 S-MART CDS 625545 631388 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395154.1;Dbxref=Genbank:YP_002395154.1,GeneID:7137864;ID=cds548;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0 +NC_011744 S-MART exon 625545 627236 . - . ID=cds548-exon1;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon1;Parent=cds548 +NC_011744 S-MART exon 627379 627999 . - . ID=cds548-exon2;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon2;Parent=cds548 +NC_011744 S-MART exon 628034 629065 . - . ID=cds548-exon3;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon3;Parent=cds548 +NC_011744 S-MART exon 629203 629856 . - . ID=cds548-exon4;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon4;Parent=cds548 +NC_011744 S-MART exon 629964 630437 . - . ID=cds548-exon5;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon5;Parent=cds548 +NC_011744 S-MART exon 630480 631106 . - . ID=cds548-exon6;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon6;Parent=cds548 +NC_011744 S-MART exon 631230 631388 . - . ID=cds548-exon7;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0-exon7;Parent=cds548 +NC_011744 S-MART CDS 631360 631971 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395155.1;Dbxref=Genbank:YP_002395155.1,GeneID:7137865;ID=cds549;Name=YP_002395155.1 +NC_011744 S-MART CDS 632080 634121 . - . product=anaerobic nitric oxide reductase transcriptional regulator;nbElements=2.000000;transl_table=11;Note=Required for the expression of anaerobic nitric oxide %28NO%29 reductase%3B acts as a transcriptional activator for the norVW operon;gbkey=CDS;protein_id=YP_002395157.1;Dbxref=Genbank:YP_002395157.1,GeneID:7137867;ID=cds551;Name=YP_002395157.1--YP_002395156.1 +NC_011744 S-MART exon 632080 632517 . - . ID=cds551-exon1;Name=YP_002395157.1--YP_002395156.1-exon1;Parent=cds551 +NC_011744 S-MART exon 632529 634121 . - . ID=cds551-exon2;Name=YP_002395157.1--YP_002395156.1-exon2;Parent=cds551 +NC_011744 S-MART CDS 634471 635667 . + . product=nitric oxide dioxygenase;transl_table=11;Note=flavohemoprotein%3B catalyzes the formation of nitrate from nitric oxide%3B can also catalyze the reduction of dihydropteridine;gbkey=CDS;protein_id=YP_002395158.1;Dbxref=Genbank:YP_002395158.1,GeneID:7137868;ID=cds552;Name=YP_002395158.1 +NC_011744 S-MART CDS 635827 636852 . - . product=Tellurite resistance protein;transl_table=11;gbkey=CDS;protein_id=YP_002395159.1;Dbxref=Genbank:YP_002395159.1,GeneID:7137869;ID=cds553;Name=YP_002395159.1 +NC_011744 S-MART CDS 637090 638535 . - . product=chloride channel protein;transl_table=11;Note=Acts as an electrical shunt for an outwardly-directed proton pump that is linked to amino acid decarboxylation;gbkey=CDS;protein_id=YP_002395160.1;Dbxref=Genbank:YP_002395160.1,GeneID:7137870;ID=cds554;Name=YP_002395160.1 +NC_011744 S-MART CDS 639037 640020 . + . product=cobalamin synthesis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395161.1;Dbxref=Genbank:YP_002395161.1,GeneID:7137871;ID=cds555;Name=YP_002395161.1 +NC_011744 S-MART CDS 640203 641489 . + . product=Superfamily II DNA and RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002395162.1;Dbxref=Genbank:YP_002395162.1,GeneID:7137872;ID=cds556;Name=YP_002395162.1 +NC_011744 S-MART CDS 641777 642274 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395163.1;Dbxref=Genbank:YP_002395163.1,GeneID:7137873;ID=cds557;Name=YP_002395163.1 +NC_011744 S-MART CDS 642526 644553 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395164.1;Dbxref=Genbank:YP_002395164.1,GeneID:7137874;ID=cds558;Name=YP_002395164.1 +NC_011744 S-MART CDS 644806 645147 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395165.1;Dbxref=Genbank:YP_002395165.1,GeneID:7137875;ID=cds559;Name=YP_002395165.1 +NC_011744 S-MART CDS 645401 649161 . + . product=two-component sensor histidine kinase;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395170.1;Dbxref=Genbank:YP_002395170.1,GeneID:7137880;ID=cds564;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1 +NC_011744 S-MART exon 645401 646217 . + . ID=cds564-exon1;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon1;Parent=cds564 +NC_011744 S-MART exon 646227 646907 . + . ID=cds564-exon2;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon2;Parent=cds564 +NC_011744 S-MART exon 646990 647721 . + . ID=cds564-exon3;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon3;Parent=cds564 +NC_011744 S-MART exon 647788 649161 . + . ID=cds564-exon4;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1-exon4;Parent=cds564 +NC_011744 S-MART CDS 650699 650857 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395173.1;Dbxref=Genbank:YP_002395173.1,GeneID:7137883;ID=cds567;Name=YP_002395173.1 +NC_011744 S-MART CDS 649298 650877 . - . product=Permease of the drug metabolite transporter %28DMT%29 superfamily;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395172.1;Dbxref=Genbank:YP_002395172.1,GeneID:7137882;ID=cds566;Name=YP_002395172.1--YP_002395171.1 +NC_011744 S-MART exon 649298 649801 . - . ID=cds566-exon1;Name=YP_002395172.1--YP_002395171.1-exon1;Parent=cds566 +NC_011744 S-MART exon 649939 650877 . - . ID=cds566-exon2;Name=YP_002395172.1--YP_002395171.1-exon2;Parent=cds566 +NC_011744 S-MART CDS 651018 651476 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395174.1;Dbxref=Genbank:YP_002395174.1,GeneID:7137884;ID=cds568;Name=YP_002395174.1 +NC_011744 S-MART CDS 651713 651955 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395175.1;Dbxref=Genbank:YP_002395175.1,GeneID:7137885;ID=cds569;Name=YP_002395175.1 +NC_011744 S-MART CDS 652234 652809 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395176.1;Dbxref=Genbank:YP_002395176.1,GeneID:7137886;ID=cds570;Name=YP_002395176.1 +NC_011744 S-MART CDS 652906 653586 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395177.1;Dbxref=Genbank:YP_002395177.1,GeneID:7137887;ID=cds571;Name=YP_002395177.1 +NC_011744 S-MART CDS 654117 658459 . + . product=Polyhydroxyalkanoic acid synthase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395181.1;Dbxref=Genbank:YP_002395181.1,GeneID:7137891;ID=cds575;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1 +NC_011744 S-MART exon 654117 654857 . + . ID=cds575-exon1;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon1;Parent=cds575 +NC_011744 S-MART exon 654884 656095 . + . ID=cds575-exon2;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon2;Parent=cds575 +NC_011744 S-MART exon 656227 656574 . + . ID=cds575-exon3;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon3;Parent=cds575 +NC_011744 S-MART exon 656648 658459 . + . ID=cds575-exon4;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1-exon4;Parent=cds575 +NC_011744 S-MART CDS 658717 659679 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395182.1;Dbxref=Genbank:YP_002395182.1,GeneID:7137892;ID=cds576;Name=YP_002395182.1 +NC_011744 S-MART CDS 659861 667587 . - . product=outer membrane transport protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395187.1;Dbxref=Genbank:YP_002395187.1,GeneID:7137897;ID=cds581;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1 +NC_011744 S-MART exon 659861 661168 . - . ID=cds581-exon1;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1-exon1;Parent=cds581 +NC_011744 S-MART exon 661171 666218 . - . ID=cds581-exon2;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1-exon2;Parent=cds581 +NC_011744 S-MART exon 666220 667587 . - . ID=cds581-exon3;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1-exon3;Parent=cds581 +NC_011744 S-MART CDS 667829 669037 . - . product=HD-GYP domain containing protein;transl_table=11;gbkey=CDS;protein_id=YP_002395188.1;Dbxref=Genbank:YP_002395188.1,GeneID:7137898;ID=cds582;Name=YP_002395188.1 +NC_011744 S-MART CDS 669479 674120 . - . product=%28Fe-S%29-binding protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395194.1;Dbxref=Genbank:YP_002395194.1,GeneID:7137904;ID=cds588;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1 +NC_011744 S-MART exon 669479 669616 . - . ID=cds588-exon1;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon1;Parent=cds588 +NC_011744 S-MART exon 669628 670209 . - . ID=cds588-exon2;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon2;Parent=cds588 +NC_011744 S-MART exon 670239 670700 . - . ID=cds588-exon3;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon3;Parent=cds588 +NC_011744 S-MART exon 670826 673617 . - . ID=cds588-exon4;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon4;Parent=cds588 +NC_011744 S-MART exon 673641 674120 . - . ID=cds588-exon5;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1-exon5;Parent=cds588 +NC_011744 S-MART CDS 674374 676723 . + . product=nitrate%2Fnitrite response regulator protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395196.1;Dbxref=Genbank:YP_002395196.1,GeneID:7137906;ID=cds590;Name=YP_002395196.1--YP_002395195.1 +NC_011744 S-MART CDS 676943 678322 . - . product=C4-dicarboxylate transporter DcuC;transl_table=11;Note=responsible for the transport of C4-dicarboxylates during anaerobic growth;gbkey=CDS;protein_id=YP_002395197.1;Dbxref=Genbank:YP_002395197.1,GeneID:7137907;ID=cds591;Name=YP_002395197.1 +NC_011744 S-MART CDS 678877 679593 . - . product=DNA-binding transcriptional repressor MngR;transl_table=11;Note=regulates the succiny-lCoA synthetase operon;gbkey=CDS;protein_id=YP_002395198.1;Dbxref=Genbank:YP_002395198.1,GeneID:7137908;ID=cds592;Name=YP_002395198.1 +NC_011744 S-MART CDS 679911 681845 . + . product=PTS system 2-O-a-mannosyl-D-glycerate specific transporter subunit IIABC;transl_table=11;Note=involved in the phosphorylation and transport of sugars across the cell membrane%3B protein IIA transfers a phosphoryl group to IIB which then transfers the phosphoryl group to the sugar%3B IIC forms the translocation channel for the sugar uptake;gbkey=CDS;protein_id=YP_002395199.1;Dbxref=Genbank:YP_002395199.1,GeneID:7137909;ID=cds593;Name=YP_002395199.1 +NC_011744 S-MART CDS 682083 687140 . + . product=mannose-6-phosphate isomerase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395202.1;Dbxref=Genbank:YP_002395202.1,GeneID:7137912;ID=cds596;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1 +NC_011744 S-MART exon 682083 684737 . + . ID=cds596-exon1;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1-exon1;Parent=cds596 +NC_011744 S-MART exon 684784 685950 . + . ID=cds596-exon2;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1-exon2;Parent=cds596 +NC_011744 S-MART exon 685953 687140 . + . ID=cds596-exon3;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1-exon3;Parent=cds596 +NC_011744 S-MART CDS 687546 689373 . - . product=acyl-CoA desaturase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395204.1;Dbxref=Genbank:YP_002395204.1,GeneID:7137914;ID=cds598;Name=YP_002395204.1--YP_002395203.1 +NC_011744 S-MART exon 687546 687941 . - . ID=cds598-exon1;Name=YP_002395204.1--YP_002395203.1-exon1;Parent=cds598 +NC_011744 S-MART exon 688090 689373 . - . ID=cds598-exon2;Name=YP_002395204.1--YP_002395203.1-exon2;Parent=cds598 +NC_011744 S-MART CDS 689399 689944 . + . product=acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395205.1;Dbxref=Genbank:YP_002395205.1,GeneID:7137915;ID=cds599;Name=YP_002395205.1 +NC_011744 S-MART CDS 690130 691161 . - . product=ribosomal biogenesis GTPase;transl_table=11;Note=essential GTPase%3B functions in ribosome assembly%3B binds a unique part of the 23S rRNA%3B interacts with ribosomal protein L25%28Ctc%29;gbkey=CDS;protein_id=YP_002395206.1;Dbxref=Genbank:YP_002395206.1,GeneID:7137916;ID=cds600;Name=YP_002395206.1 +NC_011744 S-MART CDS 691396 692056 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395210.1;Dbxref=Genbank:YP_002395210.1,GeneID:7137920;ID=cds604;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1 +NC_011744 S-MART exon 691396 691692 . - . ID=cds604-exon1;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1-exon1;Parent=cds604 +NC_011744 S-MART exon 691693 692056 . - . ID=cds604-exon2;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1-exon2;Parent=cds604 +NC_011744 S-MART CDS 692592 694097 . - . product=aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395211.1;Dbxref=Genbank:YP_002395211.1,GeneID:7137921;ID=cds605;Name=YP_002395211.1 +NC_011744 S-MART CDS 694518 695124 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395213.1;Dbxref=Genbank:YP_002395213.1,GeneID:7137923;ID=cds607;Name=YP_002395213.1--YP_002395212.1 +NC_011744 S-MART CDS 696153 697172 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395214.1;Dbxref=Genbank:YP_002395214.1,GeneID:7137924;ID=cds608;Name=YP_002395214.1 +NC_011744 S-MART CDS 697351 698611 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395216.1;Dbxref=Genbank:YP_002395216.1,GeneID:7137926;ID=cds610;Name=YP_002395216.1--YP_002395215.1 +NC_011744 S-MART CDS 699090 699815 . - . product=Transcription activator ToxR;transl_table=11;gbkey=CDS;protein_id=YP_002395217.1;Dbxref=Genbank:YP_002395217.1,GeneID:7137927;ID=cds611;Name=YP_002395217.1 +NC_011744 S-MART CDS 700082 701402 . - . product=thiol peroxidase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395220.1;Dbxref=Genbank:YP_002395220.1,GeneID:7137930;ID=cds614;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1 +NC_011744 S-MART exon 700082 700240 . - . ID=cds614-exon1;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1-exon1;Parent=cds614 +NC_011744 S-MART exon 700294 701402 . - . ID=cds614-exon2;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1-exon2;Parent=cds614 +NC_011744 S-MART CDS 701981 702466 . + . product=lipoprotein;transl_table=11;gbkey=CDS;protein_id=YP_002395221.1;Dbxref=Genbank:YP_002395221.1,GeneID:7137931;ID=cds615;Name=YP_002395221.1 +NC_011744 S-MART CDS 702643 705370 . + . product=aspartate racemase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395224.1;Dbxref=Genbank:YP_002395224.1,GeneID:7137934;ID=cds618;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1 +NC_011744 S-MART exon 702643 702834 . + . ID=cds618-exon1;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1-exon1;Parent=cds618 +NC_011744 S-MART exon 702952 704613 . + . ID=cds618-exon2;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1-exon2;Parent=cds618 +NC_011744 S-MART exon 704687 705370 . + . ID=cds618-exon3;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1-exon3;Parent=cds618 +NC_011744 S-MART CDS 705792 712546 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395231.1;Dbxref=Genbank:YP_002395231.1,GeneID:7137941;ID=cds625;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0 +NC_011744 S-MART exon 705792 706475 . - . ID=cds625-exon1;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon1;Parent=cds625 +NC_011744 S-MART exon 706571 710604 . - . ID=cds625-exon2;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon2;Parent=cds625 +NC_011744 S-MART exon 710607 711347 . - . ID=cds625-exon3;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon3;Parent=cds625 +NC_011744 S-MART exon 711447 711944 . - . ID=cds625-exon4;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon4;Parent=cds625 +NC_011744 S-MART exon 712022 712546 . - . ID=cds625-exon5;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0-exon5;Parent=cds625 +NC_011744 S-MART CDS 713325 714942 . - . product=MutT%2Fnudix family protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395233.1;Dbxref=Genbank:YP_002395233.1,GeneID:7137943;ID=cds627;Name=YP_002395233.1--YP_002395232.1 +NC_011744 S-MART exon 713325 714329 . - . ID=cds627-exon1;Name=YP_002395233.1--YP_002395232.1-exon1;Parent=cds627 +NC_011744 S-MART exon 714370 714942 . - . ID=cds627-exon2;Name=YP_002395233.1--YP_002395232.1-exon2;Parent=cds627 +NC_011744 S-MART CDS 715173 718286 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=contains a von Willibrand factor type A domain%3B stimulates the ATPase activity of RavA;gbkey=CDS;protein_id=YP_002395235.1;Dbxref=Genbank:YP_002395235.1,GeneID:7137945;ID=cds629;Name=YP_002395235.1--YP_002395234.1 +NC_011744 S-MART exon 715173 716828 . + . ID=cds629-exon1;Name=YP_002395235.1--YP_002395234.1-exon1;Parent=cds629 +NC_011744 S-MART exon 716841 718286 . + . ID=cds629-exon2;Name=YP_002395235.1--YP_002395234.1-exon2;Parent=cds629 +NC_011744 S-MART tRNA 718483 718990 . + . product=tRNA-Cys;nbElements=4.000000;gbkey=tRNA;Dbxref=GeneID:7138813;ID=rna8;Name=rna8--rna7--rna6--rna5 +NC_011744 S-MART exon 718483 718556 . + . ID=rna8-exon1;Name=rna8--rna7--rna6--rna5-exon1;Parent=rna8 +NC_011744 S-MART exon 718609 718684 . + . ID=rna8-exon2;Name=rna8--rna7--rna6--rna5-exon2;Parent=rna8 +NC_011744 S-MART exon 718765 718851 . + . ID=rna8-exon3;Name=rna8--rna7--rna6--rna5-exon3;Parent=rna8 +NC_011744 S-MART exon 718917 718990 . + . ID=rna8-exon4;Name=rna8--rna7--rna6--rna5-exon4;Parent=rna8 +NC_011744 S-MART CDS 719066 719854 . - . product=Lipase-related protein;transl_table=11;gbkey=CDS;protein_id=YP_002395236.1;Dbxref=Genbank:YP_002395236.1,GeneID:7138814;ID=cds630;Name=YP_002395236.1 +NC_011744 S-MART tRNA 720204 720874 . + . product=tRNA-Cys;nbElements=5.000000;gbkey=tRNA;Dbxref=GeneID:7138818;ID=rna13;Name=rna13--rna12--rna11--rna10--rna9 +NC_011744 S-MART exon 720204 720290 . + . ID=rna13-exon1;Name=rna13--rna12--rna11--rna10--rna9-exon1;Parent=rna13 +NC_011744 S-MART exon 720373 720446 . + . ID=rna13-exon2;Name=rna13--rna12--rna11--rna10--rna9-exon2;Parent=rna13 +NC_011744 S-MART exon 720493 720568 . + . ID=rna13-exon3;Name=rna13--rna12--rna11--rna10--rna9-exon3;Parent=rna13 +NC_011744 S-MART exon 720649 720735 . + . ID=rna13-exon4;Name=rna13--rna12--rna11--rna10--rna9-exon4;Parent=rna13 +NC_011744 S-MART exon 720801 720874 . + . ID=rna13-exon5;Name=rna13--rna12--rna11--rna10--rna9-exon5;Parent=rna13 +NC_011744 S-MART CDS 720954 722141 . - . product=lipoprotein;transl_table=11;gbkey=CDS;protein_id=YP_002395237.1;Dbxref=Genbank:YP_002395237.1,GeneID:7138819;ID=cds631;Name=YP_002395237.1 +NC_011744 S-MART CDS 722348 724667 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395239.1;Dbxref=Genbank:YP_002395239.1,GeneID:7137949;ID=cds633;Name=YP_002395239.1--YP_002395238.1 +NC_011744 S-MART exon 722348 724360 . - . ID=cds633-exon1;Name=YP_002395239.1--YP_002395238.1-exon1;Parent=cds633 +NC_011744 S-MART exon 724446 724667 . - . ID=cds633-exon2;Name=YP_002395239.1--YP_002395238.1-exon2;Parent=cds633 +NC_011744 S-MART CDS 724495 730500 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395244.1;Dbxref=Genbank:YP_002395244.1,GeneID:7137954;ID=cds638;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1 +NC_011744 S-MART exon 724495 727302 . + . ID=cds638-exon1;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1-exon1;Parent=cds638 +NC_011744 S-MART exon 727303 730047 . + . ID=cds638-exon2;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1-exon2;Parent=cds638 +NC_011744 S-MART exon 730057 730500 . + . ID=cds638-exon3;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1-exon3;Parent=cds638 +NC_011744 S-MART CDS 730674 731138 . - . product=Azu1 pseudoazurin %28blue copper protein%29;transl_table=11;gbkey=CDS;protein_id=YP_002395245.1;Dbxref=Genbank:YP_002395245.1,GeneID:7137955;ID=cds639;Name=YP_002395245.1 +NC_011744 S-MART CDS 731582 732379 . + . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395246.1;Dbxref=Genbank:YP_002395246.1,GeneID:7137956;ID=cds640;Name=YP_002395246.1 +NC_011744 S-MART CDS 732547 734338 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395250.1;Dbxref=Genbank:YP_002395250.1,GeneID:7137960;ID=cds644;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1 +NC_011744 S-MART exon 732547 733272 . + . ID=cds644-exon1;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1-exon1;Parent=cds644 +NC_011744 S-MART exon 733279 733750 . + . ID=cds644-exon2;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1-exon2;Parent=cds644 +NC_011744 S-MART exon 733844 734338 . + . ID=cds644-exon3;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1-exon3;Parent=cds644 +NC_011744 S-MART CDS 734620 734799 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395251.1;Dbxref=Genbank:YP_002395251.1,GeneID:7137961;ID=cds645;Name=YP_002395251.1 +NC_011744 S-MART CDS 735583 738480 . + . product=nitrite reductase small subunit;nbElements=2.000000;transl_table=11;Note=involved in reducing nitrite to ammonium to detoxify nitrite accumulation in anaerobic nitrate-respiring cells and regenerate NAD%2B%3B bounds to NirB%2C the cytoplasmic subunit%2C whose expression is induced at high nitrate concentrations;gbkey=CDS;protein_id=YP_002395253.1;Dbxref=Genbank:YP_002395253.1,GeneID:7137963;ID=cds647;Name=YP_002395253.1--YP_002395252.1 +NC_011744 S-MART exon 735583 738141 . + . ID=cds647-exon1;Name=YP_002395253.1--YP_002395252.1-exon1;Parent=cds647 +NC_011744 S-MART exon 738157 738480 . + . ID=cds647-exon2;Name=YP_002395253.1--YP_002395252.1-exon2;Parent=cds647 +NC_011744 S-MART CDS 738656 739471 . + . product=formate dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395254.1;Dbxref=Genbank:YP_002395254.1,GeneID:7137964;ID=cds648;Name=YP_002395254.1 +NC_011744 S-MART CDS 739788 740564 . + . product=uroporphyrin-III C-methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395255.1;Dbxref=Genbank:YP_002395255.1,GeneID:7137965;ID=cds649;Name=YP_002395255.1 +NC_011744 S-MART CDS 740597 741193 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395256.1;Dbxref=Genbank:YP_002395256.1,GeneID:7137966;ID=cds650;Name=YP_002395256.1 +NC_011744 S-MART CDS 741389 743990 . + . product=two-component system sensor kinase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395259.1;Dbxref=Genbank:YP_002395259.1,GeneID:7137969;ID=cds653;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1 +NC_011744 S-MART exon 741389 741862 . + . ID=cds653-exon1;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1-exon1;Parent=cds653 +NC_011744 S-MART exon 741943 743990 . + . ID=cds653-exon2;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1-exon2;Parent=cds653 +NC_011744 S-MART CDS 744192 745496 . - . product=Na%2B%2FH%2B-dicarboxylate symporter;transl_table=11;gbkey=CDS;protein_id=YP_002395260.1;Dbxref=Genbank:YP_002395260.1,GeneID:7137970;ID=cds654;Name=YP_002395260.1 +NC_011744 S-MART CDS 746055 748184 . + . product=Ferrichrome-iron receptor;transl_table=11;gbkey=CDS;protein_id=YP_002395261.1;Dbxref=Genbank:YP_002395261.1,GeneID:7137971;ID=cds655;Name=YP_002395261.1 +NC_011744 S-MART CDS 748363 753282 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395267.1;Dbxref=Genbank:YP_002395267.1,GeneID:7137977;ID=cds661;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1 +NC_011744 S-MART exon 748363 751467 . + . ID=cds661-exon1;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1-exon1;Parent=cds661 +NC_011744 S-MART exon 751487 753282 . + . ID=cds661-exon2;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1-exon2;Parent=cds661 +NC_011744 S-MART CDS 753443 753760 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395268.1;Dbxref=Genbank:YP_002395268.1,GeneID:7137978;ID=cds662;Name=YP_002395268.1 +NC_011744 S-MART CDS 754129 760856 . + . product=metal ABC transporter substrate-binding protein;nbElements=9.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395277.1;Dbxref=Genbank:YP_002395277.1,GeneID:7137987;ID=cds671;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0 +NC_011744 S-MART exon 754129 754758 . + . ID=cds671-exon1;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon1;Parent=cds671 +NC_011744 S-MART exon 754829 755347 . + . ID=cds671-exon2;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon2;Parent=cds671 +NC_011744 S-MART exon 755461 756297 . + . ID=cds671-exon3;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon3;Parent=cds671 +NC_011744 S-MART exon 756411 757339 . + . ID=cds671-exon4;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon4;Parent=cds671 +NC_011744 S-MART exon 757362 759930 . + . ID=cds671-exon5;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon5;Parent=cds671 +NC_011744 S-MART exon 759933 760856 . + . ID=cds671-exon6;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0-exon6;Parent=cds671 +NC_011744 S-MART CDS 760983 761213 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395278.1;Dbxref=Genbank:YP_002395278.1,GeneID:7137988;ID=cds672;Name=YP_002395278.1 +NC_011744 S-MART CDS 761311 762224 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395280.1;Dbxref=Genbank:YP_002395280.1,GeneID:7137990;ID=cds674;Name=YP_002395280.1--YP_002395279.1 +NC_011744 S-MART exon 761311 761826 . + . ID=cds674-exon1;Name=YP_002395280.1--YP_002395279.1-exon1;Parent=cds674 +NC_011744 S-MART exon 761829 762224 . + . ID=cds674-exon2;Name=YP_002395280.1--YP_002395279.1-exon2;Parent=cds674 +NC_011744 S-MART CDS 762344 763741 . - . product=Na%2B-driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395281.1;Dbxref=Genbank:YP_002395281.1,GeneID:7137991;ID=cds675;Name=YP_002395281.1 +NC_011744 S-MART CDS 763792 765180 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395283.1;Dbxref=Genbank:YP_002395283.1,GeneID:7137993;ID=cds677;Name=YP_002395283.1--YP_002395282.1 +NC_011744 S-MART exon 763792 764685 . + . ID=cds677-exon1;Name=YP_002395283.1--YP_002395282.1-exon1;Parent=cds677 +NC_011744 S-MART exon 764824 765180 . + . ID=cds677-exon2;Name=YP_002395283.1--YP_002395282.1-exon2;Parent=cds677 +NC_011744 S-MART CDS 765352 765687 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395284.1;Dbxref=Genbank:YP_002395284.1,GeneID:7137994;ID=cds678;Name=YP_002395284.1 +NC_011744 S-MART CDS 765840 766991 . - . product=permease;transl_table=11;gbkey=CDS;protein_id=YP_002395285.1;Dbxref=Genbank:YP_002395285.1,GeneID:7137995;ID=cds679;Name=YP_002395285.1 +NC_011744 S-MART CDS 766991 767272 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395286.1;Dbxref=Genbank:YP_002395286.1,GeneID:7137996;ID=cds680;Name=YP_002395286.1 +NC_011744 S-MART CDS 767430 769079 . + . product=choline dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395287.1;Dbxref=Genbank:YP_002395287.1,GeneID:7137997;ID=cds681;Name=YP_002395287.1 +NC_011744 S-MART CDS 769225 769659 . - . product=thioredoxin;transl_table=11;gbkey=CDS;protein_id=YP_002395288.1;Dbxref=Genbank:YP_002395288.1,GeneID:7137998;ID=cds682;Name=YP_002395288.1 +NC_011744 S-MART CDS 769782 772232 . + . product=glycosyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395290.1;Dbxref=Genbank:YP_002395290.1,GeneID:7138000;ID=cds684;Name=YP_002395290.1--YP_002395289.1 +NC_011744 S-MART exon 769782 770879 . + . ID=cds684-exon1;Name=YP_002395290.1--YP_002395289.1-exon1;Parent=cds684 +NC_011744 S-MART exon 771000 772232 . + . ID=cds684-exon2;Name=YP_002395290.1--YP_002395289.1-exon2;Parent=cds684 +NC_011744 S-MART CDS 772433 773340 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395292.1;Dbxref=Genbank:YP_002395292.1,GeneID:7138002;ID=cds686;Name=YP_002395292.1--YP_002395291.1 +NC_011744 S-MART CDS 773488 774363 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395293.1;Dbxref=Genbank:YP_002395293.1,GeneID:7138003;ID=cds687;Name=YP_002395293.1 +NC_011744 S-MART CDS 774662 776785 . + . product=anaerobic ribonucleoside triphosphate reductase;nbElements=2.000000;transl_table=11;Note=Catalyzes the reduction of nucleoside 5%27-triphosphates to 2%27-deoxynucleoside 5%27-triphosphates;gbkey=CDS;protein_id=YP_002395295.1;Dbxref=Genbank:YP_002395295.1,GeneID:7138005;ID=cds689;Name=YP_002395295.1--YP_002395294.2 +NC_011744 S-MART CDS 776941 777411 . + . product=anaerobic ribonucleotide reductase-activating protein;transl_table=11;Note=activates anaerobic ribonucleoside-triphosphate reductase under anaerobic conditions;gbkey=CDS;protein_id=YP_002395296.1;Dbxref=Genbank:YP_002395296.1,GeneID:7138826;ID=cds690;Name=YP_002395296.1 +NC_011744 S-MART CDS 777526 778953 . - . product=Na%2B-driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395297.1;Dbxref=Genbank:YP_002395297.1,GeneID:7138006;ID=cds691;Name=YP_002395297.1 +NC_011744 S-MART CDS 779044 779883 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395298.1;Dbxref=Genbank:YP_002395298.1,GeneID:7138007;ID=cds692;Name=YP_002395298.1 +NC_011744 S-MART CDS 780127 782018 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395300.1;Dbxref=Genbank:YP_002395300.1,GeneID:7138009;ID=cds694;Name=YP_002395300.1--YP_002395299.1 +NC_011744 S-MART exon 780127 781320 . + . ID=cds694-exon1;Name=YP_002395300.1--YP_002395299.1-exon1;Parent=cds694 +NC_011744 S-MART exon 781332 782018 . + . ID=cds694-exon2;Name=YP_002395300.1--YP_002395299.1-exon2;Parent=cds694 +NC_011744 S-MART CDS 782335 783918 . + . product=ABC transporter ATP-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395301.1;Dbxref=Genbank:YP_002395301.1,GeneID:7138010;ID=cds695;Name=YP_002395301.1 +NC_011744 S-MART CDS 784159 786045 . - . product=methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395302.1;Dbxref=Genbank:YP_002395302.1,GeneID:7138011;ID=cds696;Name=YP_002395302.1 +NC_011744 S-MART CDS 786336 787386 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395304.1;Dbxref=Genbank:YP_002395304.1,GeneID:7138013;ID=cds698;Name=YP_002395304.1--YP_002395303.1 +NC_011744 S-MART exon 786336 786860 . - . ID=cds698-exon1;Name=YP_002395304.1--YP_002395303.1-exon1;Parent=cds698 +NC_011744 S-MART exon 786973 787386 . - . ID=cds698-exon2;Name=YP_002395304.1--YP_002395303.1-exon2;Parent=cds698 +NC_011744 S-MART CDS 787649 791742 . + . product=molybdate transporter ATP-binding protein;nbElements=4.000000;transl_table=11;Note=Part of the ABC transporter complex modABC involved in molybdenum import;gbkey=CDS;protein_id=YP_002395308.1;Dbxref=Genbank:YP_002395308.1,GeneID:7138017;ID=cds702;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1 +NC_011744 S-MART exon 787649 789115 . + . ID=cds702-exon1;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1-exon1;Parent=cds702 +NC_011744 S-MART exon 789173 789931 . + . ID=cds702-exon2;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1-exon2;Parent=cds702 +NC_011744 S-MART exon 789932 791742 . + . ID=cds702-exon3;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1-exon3;Parent=cds702 +NC_011744 S-MART CDS 792189 792626 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395309.1;Dbxref=Genbank:YP_002395309.1,GeneID:7138018;ID=cds703;Name=YP_002395309.1 +NC_011744 S-MART CDS 792758 794817 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395311.1;Dbxref=Genbank:YP_002395311.1,GeneID:7138020;ID=cds705;Name=YP_002395311.1--YP_002395310.1 +NC_011744 S-MART exon 792758 793729 . + . ID=cds705-exon1;Name=YP_002395311.1--YP_002395310.1-exon1;Parent=cds705 +NC_011744 S-MART exon 793795 794817 . + . ID=cds705-exon2;Name=YP_002395311.1--YP_002395310.1-exon2;Parent=cds705 +NC_011744 S-MART CDS 794897 796138 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395312.1;Dbxref=Genbank:YP_002395312.1,GeneID:7138021;ID=cds706;Name=YP_002395312.1 +NC_011744 S-MART CDS 796531 797219 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395314.1;Dbxref=Genbank:YP_002395314.1,GeneID:7138023;ID=cds708;Name=YP_002395314.1--YP_002395313.1 +NC_011744 S-MART exon 796531 796899 . + . ID=cds708-exon1;Name=YP_002395314.1--YP_002395313.1-exon1;Parent=cds708 +NC_011744 S-MART exon 796938 797219 . + . ID=cds708-exon2;Name=YP_002395314.1--YP_002395313.1-exon2;Parent=cds708 +NC_011744 S-MART CDS 797519 800474 . + . product=pyridine nucleotide transhydrogenase;nbElements=2.000000;transl_table=11;Note=catalyzes reversible transfer of hydride ion equivalent between NAD and NADP%3B membrane-bound proton pump that translocates protons from cytosolic to periplasmic side of the inner membrane%3B forms a tetramer composed of two alpha and 2 beta subunits%3B AB-stereospecific enzyme;gbkey=CDS;protein_id=YP_002395316.1;Dbxref=Genbank:YP_002395316.1,GeneID:7138025;ID=cds710;Name=YP_002395316.1--YP_002395315.1 +NC_011744 S-MART exon 797519 799066 . + . ID=cds710-exon1;Name=YP_002395316.1--YP_002395315.1-exon1;Parent=cds710 +NC_011744 S-MART exon 799077 800474 . + . ID=cds710-exon2;Name=YP_002395316.1--YP_002395315.1-exon2;Parent=cds710 +NC_011744 S-MART CDS 800590 800664 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395317.1;Dbxref=Genbank:YP_002395317.1,GeneID:7138026;ID=cds711;Name=YP_002395317.1 +NC_011744 S-MART CDS 800800 805192 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395322.1;Dbxref=Genbank:YP_002395322.1,GeneID:7138031;ID=cds716;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1 +NC_011744 S-MART exon 800800 803784 . + . ID=cds716-exon1;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1-exon1;Parent=cds716 +NC_011744 S-MART exon 803844 804998 . + . ID=cds716-exon2;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1-exon2;Parent=cds716 +NC_011744 S-MART exon 805040 805192 . + . ID=cds716-exon3;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1-exon3;Parent=cds716 +NC_011744 S-MART CDS 805664 805798 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395323.1;Dbxref=Genbank:YP_002395323.1,GeneID:7138032;ID=cds717;Name=YP_002395323.1 +NC_011744 S-MART CDS 805957 807273 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395324.1;Dbxref=Genbank:YP_002395324.1,GeneID:7138033;ID=cds718;Name=YP_002395324.1 +NC_011744 S-MART CDS 807681 808154 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395325.1;Dbxref=Genbank:YP_002395325.1,GeneID:7138034;ID=cds719;Name=YP_002395325.1 +NC_011744 S-MART CDS 808421 809114 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395327.1;Dbxref=Genbank:YP_002395327.1,GeneID:7138036;ID=cds721;Name=YP_002395327.1--YP_002395326.1 +NC_011744 S-MART exon 808421 808732 . - . ID=cds721-exon1;Name=YP_002395327.1--YP_002395326.1-exon1;Parent=cds721 +NC_011744 S-MART exon 808737 809114 . - . ID=cds721-exon2;Name=YP_002395327.1--YP_002395326.1-exon2;Parent=cds721 +NC_011744 S-MART CDS 809209 810177 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395328.1;Dbxref=Genbank:YP_002395328.1,GeneID:7138037;ID=cds722;Name=YP_002395328.1 +NC_011744 S-MART CDS 810377 811372 . - . product=D-alanyl-alanine synthetase A;transl_table=11;Note=D-alanine--D-alanine ligase%3B DdlA%3B DdlB%3B cytoplasmic%3B catalyzes the formation of D-alanyl-D-alanine from two D-alanines in peptidoglycan synthesis%3B there are two forms of this enzyme in Escherichia coli;gbkey=CDS;protein_id=YP_002395329.1;Dbxref=Genbank:YP_002395329.1,GeneID:7138038;ID=cds723;Name=YP_002395329.1 +NC_011744 S-MART CDS 811552 812115 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395330.1;Dbxref=Genbank:YP_002395330.1,GeneID:7138039;ID=cds724;Name=YP_002395330.1 +NC_011744 S-MART CDS 812332 815013 . + . product=acyl-CoA synthetase;transl_table=11;gbkey=CDS;protein_id=YP_002395331.1;Dbxref=Genbank:YP_002395331.1,GeneID:7138040;ID=cds725;Name=YP_002395331.1 +NC_011744 S-MART CDS 815005 815892 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395332.1;Dbxref=Genbank:YP_002395332.1,GeneID:7138041;ID=cds726;Name=YP_002395332.1 +NC_011744 S-MART CDS 815945 818255 . + . product=heme receptor;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395334.1;Dbxref=Genbank:YP_002395334.1,GeneID:7138043;ID=cds728;Name=YP_002395334.1--YP_002395333.1 +NC_011744 S-MART exon 815945 816109 . + . ID=cds728-exon1;Name=YP_002395334.1--YP_002395333.1-exon1;Parent=cds728 +NC_011744 S-MART exon 816117 818255 . + . ID=cds728-exon2;Name=YP_002395334.1--YP_002395333.1-exon2;Parent=cds728 +NC_011744 S-MART CDS 818680 819693 . - . product=UDP-glucose 4-epimerase;transl_table=11;gbkey=CDS;protein_id=YP_002395335.1;Dbxref=Genbank:YP_002395335.1,GeneID:7138044;ID=cds729;Name=YP_002395335.1 +NC_011744 S-MART CDS 820183 820896 . + . product=LamB%2FYcsF family protein;transl_table=11;gbkey=CDS;protein_id=YP_002395336.1;Dbxref=Genbank:YP_002395336.1,GeneID:7138045;ID=cds730;Name=YP_002395336.1 +NC_011744 S-MART CDS 821073 822780 . + . product=Allophanate hydrolase subunit 2;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395338.1;Dbxref=Genbank:YP_002395338.1,GeneID:7138047;ID=cds732;Name=YP_002395338.1--YP_002395337.1 +NC_011744 S-MART CDS 822927 824381 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395339.1;Dbxref=Genbank:YP_002395339.1,GeneID:7138048;ID=cds733;Name=YP_002395339.1 +NC_011744 S-MART CDS 824914 828028 . - . product=ABC transporter ATP-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395341.1;Dbxref=Genbank:YP_002395341.1,GeneID:7138050;ID=cds735;Name=YP_002395341.1--YP_002395340.1 +NC_011744 S-MART exon 824914 827352 . - . ID=cds735-exon1;Name=YP_002395341.1--YP_002395340.1-exon1;Parent=cds735 +NC_011744 S-MART exon 827354 828028 . - . ID=cds735-exon2;Name=YP_002395341.1--YP_002395340.1-exon2;Parent=cds735 +NC_011744 S-MART CDS 828027 829925 . + . product=trans-2-enoyl-CoA reductase;nbElements=2.000000;transl_table=11;Note=enzyme from Treponema denticola exhibits NADH-dependent trans-2-enoyl-CoA reductase activity;gbkey=CDS;protein_id=YP_002395343.1;Dbxref=Genbank:YP_002395343.1,GeneID:7138052;ID=cds737;Name=YP_002395343.1--YP_002395342.1 +NC_011744 S-MART exon 828027 828644 . + . ID=cds737-exon1;Name=YP_002395343.1--YP_002395342.1-exon1;Parent=cds737 +NC_011744 S-MART exon 828726 829925 . + . ID=cds737-exon2;Name=YP_002395343.1--YP_002395342.1-exon2;Parent=cds737 +NC_011744 S-MART CDS 830104 833803 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395345.1;Dbxref=Genbank:YP_002395345.1,GeneID:7138054;ID=cds739;Name=YP_002395345.1--YP_002395344.1 +NC_011744 S-MART exon 830104 832011 . + . ID=cds739-exon1;Name=YP_002395345.1--YP_002395344.1-exon1;Parent=cds739 +NC_011744 S-MART exon 832130 833803 . + . ID=cds739-exon2;Name=YP_002395345.1--YP_002395344.1-exon2;Parent=cds739 +NC_011744 S-MART CDS 834047 835945 . + . product=cell division protein FtsI;transl_table=11;gbkey=CDS;protein_id=YP_002395346.1;Dbxref=Genbank:YP_002395346.1,GeneID:7138055;ID=cds740;Name=YP_002395346.1 +NC_011744 S-MART CDS 836127 836747 . - . product=molecular chaperone DnaJ;transl_table=11;gbkey=CDS;protein_id=YP_002395347.1;Dbxref=Genbank:YP_002395347.1,GeneID:7138056;ID=cds741;Name=YP_002395347.1 +NC_011744 S-MART CDS 837055 837927 . - . product=isopenicillin N synthase;transl_table=11;gbkey=CDS;protein_id=YP_002395348.1;Dbxref=Genbank:YP_002395348.1,GeneID:7138057;ID=cds742;Name=YP_002395348.1 +NC_011744 S-MART CDS 838091 838702 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395349.1;Dbxref=Genbank:YP_002395349.1,GeneID:7138058;ID=cds743;Name=YP_002395349.1 +NC_011744 S-MART CDS 839056 841686 . - . product=ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395351.1;Dbxref=Genbank:YP_002395351.1,GeneID:7138060;ID=cds745;Name=YP_002395351.1--YP_002395350.1 +NC_011744 S-MART exon 839056 839964 . - . ID=cds745-exon1;Name=YP_002395351.1--YP_002395350.1-exon1;Parent=cds745 +NC_011744 S-MART exon 839995 841686 . - . ID=cds745-exon2;Name=YP_002395351.1--YP_002395350.1-exon2;Parent=cds745 +NC_011744 S-MART CDS 841841 842573 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395353.1;Dbxref=Genbank:YP_002395353.1,GeneID:7138062;ID=cds747;Name=YP_002395353.1--YP_002395352.1 +NC_011744 S-MART exon 841841 842074 . - . ID=cds747-exon1;Name=YP_002395353.1--YP_002395352.1-exon1;Parent=cds747 +NC_011744 S-MART exon 842148 842573 . - . ID=cds747-exon2;Name=YP_002395353.1--YP_002395352.1-exon2;Parent=cds747 +NC_011744 S-MART CDS 842758 843546 . + . product=peptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395354.1;Dbxref=Genbank:YP_002395354.1,GeneID:7138063;ID=cds748;Name=YP_002395354.1 +NC_011744 S-MART CDS 843630 844736 . - . product=M50 family membrane-associated zinc metalloprotease;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395355.1;Dbxref=Genbank:YP_002395355.1,GeneID:7138064;ID=cds749;Name=YP_002395355.1 +NC_011744 S-MART CDS 845070 848778 . + . product=lipase;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395357.1;Dbxref=Genbank:YP_002395357.1,GeneID:7138066;ID=cds751;Name=YP_002395357.1--YP_002395356.1 +NC_011744 S-MART exon 845070 846329 . + . ID=cds751-exon1;Name=YP_002395357.1--YP_002395356.1-exon1;Parent=cds751 +NC_011744 S-MART exon 846343 848778 . + . ID=cds751-exon2;Name=YP_002395357.1--YP_002395356.1-exon2;Parent=cds751 +NC_011744 S-MART CDS 848999 849556 . + . product=alkylphosphonate uptake protein;transl_table=11;gbkey=CDS;protein_id=YP_002395358.1;Dbxref=Genbank:YP_002395358.1,GeneID:7138067;ID=cds752;Name=YP_002395358.1 +NC_011744 S-MART CDS 849634 851842 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395360.1;Dbxref=Genbank:YP_002395360.1,GeneID:7138069;ID=cds754;Name=YP_002395360.1--YP_002395359.1 +NC_011744 S-MART exon 849634 851040 . - . ID=cds754-exon1;Name=YP_002395360.1--YP_002395359.1-exon1;Parent=cds754 +NC_011744 S-MART exon 851063 851842 . - . ID=cds754-exon2;Name=YP_002395360.1--YP_002395359.1-exon2;Parent=cds754 +NC_011744 S-MART CDS 852000 852188 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395361.1;Dbxref=Genbank:YP_002395361.1,GeneID:7138070;ID=cds755;Name=YP_002395361.1 +NC_011744 S-MART ncRNA 852502 853701 . - . product=yybP-ykoY riboswitch;nbElements=2.000000;ncrna_class=other;gbkey=ncRNA;Dbxref=GeneID:7138072;ID=rna14;Name=rna14--YP_002395362.1 +NC_011744 S-MART exon 852502 853548 . - . ID=rna14-exon1;Name=rna14--YP_002395362.1-exon1;Parent=rna14 +NC_011744 S-MART exon 853580 853701 . - . ID=rna14-exon2;Name=rna14--YP_002395362.1-exon2;Parent=rna14 +NC_011744 S-MART CDS 853914 855859 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395365.1;Dbxref=Genbank:YP_002395365.1,GeneID:7138074;ID=cds759;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1 +NC_011744 S-MART exon 853914 854099 . - . ID=cds759-exon1;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1-exon1;Parent=cds759 +NC_011744 S-MART exon 854113 855859 . - . ID=cds759-exon2;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1-exon2;Parent=cds759 +NC_011744 S-MART CDS 856098 857870 . + . product=ATP-dependent endonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395366.1;Dbxref=Genbank:YP_002395366.1,GeneID:7138075;ID=cds760;Name=YP_002395366.1 +NC_011744 S-MART CDS 858049 858543 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395367.1;Dbxref=Genbank:YP_002395367.1,GeneID:7138076;ID=cds761;Name=YP_002395367.1 +NC_011744 S-MART CDS 859011 859916 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395368.1;Dbxref=Genbank:YP_002395368.1,GeneID:7138077;ID=cds762;Name=YP_002395368.1 +NC_011744 S-MART CDS 860190 861641 . + . product=formate transporter 1;transl_table=11;gbkey=CDS;protein_id=YP_002395369.1;Dbxref=Genbank:YP_002395369.1,GeneID:7138078;ID=cds763;Name=YP_002395369.1 +NC_011744 S-MART CDS 861979 863086 . - . product=cytochrome b561;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395372.1;Dbxref=Genbank:YP_002395372.1,GeneID:7138081;ID=cds766;Name=YP_002395372.1--YP_002395371.1--YP_002395370.1 +NC_011744 S-MART CDS 863271 863528 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395373.1;Dbxref=Genbank:YP_002395373.1,GeneID:7138082;ID=cds767;Name=YP_002395373.1 +NC_011744 S-MART CDS 863806 864733 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395375.1;Dbxref=Genbank:YP_002395375.1,GeneID:7138084;ID=cds769;Name=YP_002395375.1--YP_002395374.1 +NC_011744 S-MART exon 863806 864441 . + . ID=cds769-exon1;Name=YP_002395375.1--YP_002395374.1-exon1;Parent=cds769 +NC_011744 S-MART exon 864587 864733 . + . ID=cds769-exon2;Name=YP_002395375.1--YP_002395374.1-exon2;Parent=cds769 +NC_011744 S-MART CDS 864958 865749 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395376.1;Dbxref=Genbank:YP_002395376.1,GeneID:7138085;ID=cds770;Name=YP_002395376.1 +NC_011744 S-MART CDS 865987 871186 . - . product=membrane-fusion protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395379.1;Dbxref=Genbank:YP_002395379.1,GeneID:7138088;ID=cds773;Name=YP_002395379.1--YP_002395378.1--YP_002395377.1 +NC_011744 S-MART CDS 871342 872067 . + . product=transcriptional regulator%2C TetR family;transl_table=11;gbkey=CDS;protein_id=YP_002395380.1;Dbxref=Genbank:YP_002395380.1,GeneID:7138089;ID=cds774;Name=YP_002395380.1 +NC_011744 S-MART CDS 872230 874170 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395382.1;Dbxref=Genbank:YP_002395382.1,GeneID:7138091;ID=cds776;Name=YP_002395382.1--YP_002395381.1 +NC_011744 S-MART exon 872230 873501 . - . ID=cds776-exon1;Name=YP_002395382.1--YP_002395381.1-exon1;Parent=cds776 +NC_011744 S-MART exon 873559 874170 . - . ID=cds776-exon2;Name=YP_002395382.1--YP_002395381.1-exon2;Parent=cds776 +NC_011744 S-MART CDS 874365 874523 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395383.1;Dbxref=Genbank:YP_002395383.1,GeneID:7138092;ID=cds777;Name=YP_002395383.1 +NC_011744 S-MART CDS 874940 877736 . + . product=methyl-accepting chemotaxis protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395385.1;Dbxref=Genbank:YP_002395385.1,GeneID:7138094;ID=cds779;Name=YP_002395385.1--YP_002395384.1 +NC_011744 S-MART exon 874940 876163 . + . ID=cds779-exon1;Name=YP_002395385.1--YP_002395384.1-exon1;Parent=cds779 +NC_011744 S-MART exon 876312 877736 . + . ID=cds779-exon2;Name=YP_002395385.1--YP_002395384.1-exon2;Parent=cds779 +NC_011744 S-MART CDS 878165 878944 . - . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395386.1;Dbxref=Genbank:YP_002395386.1,GeneID:7138095;ID=cds780;Name=YP_002395386.1 +NC_011744 S-MART CDS 879102 881495 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395388.1;Dbxref=Genbank:YP_002395388.1,GeneID:7138097;ID=cds782;Name=YP_002395388.1--YP_002395387.1 +NC_011744 S-MART exon 879102 880910 . - . ID=cds782-exon1;Name=YP_002395388.1--YP_002395387.1-exon1;Parent=cds782 +NC_011744 S-MART exon 880971 881495 . - . ID=cds782-exon2;Name=YP_002395388.1--YP_002395387.1-exon2;Parent=cds782 +NC_011744 S-MART CDS 881714 883638 . + . product=inosine-guanosine kinase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395390.1;Dbxref=Genbank:YP_002395390.1,GeneID:7138099;ID=cds784;Name=YP_002395390.1--YP_002395389.1 +NC_011744 S-MART exon 881714 882190 . + . ID=cds784-exon1;Name=YP_002395390.1--YP_002395389.1-exon1;Parent=cds784 +NC_011744 S-MART exon 882334 883638 . + . ID=cds784-exon2;Name=YP_002395390.1--YP_002395389.1-exon2;Parent=cds784 +NC_011744 S-MART CDS 883933 885681 . + . product=formate--tetrahydrofolate ligase;transl_table=11;Note=catalyzes the formation of 10-formyltetrahydrofolate from formate and tetrahydrofolate;gbkey=CDS;protein_id=YP_002395391.1;Dbxref=Genbank:YP_002395391.1,GeneID:7138100;ID=cds785;Name=YP_002395391.1 +NC_011744 S-MART CDS 885922 887826 . + . product=Similar to sensory box%2FGGDEF family protein;transl_table=11;gbkey=CDS;protein_id=YP_002395392.1;Dbxref=Genbank:YP_002395392.1,GeneID:7138101;ID=cds786;Name=YP_002395392.1 +NC_011744 S-MART CDS 887895 888512 . - . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395393.1;Dbxref=Genbank:YP_002395393.1,GeneID:7138102;ID=cds787;Name=YP_002395393.1 +NC_011744 S-MART CDS 888588 888998 . + . product=Similar to Protein chain release factor B;transl_table=11;gbkey=CDS;protein_id=YP_002395394.1;Dbxref=Genbank:YP_002395394.1,GeneID:7138103;ID=cds788;Name=YP_002395394.1 +NC_011744 S-MART CDS 889175 889498 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395395.1;Dbxref=Genbank:YP_002395395.1,GeneID:7138104;ID=cds789;Name=YP_002395395.1 +NC_011744 S-MART CDS 889691 890029 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395396.1;Dbxref=Genbank:YP_002395396.1,GeneID:7138105;ID=cds790;Name=YP_002395396.1 +NC_011744 S-MART CDS 890115 891200 . - . product=SI family secreted trypsin-like serine protease;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395397.1;Dbxref=Genbank:YP_002395397.1,GeneID:7138106;ID=cds791;Name=YP_002395397.1 +NC_011744 S-MART CDS 891515 892681 . - . product=glycine cleavage system T protein;transl_table=11;gbkey=CDS;protein_id=YP_002395398.1;Dbxref=Genbank:YP_002395398.1,GeneID:7138107;ID=cds792;Name=YP_002395398.1 +NC_011744 S-MART CDS 893119 893742 . - . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395399.1;Dbxref=Genbank:YP_002395399.1,GeneID:7138108;ID=cds793;Name=YP_002395399.1 +NC_011744 S-MART CDS 894183 898887 . + . product=glycine dehydrogenase;nbElements=3.000000;transl_table=11;Note=acts in conjunction with GvcH to form H-protein-S-aminomethyldihydrolipoyllysine from glycine;gbkey=CDS;protein_id=YP_002395402.1;Dbxref=Genbank:YP_002395402.1,GeneID:7138111;ID=cds796;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1 +NC_011744 S-MART exon 894183 895475 . + . ID=cds796-exon1;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1-exon1;Parent=cds796 +NC_011744 S-MART exon 895526 895906 . + . ID=cds796-exon2;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1-exon2;Parent=cds796 +NC_011744 S-MART exon 895996 898887 . + . ID=cds796-exon3;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1-exon3;Parent=cds796 +NC_011744 S-MART CDS 899061 900308 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395404.1;Dbxref=Genbank:YP_002395404.1,GeneID:7138113;ID=cds798;Name=YP_002395404.1--YP_002395403.1 +NC_011744 S-MART exon 899061 899744 . - . ID=cds798-exon1;Name=YP_002395404.1--YP_002395403.1-exon1;Parent=cds798 +NC_011744 S-MART exon 899856 900308 . - . ID=cds798-exon2;Name=YP_002395404.1--YP_002395403.1-exon2;Parent=cds798 +NC_011744 S-MART CDS 900811 902702 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395408.1;Dbxref=Genbank:YP_002395408.1,GeneID:7138117;ID=cds802;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1 +NC_011744 S-MART exon 900811 901071 . - . ID=cds802-exon1;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1-exon1;Parent=cds802 +NC_011744 S-MART exon 901103 901920 . - . ID=cds802-exon2;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1-exon2;Parent=cds802 +NC_011744 S-MART exon 901980 902702 . - . ID=cds802-exon3;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1-exon3;Parent=cds802 +NC_011744 S-MART CDS 902823 903977 . + . product=transposase of insertion element ISVisp2 %3B IS110 family%2C subgroup IS1111;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002395409.1;Dbxref=Genbank:YP_002395409.1,GeneID:7138118;ID=cds803;Name=YP_002395409.1 +NC_011744 S-MART CDS 904385 904729 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395410.1;Dbxref=Genbank:YP_002395410.1,GeneID:7138119;ID=cds804;Name=YP_002395410.1 +NC_011744 S-MART CDS 904904 905320 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395411.1;Dbxref=Genbank:YP_002395411.1,GeneID:7138120;ID=cds805;Name=YP_002395411.1 +NC_011744 S-MART CDS 905548 905715 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395412.1;Dbxref=Genbank:YP_002395412.1,GeneID:7138121;ID=cds806;Name=YP_002395412.1 +NC_011744 S-MART CDS 905907 906257 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395413.1;Dbxref=Genbank:YP_002395413.1,GeneID:7138122;ID=cds807;Name=YP_002395413.1 +NC_011744 S-MART CDS 906613 908214 . - . product=ABC transporter ATP-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395414.1;Dbxref=Genbank:YP_002395414.1,GeneID:7138123;ID=cds808;Name=YP_002395414.1 +NC_011744 S-MART CDS 908638 910020 . + . product=multidrug resistance protein;transl_table=11;gbkey=CDS;protein_id=YP_002395415.1;Dbxref=Genbank:YP_002395415.1,GeneID:7138124;ID=cds809;Name=YP_002395415.1 +NC_011744 S-MART CDS 910131 911902 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395418.1;Dbxref=Genbank:YP_002395418.1,GeneID:7138127;ID=cds812;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1 +NC_011744 S-MART exon 910131 910778 . - . ID=cds812-exon1;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1-exon1;Parent=cds812 +NC_011744 S-MART exon 910872 911027 . - . ID=cds812-exon2;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1-exon2;Parent=cds812 +NC_011744 S-MART exon 911042 911902 . - . ID=cds812-exon3;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1-exon3;Parent=cds812 +NC_011744 S-MART CDS 912255 913226 . - . product=Lactoylglutathione lyase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395420.1;Dbxref=Genbank:YP_002395420.1,GeneID:7138129;ID=cds814;Name=YP_002395420.1--YP_002395419.1 +NC_011744 S-MART exon 912255 912725 . - . ID=cds814-exon1;Name=YP_002395420.1--YP_002395419.1-exon1;Parent=cds814 +NC_011744 S-MART exon 912840 913226 . - . ID=cds814-exon2;Name=YP_002395420.1--YP_002395419.1-exon2;Parent=cds814 +NC_011744 S-MART CDS 913393 914454 . - . product=tryptophanyl-tRNA synthetase;transl_table=11;Note=catalyzes a two-step reaction%2C first charging a tryptophan molecule by linking its carboxyl group to the alpha-phosphate of ATP%2C followed by transfer of the aminoacyl-adenylate to its tRNA;gbkey=CDS;protein_id=YP_002395421.1;Dbxref=Genbank:YP_002395421.1,GeneID:7138130;ID=cds815;Name=YP_002395421.1 +NC_011744 S-MART CDS 914705 915505 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395422.1;Dbxref=Genbank:YP_002395422.1,GeneID:7138131;ID=cds816;Name=YP_002395422.1 +NC_011744 S-MART CDS 915759 918681 . - . product=phospholipid-binding protein;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type h : extrachromosomal origin;gbkey=CDS;protein_id=YP_002395425.1;Dbxref=Genbank:YP_002395425.1,GeneID:7138134;ID=cds819;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1 +NC_011744 S-MART exon 915759 917138 . - . ID=cds819-exon1;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1-exon1;Parent=cds819 +NC_011744 S-MART exon 917263 918045 . - . ID=cds819-exon2;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1-exon2;Parent=cds819 +NC_011744 S-MART exon 918103 918681 . - . ID=cds819-exon3;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1-exon3;Parent=cds819 +NC_011744 S-MART CDS 918880 924210 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395429.1;Dbxref=Genbank:YP_002395429.1,GeneID:7138138;ID=cds823;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1 +NC_011744 S-MART exon 918880 921732 . + . ID=cds823-exon1;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1-exon1;Parent=cds823 +NC_011744 S-MART exon 921877 924210 . + . ID=cds823-exon2;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1-exon2;Parent=cds823 +NC_011744 S-MART CDS 924279 925181 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395430.1;Dbxref=Genbank:YP_002395430.1,GeneID:7138139;ID=cds824;Name=YP_002395430.1 +NC_011744 S-MART CDS 925309 927927 . + . product=Multidrug resistance protein B;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395432.1;Dbxref=Genbank:YP_002395432.1,GeneID:7138141;ID=cds826;Name=YP_002395432.1--YP_002395431.1 +NC_011744 S-MART exon 925309 926373 . + . ID=cds826-exon1;Name=YP_002395432.1--YP_002395431.1-exon1;Parent=cds826 +NC_011744 S-MART exon 926377 927927 . + . ID=cds826-exon2;Name=YP_002395432.1--YP_002395431.1-exon2;Parent=cds826 +NC_011744 S-MART CDS 928216 930131 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395434.1;Dbxref=Genbank:YP_002395434.1,GeneID:7138143;ID=cds828;Name=YP_002395434.1--YP_002395433.1 +NC_011744 S-MART CDS 930526 931422 . + . product=RpoS-like sigma factor;transl_table=11;gbkey=CDS;protein_id=YP_002395435.1;Dbxref=Genbank:YP_002395435.1,GeneID:7138144;ID=cds829;Name=YP_002395435.1 +NC_011744 S-MART CDS 931608 931961 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395436.1;Dbxref=Genbank:YP_002395436.1,GeneID:7138145;ID=cds830;Name=YP_002395436.1 +NC_011744 S-MART CDS 932163 952555 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395438.1;Dbxref=Genbank:YP_002395438.1,GeneID:7138147;ID=cds832;Name=YP_002395438.1--YP_002395437.1 +NC_011744 S-MART exon 932163 936293 . - . ID=cds832-exon1;Name=YP_002395438.1--YP_002395437.1-exon1;Parent=cds832 +NC_011744 S-MART exon 936437 952555 . - . ID=cds832-exon2;Name=YP_002395438.1--YP_002395437.1-exon2;Parent=cds832 +NC_011744 S-MART CDS 952752 962294 . + . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395445.1;Dbxref=Genbank:YP_002395445.1,GeneID:7138154;ID=cds839;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0 +NC_011744 S-MART exon 952752 953114 . + . ID=cds839-exon1;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon1;Parent=cds839 +NC_011744 S-MART exon 953118 954467 . + . ID=cds839-exon2;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon2;Parent=cds839 +NC_011744 S-MART exon 954471 961812 . + . ID=cds839-exon3;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon3;Parent=cds839 +NC_011744 S-MART exon 961920 962294 . + . ID=cds839-exon4;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0-exon4;Parent=cds839 +NC_011744 S-MART CDS 962510 967253 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395448.1;Dbxref=Genbank:YP_002395448.1,GeneID:7138157;ID=cds842;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1 +NC_011744 S-MART exon 962510 965713 . + . ID=cds842-exon1;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1-exon1;Parent=cds842 +NC_011744 S-MART exon 965723 966199 . + . ID=cds842-exon2;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1-exon2;Parent=cds842 +NC_011744 S-MART exon 966201 967253 . + . ID=cds842-exon3;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1-exon3;Parent=cds842 +NC_011744 S-MART CDS 967368 969845 . - . product=arylsulfatase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395450.1;Dbxref=Genbank:YP_002395450.1,GeneID:7138159;ID=cds844;Name=YP_002395450.1--YP_002395449.1 +NC_011744 S-MART exon 967368 968426 . - . ID=cds844-exon1;Name=YP_002395450.1--YP_002395449.1-exon1;Parent=cds844 +NC_011744 S-MART exon 968514 969845 . - . ID=cds844-exon2;Name=YP_002395450.1--YP_002395449.1-exon2;Parent=cds844 +NC_011744 S-MART CDS 969982 970770 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395451.1;Dbxref=Genbank:YP_002395451.1,GeneID:7138160;ID=cds845;Name=YP_002395451.1 +NC_011744 S-MART CDS 970950 972632 . + . product=alkaline phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002395452.1;Dbxref=Genbank:YP_002395452.1,GeneID:7138161;ID=cds846;Name=YP_002395452.1 +NC_011744 S-MART CDS 972837 980475 . - . product=MoxR-like ATPase;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395459.1;Dbxref=Genbank:YP_002395459.1,GeneID:7138168;ID=cds853;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0 +NC_011744 S-MART exon 972837 973742 . - . ID=cds853-exon1;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon1;Parent=cds853 +NC_011744 S-MART exon 973821 978516 . - . ID=cds853-exon2;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon2;Parent=cds853 +NC_011744 S-MART exon 978517 979479 . - . ID=cds853-exon3;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon3;Parent=cds853 +NC_011744 S-MART exon 979492 980475 . - . ID=cds853-exon4;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0-exon4;Parent=cds853 +NC_011744 S-MART CDS 980660 983047 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395460.1;Dbxref=Genbank:YP_002395460.1,GeneID:7138169;ID=cds854;Name=YP_002395460.1 +NC_011744 S-MART CDS 983239 984813 . - . product=arylsulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002395461.1;Dbxref=Genbank:YP_002395461.1,GeneID:7138170;ID=cds855;Name=YP_002395461.1 +NC_011744 S-MART CDS 985133 986695 . + . product=arylsulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002395462.1;Dbxref=Genbank:YP_002395462.1,GeneID:7138171;ID=cds856;Name=YP_002395462.1 +NC_011744 S-MART CDS 986985 987638 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395463.1;Dbxref=Genbank:YP_002395463.1,GeneID:7138172;ID=cds857;Name=YP_002395463.1 +NC_011744 S-MART CDS 987744 988238 . - . product=GCN5-related N-acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395464.1;Dbxref=Genbank:YP_002395464.1,GeneID:7138173;ID=cds858;Name=YP_002395464.1 +NC_011744 S-MART CDS 988720 989217 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395465.1;Dbxref=Genbank:YP_002395465.1,GeneID:7138174;ID=cds859;Name=YP_002395465.1 +NC_011744 S-MART CDS 989343 991730 . - . product=epimerase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395469.1;Dbxref=Genbank:YP_002395469.1,GeneID:7138178;ID=cds863;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1 +NC_011744 S-MART exon 989343 989810 . - . ID=cds863-exon1;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon1;Parent=cds863 +NC_011744 S-MART exon 989864 990178 . - . ID=cds863-exon2;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon2;Parent=cds863 +NC_011744 S-MART exon 990278 990781 . - . ID=cds863-exon3;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon3;Parent=cds863 +NC_011744 S-MART exon 990873 991730 . - . ID=cds863-exon4;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1-exon4;Parent=cds863 +NC_011744 S-MART CDS 991952 992602 . - . product=transporter%2C LysE family;transl_table=11;gbkey=CDS;protein_id=YP_002395470.1;Dbxref=Genbank:YP_002395470.1,GeneID:7138179;ID=cds864;Name=YP_002395470.1 +NC_011744 S-MART CDS 992973 996440 . + . product=transduction protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395472.1;Dbxref=Genbank:YP_002395472.1,GeneID:7138181;ID=cds866;Name=YP_002395472.1--YP_002395471.1 +NC_011744 S-MART exon 992973 994004 . + . ID=cds866-exon1;Name=YP_002395472.1--YP_002395471.1-exon1;Parent=cds866 +NC_011744 S-MART exon 994035 996440 . + . ID=cds866-exon2;Name=YP_002395472.1--YP_002395471.1-exon2;Parent=cds866 +NC_011744 S-MART CDS 996495 997997 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395474.1;Dbxref=Genbank:YP_002395474.1,GeneID:7138183;ID=cds868;Name=YP_002395474.1--YP_002395473.1 +NC_011744 S-MART exon 996495 997520 . - . ID=cds868-exon1;Name=YP_002395474.1--YP_002395473.1-exon1;Parent=cds868 +NC_011744 S-MART exon 997530 997997 . - . ID=cds868-exon2;Name=YP_002395474.1--YP_002395473.1-exon2;Parent=cds868 +NC_011744 S-MART CDS 998364 1000814 . + . product=Cbb3-type cytochrome oxidase%2C cytochrome c subunit;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395477.1;Dbxref=Genbank:YP_002395477.1,GeneID:7138186;ID=cds871;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1 +NC_011744 S-MART exon 998364 998759 . + . ID=cds871-exon1;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1-exon1;Parent=cds871 +NC_011744 S-MART exon 998775 1000199 . + . ID=cds871-exon2;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1-exon2;Parent=cds871 +NC_011744 S-MART exon 1000200 1000814 . + . ID=cds871-exon3;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1-exon3;Parent=cds871 +NC_011744 S-MART CDS 1001606 1002967 . + . product=cytochrome c%2C class I;transl_table=11;gbkey=CDS;protein_id=YP_002395478.1;Dbxref=Genbank:YP_002395478.1,GeneID:7138187;ID=cds872;Name=YP_002395478.1 +NC_011744 S-MART CDS 1003230 1003457 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395479.1;Dbxref=Genbank:YP_002395479.1,GeneID:7138188;ID=cds873;Name=YP_002395479.1 +NC_011744 S-MART CDS 1003721 1003903 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395480.1;Dbxref=Genbank:YP_002395480.1,GeneID:7138189;ID=cds874;Name=YP_002395480.1 +NC_011744 S-MART CDS 1004107 1005399 . - . product=prolyl aminopeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395481.1;Dbxref=Genbank:YP_002395481.1,GeneID:7138190;ID=cds875;Name=YP_002395481.1 +NC_011744 S-MART CDS 1005763 1008308 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395483.1;Dbxref=Genbank:YP_002395483.1,GeneID:7138192;ID=cds877;Name=YP_002395483.1--YP_002395482.1 +NC_011744 S-MART CDS 1008571 1010178 . - . product=glycine betaine transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395484.1;Dbxref=Genbank:YP_002395484.1,GeneID:7138193;ID=cds878;Name=YP_002395484.1 +NC_011744 S-MART CDS 1010410 1011411 . - . product=dipeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395485.1;Dbxref=Genbank:YP_002395485.1,GeneID:7138194;ID=cds879;Name=YP_002395485.1 +NC_011744 S-MART CDS 1011616 1013079 . - . product=aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395486.1;Dbxref=Genbank:YP_002395486.1,GeneID:7138195;ID=cds880;Name=YP_002395486.1 +NC_011744 S-MART CDS 1013276 1013686 . - . product=endoribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395487.1;Dbxref=Genbank:YP_002395487.1,GeneID:7138196;ID=cds881;Name=YP_002395487.1 +NC_011744 S-MART CDS 1013832 1014713 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395488.1;Dbxref=Genbank:YP_002395488.1,GeneID:7138197;ID=cds882;Name=YP_002395488.1 +NC_011744 S-MART CDS 1015526 1022425 . + . product=ATP synthase F0F1 subunit epsilon;nbElements=9.000000;transl_table=11;Note=part of catalytic core of ATP synthase%3B alpha%283%29beta%283%29gamma%281%29delta%281%29epsilon%281%29%3B involved in producing ATP from ADP in the presence of the proton motive force across the membrane;gbkey=CDS;protein_id=YP_002395497.1;Dbxref=Genbank:YP_002395497.1,GeneID:7138206;ID=cds891;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0 +NC_011744 S-MART exon 1015526 1015927 . + . ID=cds891-exon1;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon1;Parent=cds891 +NC_011744 S-MART exon 1015929 1016699 . + . ID=cds891-exon2;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon2;Parent=cds891 +NC_011744 S-MART exon 1016745 1016981 . + . ID=cds891-exon3;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon3;Parent=cds891 +NC_011744 S-MART exon 1017036 1017506 . + . ID=cds891-exon4;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon4;Parent=cds891 +NC_011744 S-MART exon 1017518 1018069 . + . ID=cds891-exon5;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon5;Parent=cds891 +NC_011744 S-MART exon 1018079 1019620 . + . ID=cds891-exon6;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon6;Parent=cds891 +NC_011744 S-MART exon 1019668 1020537 . + . ID=cds891-exon7;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon7;Parent=cds891 +NC_011744 S-MART exon 1020582 1021967 . + . ID=cds891-exon8;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon8;Parent=cds891 +NC_011744 S-MART exon 1021982 1022425 . + . ID=cds891-exon9;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0-exon9;Parent=cds891 +NC_011744 S-MART CDS 1022610 1023158 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395498.1;Dbxref=Genbank:YP_002395498.1,GeneID:7138207;ID=cds892;Name=YP_002395498.1 +NC_011744 S-MART CDS 1023422 1024201 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395499.1;Dbxref=Genbank:YP_002395499.1,GeneID:7138208;ID=cds893;Name=YP_002395499.1 +NC_011744 S-MART CDS 1024400 1030193 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395502.1;Dbxref=Genbank:YP_002395502.1,GeneID:7138211;ID=cds896;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1 +NC_011744 S-MART exon 1024400 1027519 . - . ID=cds896-exon1;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1-exon1;Parent=cds896 +NC_011744 S-MART exon 1027526 1028665 . - . ID=cds896-exon2;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1-exon2;Parent=cds896 +NC_011744 S-MART exon 1028763 1030193 . - . ID=cds896-exon3;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1-exon3;Parent=cds896 +NC_011744 S-MART CDS 1030452 1035558 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395508.1;Dbxref=Genbank:YP_002395508.1,GeneID:7138217;ID=cds902;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1 +NC_011744 S-MART exon 1030452 1032082 . + . ID=cds902-exon1;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon1;Parent=cds902 +NC_011744 S-MART exon 1032105 1033366 . + . ID=cds902-exon2;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon2;Parent=cds902 +NC_011744 S-MART exon 1033503 1034384 . + . ID=cds902-exon3;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon3;Parent=cds902 +NC_011744 S-MART exon 1034521 1035558 . + . ID=cds902-exon4;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1-exon4;Parent=cds902 +NC_011744 S-MART CDS 1035708 1036604 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395509.1;Dbxref=Genbank:YP_002395509.1,GeneID:7138218;ID=cds903;Name=YP_002395509.1 +NC_011744 S-MART CDS 1036962 1038869 . + . product=metal-dependent hydrolases;transl_table=11;gbkey=CDS;protein_id=YP_002395510.1;Dbxref=Genbank:YP_002395510.1,GeneID:7138219;ID=cds904;Name=YP_002395510.1 +NC_011744 S-MART CDS 1039828 1041511 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395512.1;Dbxref=Genbank:YP_002395512.1,GeneID:7138221;ID=cds906;Name=YP_002395512.1--YP_002395511.1 +NC_011744 S-MART exon 1039828 1040286 . + . ID=cds906-exon1;Name=YP_002395512.1--YP_002395511.1-exon1;Parent=cds906 +NC_011744 S-MART exon 1040318 1041511 . + . ID=cds906-exon2;Name=YP_002395512.1--YP_002395511.1-exon2;Parent=cds906 +NC_011744 S-MART CDS 1041608 1047317 . - . product=ABC transporter substrate-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395516.1;Dbxref=Genbank:YP_002395516.1,GeneID:7138225;ID=cds910;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1 +NC_011744 S-MART exon 1041608 1043257 . - . ID=cds910-exon1;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon1;Parent=cds910 +NC_011744 S-MART exon 1043267 1044289 . - . ID=cds910-exon2;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon2;Parent=cds910 +NC_011744 S-MART exon 1044321 1045409 . - . ID=cds910-exon3;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon3;Parent=cds910 +NC_011744 S-MART exon 1045422 1047317 . - . ID=cds910-exon4;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1-exon4;Parent=cds910 +NC_011744 S-MART CDS 1047710 1048753 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395517.1;Dbxref=Genbank:YP_002395517.1,GeneID:7138226;ID=cds911;Name=YP_002395517.1 +NC_011744 S-MART CDS 1048904 1049539 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395518.1;Dbxref=Genbank:YP_002395518.1,GeneID:7138227;ID=cds912;Name=YP_002395518.1 +NC_011744 S-MART CDS 1049932 1050246 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395519.1;Dbxref=Genbank:YP_002395519.1,GeneID:7138228;ID=cds913;Name=YP_002395519.1 +NC_011744 S-MART CDS 1050478 1053537 . + . product=ribose ABC transporter permease;nbElements=3.000000;transl_table=11;Note=functions to transport ribose at high affinity%3B forms a complex with RbsA2C2B;gbkey=CDS;protein_id=YP_002395522.1;Dbxref=Genbank:YP_002395522.1,GeneID:7138231;ID=cds916;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1 +NC_011744 S-MART exon 1050478 1050945 . + . ID=cds916-exon1;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1-exon1;Parent=cds916 +NC_011744 S-MART exon 1051043 1053537 . + . ID=cds916-exon2;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1-exon2;Parent=cds916 +NC_011744 S-MART CDS 1053711 1054589 . + . product=D-ribose transporter subunit RbsB;transl_table=11;Note=periplasmic substrate-binding component of the ATP-dependent ribose transport system;gbkey=CDS;protein_id=YP_002395523.1;Dbxref=Genbank:YP_002395523.1,GeneID:7138232;ID=cds917;Name=YP_002395523.1 +NC_011744 S-MART CDS 1054798 1055724 . + . product=ribokinase;transl_table=11;Note=catalyzes the formation of D-ribose 5-phosphate from ribose;gbkey=CDS;protein_id=YP_002395524.1;Dbxref=Genbank:YP_002395524.1,GeneID:7138233;ID=cds918;Name=YP_002395524.1 +NC_011744 S-MART CDS 1055877 1056878 . + . product=Ribose operon repressor;transl_table=11;gbkey=CDS;protein_id=YP_002395525.1;Dbxref=Genbank:YP_002395525.1,GeneID:7138234;ID=cds919;Name=YP_002395525.1 +NC_011744 S-MART CDS 1057002 1057667 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395526.1;Dbxref=Genbank:YP_002395526.1,GeneID:7138235;ID=cds920;Name=YP_002395526.1 +NC_011744 S-MART CDS 1057917 1059515 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395527.1;Dbxref=Genbank:YP_002395527.1,GeneID:7138236;ID=cds921;Name=YP_002395527.1 +NC_011744 S-MART CDS 1059596 1061010 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395529.1;Dbxref=Genbank:YP_002395529.1,GeneID:7138238;ID=cds923;Name=YP_002395529.1--YP_002395528.1 +NC_011744 S-MART exon 1059596 1060564 . - . ID=cds923-exon1;Name=YP_002395529.1--YP_002395528.1-exon1;Parent=cds923 +NC_011744 S-MART exon 1060633 1061010 . - . ID=cds923-exon2;Name=YP_002395529.1--YP_002395528.1-exon2;Parent=cds923 +NC_011744 S-MART CDS 1061438 1061875 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395530.1;Dbxref=Genbank:YP_002395530.1,GeneID:7138239;ID=cds924;Name=YP_002395530.1 +NC_011744 S-MART CDS 1062286 1062711 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395531.1;Dbxref=Genbank:YP_002395531.1,GeneID:7138240;ID=cds925;Name=YP_002395531.1 +NC_011744 S-MART CDS 1062792 1062935 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395532.1;Dbxref=Genbank:YP_002395532.1,GeneID:7138241;ID=cds926;Name=YP_002395532.1 +NC_011744 S-MART CDS 1063028 1064630 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395534.1;Dbxref=Genbank:YP_002395534.1,GeneID:7138243;ID=cds928;Name=YP_002395534.1--YP_002395533.1 +NC_011744 S-MART CDS 1064838 1068624 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395538.1;Dbxref=Genbank:YP_002395538.1,GeneID:7138247;ID=cds932;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1 +NC_011744 S-MART exon 1064838 1066019 . - . ID=cds932-exon1;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1-exon1;Parent=cds932 +NC_011744 S-MART exon 1066028 1066795 . - . ID=cds932-exon2;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1-exon2;Parent=cds932 +NC_011744 S-MART exon 1066814 1068624 . - . ID=cds932-exon3;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1-exon3;Parent=cds932 +NC_011744 S-MART CDS 1068805 1075006 . - . product=hypothetical protein;nbElements=10.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395548.1;Dbxref=Genbank:YP_002395548.1,GeneID:7138257;ID=cds942;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0 +NC_011744 S-MART exon 1068805 1070553 . - . ID=cds942-exon1;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon1;Parent=cds942 +NC_011744 S-MART exon 1070566 1071687 . - . ID=cds942-exon2;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon2;Parent=cds942 +NC_011744 S-MART exon 1071799 1072290 . - . ID=cds942-exon3;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon3;Parent=cds942 +NC_011744 S-MART exon 1072300 1072872 . - . ID=cds942-exon4;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon4;Parent=cds942 +NC_011744 S-MART exon 1072884 1073654 . - . ID=cds942-exon5;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon5;Parent=cds942 +NC_011744 S-MART exon 1073684 1075006 . - . ID=cds942-exon6;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0-exon6;Parent=cds942 +NC_011744 S-MART CDS 1075189 1078353 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395552.1;Dbxref=Genbank:YP_002395552.1,GeneID:7138261;ID=cds946;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1 +NC_011744 S-MART exon 1075189 1075605 . - . ID=cds946-exon1;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1-exon1;Parent=cds946 +NC_011744 S-MART exon 1075656 1077028 . - . ID=cds946-exon2;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1-exon2;Parent=cds946 +NC_011744 S-MART exon 1077043 1078353 . - . ID=cds946-exon3;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1-exon3;Parent=cds946 +NC_011744 S-MART CDS 1078538 1079514 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395554.1;Dbxref=Genbank:YP_002395554.1,GeneID:7138263;ID=cds948;Name=YP_002395554.1--YP_002395553.1 +NC_011744 S-MART CDS 1079815 1081574 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395556.1;Dbxref=Genbank:YP_002395556.1,GeneID:7138265;ID=cds950;Name=YP_002395556.1--YP_002395555.1 +NC_011744 S-MART exon 1079815 1080249 . - . ID=cds950-exon1;Name=YP_002395556.1--YP_002395555.1-exon1;Parent=cds950 +NC_011744 S-MART exon 1080264 1081574 . - . ID=cds950-exon2;Name=YP_002395556.1--YP_002395555.1-exon2;Parent=cds950 +NC_011744 S-MART CDS 1081952 1083590 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395559.1;Dbxref=Genbank:YP_002395559.1,GeneID:7138268;ID=cds953;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1 +NC_011744 S-MART exon 1081952 1082862 . - . ID=cds953-exon1;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1-exon1;Parent=cds953 +NC_011744 S-MART exon 1082865 1083590 . - . ID=cds953-exon2;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1-exon2;Parent=cds953 +NC_011744 S-MART CDS 1083767 1084411 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395560.1;Dbxref=Genbank:YP_002395560.1,GeneID:7138269;ID=cds954;Name=YP_002395560.1 +NC_011744 S-MART CDS 1084799 1092865 . - . product=hypothetical protein;nbElements=9.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395569.1;Dbxref=Genbank:YP_002395569.1,GeneID:7138277;ID=cds963;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0 +NC_011744 S-MART exon 1084799 1086478 . - . ID=cds963-exon1;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon1;Parent=cds963 +NC_011744 S-MART exon 1086482 1087999 . - . ID=cds963-exon2;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon2;Parent=cds963 +NC_011744 S-MART exon 1088148 1090261 . - . ID=cds963-exon3;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon3;Parent=cds963 +NC_011744 S-MART exon 1090273 1092253 . - . ID=cds963-exon4;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon4;Parent=cds963 +NC_011744 S-MART exon 1092263 1092865 . - . ID=cds963-exon5;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0-exon5;Parent=cds963 +NC_011744 S-MART CDS 1093545 1098842 . + . product=HTH-type transcriptional regulator;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 7883720%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002395572.1;Dbxref=Genbank:YP_002395572.1,GeneID:7138280;ID=cds966;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1 +NC_011744 S-MART exon 1093545 1094858 . + . ID=cds966-exon1;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1-exon1;Parent=cds966 +NC_011744 S-MART exon 1094925 1098317 . + . ID=cds966-exon2;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1-exon2;Parent=cds966 +NC_011744 S-MART exon 1098390 1098842 . + . ID=cds966-exon3;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1-exon3;Parent=cds966 +NC_011744 S-MART CDS 1098871 1107675 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395579.1;Dbxref=Genbank:YP_002395579.1,GeneID:7138286;ID=cds973;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0 +NC_011744 S-MART exon 1098871 1102056 . - . ID=cds973-exon1;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon1;Parent=cds973 +NC_011744 S-MART exon 1102090 1103565 . - . ID=cds973-exon2;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon2;Parent=cds973 +NC_011744 S-MART exon 1103574 1104080 . - . ID=cds973-exon3;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon3;Parent=cds973 +NC_011744 S-MART exon 1104099 1105676 . - . ID=cds973-exon4;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon4;Parent=cds973 +NC_011744 S-MART exon 1105678 1107675 . - . ID=cds973-exon5;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0-exon5;Parent=cds973 +NC_011744 S-MART CDS 1108177 1114597 . - . product=Hcp %28Haemolysin co-regulated protein%29;nbElements=6.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 15659065%2C 8557353%3B Product type f : factor;gbkey=CDS;protein_id=YP_002395585.1;Dbxref=Genbank:YP_002395585.1,GeneID:7138292;ID=cds979;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1 +NC_011744 S-MART exon 1108177 1111427 . - . ID=cds979-exon1;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1-exon1;Parent=cds979 +NC_011744 S-MART exon 1111441 1114004 . - . ID=cds979-exon2;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1-exon2;Parent=cds979 +NC_011744 S-MART exon 1114079 1114597 . - . ID=cds979-exon3;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1-exon3;Parent=cds979 +NC_011744 S-MART CDS 1115052 1119360 . + . product=Sigma 54 dependent transcriptional regulator;nbElements=2.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type r : regulator;gbkey=CDS;protein_id=YP_002395587.1;Dbxref=Genbank:YP_002395587.1,GeneID:7138294;ID=cds981;Name=YP_002395587.1--YP_002395586.1 +NC_011744 S-MART CDS 1119421 1127185 . - . product=hypothetical protein;nbElements=5.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395592.1;Dbxref=Genbank:YP_002395592.1,GeneID:7138298;ID=cds986;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1 +NC_011744 S-MART exon 1119421 1121770 . - . ID=cds986-exon1;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon1;Parent=cds986 +NC_011744 S-MART exon 1121789 1124044 . - . ID=cds986-exon2;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon2;Parent=cds986 +NC_011744 S-MART exon 1124057 1125499 . - . ID=cds986-exon3;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon3;Parent=cds986 +NC_011744 S-MART exon 1125503 1127185 . - . ID=cds986-exon4;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1-exon4;Parent=cds986 +NC_011744 S-MART CDS 1127390 1137370 . - . product=hypothetical protein;nbElements=10.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395602.1;Dbxref=Genbank:YP_002395602.1,GeneID:7138308;ID=cds996;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0 +NC_011744 S-MART exon 1127390 1128417 . - . ID=cds996-exon1;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon1;Parent=cds996 +NC_011744 S-MART exon 1128510 1128872 . - . ID=cds996-exon2;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon2;Parent=cds996 +NC_011744 S-MART exon 1128876 1135536 . - . ID=cds996-exon3;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon3;Parent=cds996 +NC_011744 S-MART exon 1135538 1137370 . - . ID=cds996-exon4;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0-exon4;Parent=cds996 +NC_011744 S-MART CDS 1138091 1148704 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395603.1;Dbxref=Genbank:YP_002395603.1,GeneID:7138309;ID=cds997;Name=YP_002395603.1 +NC_011744 S-MART CDS 1148963 1149922 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395604.1;Dbxref=Genbank:YP_002395604.1,GeneID:7138310;ID=cds998;Name=YP_002395604.1 +NC_011744 S-MART CDS 1150345 1152942 . - . product=nitrate reductase large subunit;transl_table=11;gbkey=CDS;protein_id=YP_002395605.1;Dbxref=Genbank:YP_002395605.1,GeneID:7138312;ID=cds999;Name=YP_002395605.1 +NC_011744 S-MART CDS 1153415 1160053 . + . product=Serine-threonine protein kinase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395609.1;Dbxref=Genbank:YP_002395609.1,GeneID:7138316;ID=cds1003;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1 +NC_011744 S-MART exon 1153415 1155997 . + . ID=cds1003-exon1;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon1;Parent=cds1003 +NC_011744 S-MART exon 1156136 1156480 . + . ID=cds1003-exon2;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon2;Parent=cds1003 +NC_011744 S-MART exon 1156624 1158093 . + . ID=cds1003-exon3;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon3;Parent=cds1003 +NC_011744 S-MART exon 1158218 1160053 . + . ID=cds1003-exon4;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1-exon4;Parent=cds1003 +NC_011744 S-MART CDS 1160129 1161292 . - . product=DNA-binding transcriptional regulator FruR;transl_table=11;Note=binds D-fructose as an inducer%3B involved in regulation of operons for central pathways of carbon metabolism;gbkey=CDS;protein_id=YP_002395610.1;Dbxref=Genbank:YP_002395610.1,GeneID:7138317;ID=cds1004;Name=YP_002395610.1 +NC_011744 S-MART CDS 1161525 1165421 . + . product=Phosphotransferase system%2C fructose-specific IIC component;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395613.1;Dbxref=Genbank:YP_002395613.1,GeneID:7138320;ID=cds1007;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1 +NC_011744 S-MART exon 1161525 1162658 . + . ID=cds1007-exon1;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1-exon1;Parent=cds1007 +NC_011744 S-MART exon 1162668 1163645 . + . ID=cds1007-exon2;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1-exon2;Parent=cds1007 +NC_011744 S-MART exon 1163661 1165421 . + . ID=cds1007-exon3;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1-exon3;Parent=cds1007 +NC_011744 S-MART CDS 1165522 1171829 . - . product=hypothetical protein;nbElements=5.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395618.1;Dbxref=Genbank:YP_002395618.1,GeneID:7138325;ID=cds1012;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1 +NC_011744 S-MART exon 1165522 1166454 . - . ID=cds1012-exon1;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1-exon1;Parent=cds1012 +NC_011744 S-MART exon 1166461 1171829 . - . ID=cds1012-exon2;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1-exon2;Parent=cds1012 +NC_011744 S-MART CDS 1171985 1175738 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395623.1;Dbxref=Genbank:YP_002395623.1,GeneID:7138330;ID=cds1017;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1 +NC_011744 S-MART exon 1171985 1172602 . + . ID=cds1017-exon1;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon1;Parent=cds1017 +NC_011744 S-MART exon 1172614 1173525 . + . ID=cds1017-exon2;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon2;Parent=cds1017 +NC_011744 S-MART exon 1173534 1175497 . + . ID=cds1017-exon3;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon3;Parent=cds1017 +NC_011744 S-MART exon 1175586 1175738 . + . ID=cds1017-exon4;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1-exon4;Parent=cds1017 +NC_011744 S-MART CDS 1175849 1176172 . - . product=aromatic ring-cleaving dioxygenase;transl_table=11;gbkey=CDS;protein_id=YP_002395624.1;Dbxref=Genbank:YP_002395624.1,GeneID:7138331;ID=cds1018;Name=YP_002395624.1 +NC_011744 S-MART CDS 1176355 1177212 . - . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395625.1;Dbxref=Genbank:YP_002395625.1,GeneID:7138332;ID=cds1019;Name=YP_002395625.1 +NC_011744 S-MART CDS 1177465 1177785 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395626.1;Dbxref=Genbank:YP_002395626.1,GeneID:7138333;ID=cds1020;Name=YP_002395626.1 +NC_011744 S-MART CDS 1177488 1177832 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395627.1;Dbxref=Genbank:YP_002395627.1,GeneID:7138334;ID=cds1021;Name=YP_002395627.1 +NC_011744 S-MART CDS 1178012 1178392 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395628.1;Dbxref=Genbank:YP_002395628.1,GeneID:7138335;ID=cds1022;Name=YP_002395628.1 +NC_011744 S-MART CDS 1178987 1181946 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395630.1;Dbxref=Genbank:YP_002395630.1,GeneID:7138337;ID=cds1024;Name=YP_002395630.1--YP_002395629.1 +NC_011744 S-MART exon 1178987 1180225 . + . ID=cds1024-exon1;Name=YP_002395630.1--YP_002395629.1-exon1;Parent=cds1024 +NC_011744 S-MART exon 1180303 1181946 . + . ID=cds1024-exon2;Name=YP_002395630.1--YP_002395629.1-exon2;Parent=cds1024 +NC_011744 S-MART CDS 1182101 1184455 . + . product=fatty acid cis%2Ftrans isomerase;transl_table=11;gbkey=CDS;protein_id=YP_002395631.1;Dbxref=Genbank:YP_002395631.1,GeneID:7138338;ID=cds1025;Name=YP_002395631.1 +NC_011744 S-MART CDS 1184694 1187726 . - . product=Signal transduction histidine kinase;transl_table=11;gbkey=CDS;protein_id=YP_002395632.1;Dbxref=Genbank:YP_002395632.1,GeneID:7138339;ID=cds1026;Name=YP_002395632.1 +NC_011744 S-MART CDS 1187819 1189363 . + . product=methylglyoxal synthase;nbElements=2.000000;transl_table=11;Note=catalyzes the formation of methylglyoxal from glycerone phosphate;gbkey=CDS;protein_id=YP_002395634.1;Dbxref=Genbank:YP_002395634.1,GeneID:7138341;ID=cds1028;Name=YP_002395634.1--YP_002395633.1 +NC_011744 S-MART exon 1187819 1188847 . + . ID=cds1028-exon1;Name=YP_002395634.1--YP_002395633.1-exon1;Parent=cds1028 +NC_011744 S-MART exon 1188908 1189363 . + . ID=cds1028-exon2;Name=YP_002395634.1--YP_002395633.1-exon2;Parent=cds1028 +NC_011744 S-MART CDS 1189691 1191253 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395635.1;Dbxref=Genbank:YP_002395635.1,GeneID:7138342;ID=cds1029;Name=YP_002395635.1 +NC_011744 S-MART CDS 1191462 1191929 . - . product=transcription regulator protein;transl_table=11;gbkey=CDS;protein_id=YP_002395636.1;Dbxref=Genbank:YP_002395636.1,GeneID:7138343;ID=cds1030;Name=YP_002395636.1 +NC_011744 S-MART CDS 1192081 1193043 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395637.1;Dbxref=Genbank:YP_002395637.1,GeneID:7138344;ID=cds1031;Name=YP_002395637.1 +NC_011744 S-MART CDS 1193246 1193389 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395638.1;Dbxref=Genbank:YP_002395638.1,GeneID:7138345;ID=cds1032;Name=YP_002395638.1 +NC_011744 S-MART CDS 1193474 1193665 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395639.1;Dbxref=Genbank:YP_002395639.1,GeneID:7138346;ID=cds1033;Name=YP_002395639.1 +NC_011744 S-MART CDS 1193628 1196734 . + . product=M6 secreted metalloprotease;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 3050359%2C 9371455%2C 7140755%2C 6421577%2C 12029046%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395641.1;Dbxref=Genbank:YP_002395641.1,GeneID:7138348;ID=cds1035;Name=YP_002395641.1--YP_002395640.1 +NC_011744 S-MART exon 1193628 1193930 . + . ID=cds1035-exon1;Name=YP_002395641.1--YP_002395640.1-exon1;Parent=cds1035 +NC_011744 S-MART exon 1193978 1196734 . + . ID=cds1035-exon2;Name=YP_002395641.1--YP_002395640.1-exon2;Parent=cds1035 +NC_011744 S-MART CDS 1196948 1198174 . - . product=permease;transl_table=11;gbkey=CDS;protein_id=YP_002395642.1;Dbxref=Genbank:YP_002395642.1,GeneID:7138349;ID=cds1036;Name=YP_002395642.1 +NC_011744 S-MART CDS 1198432 1199322 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395643.1;Dbxref=Genbank:YP_002395643.1,GeneID:7138350;ID=cds1037;Name=YP_002395643.1 +NC_011744 S-MART CDS 1199417 1205405 . - . product=response regulator receiver:Metal-dependent phosphohydrolase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395645.1;Dbxref=Genbank:YP_002395645.1,GeneID:7138352;ID=cds1039;Name=YP_002395645.1--YP_002395644.1 +NC_011744 S-MART CDS 1205725 1209463 . - . product=enterobactin ABC transporter substrate-binding protein;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 2651410%2C 8388528%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395650.1;Dbxref=Genbank:YP_002395650.1,GeneID:7138357;ID=cds1044;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1 +NC_011744 S-MART exon 1205725 1206489 . - . ID=cds1044-exon1;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1-exon1;Parent=cds1044 +NC_011744 S-MART exon 1206502 1208398 . - . ID=cds1044-exon2;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1-exon2;Parent=cds1044 +NC_011744 S-MART exon 1208498 1209463 . - . ID=cds1044-exon3;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1-exon3;Parent=cds1044 +NC_011744 S-MART CDS 1210829 1211422 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395651.1;Dbxref=Genbank:YP_002395651.1,GeneID:7138358;ID=cds1045;Name=YP_002395651.1 +NC_011744 S-MART CDS 1211676 1215586 . - . product=secretion protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395655.1;Dbxref=Genbank:YP_002395655.1,GeneID:7138362;ID=cds1049;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1 +NC_011744 S-MART exon 1211676 1212332 . - . ID=cds1049-exon1;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1-exon1;Parent=cds1049 +NC_011744 S-MART exon 1212333 1213433 . - . ID=cds1049-exon2;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1-exon2;Parent=cds1049 +NC_011744 S-MART exon 1213456 1215586 . - . ID=cds1049-exon3;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1-exon3;Parent=cds1049 +NC_011744 S-MART CDS 1215746 1216739 . + . product=transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395657.1;Dbxref=Genbank:YP_002395657.1,GeneID:7138364;ID=cds1051;Name=YP_002395657.1--YP_002395656.1 +NC_011744 S-MART exon 1215746 1216501 . + . ID=cds1051-exon1;Name=YP_002395657.1--YP_002395656.1-exon1;Parent=cds1051 +NC_011744 S-MART exon 1216584 1216739 . + . ID=cds1051-exon2;Name=YP_002395657.1--YP_002395656.1-exon2;Parent=cds1051 +NC_011744 S-MART CDS 1217046 1217513 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395658.1;Dbxref=Genbank:YP_002395658.1,GeneID:7138365;ID=cds1052;Name=YP_002395658.1 +NC_011744 S-MART CDS 1217709 1218146 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395659.1;Dbxref=Genbank:YP_002395659.1,GeneID:7138366;ID=cds1053;Name=YP_002395659.1 +NC_011744 S-MART CDS 1218285 1219951 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395661.1;Dbxref=Genbank:YP_002395661.1,GeneID:7138368;ID=cds1055;Name=YP_002395661.1--YP_002395660.1 +NC_011744 S-MART exon 1218285 1219187 . + . ID=cds1055-exon1;Name=YP_002395661.1--YP_002395660.1-exon1;Parent=cds1055 +NC_011744 S-MART exon 1219325 1219951 . + . ID=cds1055-exon2;Name=YP_002395661.1--YP_002395660.1-exon2;Parent=cds1055 +NC_011744 S-MART CDS 1220080 1220766 . - . product=thiamine-phosphate pyrophosphorylase;transl_table=11;Note=Condenses 4-methyl-5-%28beta-hydroxyethyl%29-thiazole monophosphate and 4-amino-5-hydroxymethyl pyrimidine pyrophosphate to form thiamine monophosphate;gbkey=CDS;protein_id=YP_002395662.1;Dbxref=Genbank:YP_002395662.1,GeneID:7138369;ID=cds1056;Name=YP_002395662.1 +NC_011744 S-MART CDS 1220957 1222900 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395663.1;Dbxref=Genbank:YP_002395663.1,GeneID:7138370;ID=cds1057;Name=YP_002395663.1 +NC_011744 S-MART CDS 1223038 1230181 . - . product=AraC family transcriptional regulator;nbElements=9.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395671.1;Dbxref=Genbank:YP_002395671.1,GeneID:7138378;ID=cds1065;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666. +NC_011744 S-MART exon 1223038 1223880 . - . ID=cds1065-exon1;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon1;Parent=cds1065 +NC_011744 S-MART exon 1223894 1224562 . - . ID=cds1065-exon2;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon2;Parent=cds1065 +NC_011744 S-MART exon 1224571 1225527 . - . ID=cds1065-exon3;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon3;Parent=cds1065 +NC_011744 S-MART exon 1225643 1228137 . - . ID=cds1065-exon4;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon4;Parent=cds1065 +NC_011744 S-MART exon 1228234 1228345 . - . ID=cds1065-exon5;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon5;Parent=cds1065 +NC_011744 S-MART exon 1228444 1229361 . - . ID=cds1065-exon6;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon6;Parent=cds1065 +NC_011744 S-MART exon 1229447 1230181 . - . ID=cds1065-exon7;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666.-exon7;Parent=cds1065 +NC_011744 S-MART CDS 1230355 1231404 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395672.1;Dbxref=Genbank:YP_002395672.1,GeneID:7138379;ID=cds1066;Name=YP_002395672.1 +NC_011744 S-MART CDS 1231806 1233284 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395674.1;Dbxref=Genbank:YP_002395674.1,GeneID:7138381;ID=cds1068;Name=YP_002395674.1--YP_002395673.1 +NC_011744 S-MART exon 1231806 1232057 . - . ID=cds1068-exon1;Name=YP_002395674.1--YP_002395673.1-exon1;Parent=cds1068 +NC_011744 S-MART exon 1232187 1233284 . - . ID=cds1068-exon2;Name=YP_002395674.1--YP_002395673.1-exon2;Parent=cds1068 +NC_011744 S-MART CDS 1233780 1234454 . + . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395675.1;Dbxref=Genbank:YP_002395675.1,GeneID:7138382;ID=cds1069;Name=YP_002395675.1 +NC_011744 S-MART CDS 1234860 1236490 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395677.1;Dbxref=Genbank:YP_002395677.1,GeneID:7138384;ID=cds1071;Name=YP_002395677.1--YP_002395676.1 +NC_011744 S-MART CDS 1236580 1236819 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395678.1;Dbxref=Genbank:YP_002395678.1,GeneID:7138385;ID=cds1072;Name=YP_002395678.1 +NC_011744 S-MART CDS 1237160 1238719 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395679.1;Dbxref=Genbank:YP_002395679.1,GeneID:7138386;ID=cds1073;Name=YP_002395679.1 +NC_011744 S-MART CDS 1238904 1239575 . - . product=Rha phage protein;transl_table=11;gbkey=CDS;protein_id=YP_002395680.1;Dbxref=Genbank:YP_002395680.1,GeneID:7138387;ID=cds1074;Name=YP_002395680.1 +NC_011744 S-MART CDS 1240399 1240725 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395682.1;Dbxref=Genbank:YP_002395682.1,GeneID:7138389;ID=cds1076;Name=YP_002395682.1 +NC_011744 S-MART CDS 1239985 1243687 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395687.1;Dbxref=Genbank:YP_002395687.1,GeneID:7138394;ID=cds1081;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1 +NC_011744 S-MART exon 1239985 1241782 . + . ID=cds1081-exon1;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon1;Parent=cds1081 +NC_011744 S-MART exon 1241811 1242586 . + . ID=cds1081-exon2;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon2;Parent=cds1081 +NC_011744 S-MART exon 1242672 1243118 . + . ID=cds1081-exon3;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon3;Parent=cds1081 +NC_011744 S-MART exon 1243247 1243687 . + . ID=cds1081-exon4;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1-exon4;Parent=cds1081 +NC_011744 S-MART CDS 1243775 1244818 . - . product=guanosine 5%27-monophosphate oxidoreductase;transl_table=11;Note=catalyzes the NADPH-dependent deamination of GMP to inosine monophosphate;gbkey=CDS;protein_id=YP_002395688.1;Dbxref=Genbank:YP_002395688.1,GeneID:7138395;ID=cds1082;Name=YP_002395688.1 +NC_011744 S-MART CDS 1245677 1247120 . - . product=Response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395690.1;Dbxref=Genbank:YP_002395690.1,GeneID:7138397;ID=cds1084;Name=YP_002395690.1--YP_002395689.1 +NC_011744 S-MART exon 1245677 1246114 . - . ID=cds1084-exon1;Name=YP_002395690.1--YP_002395689.1-exon1;Parent=cds1084 +NC_011744 S-MART exon 1246116 1247120 . - . ID=cds1084-exon2;Name=YP_002395690.1--YP_002395689.1-exon2;Parent=cds1084 +NC_011744 S-MART CDS 1247502 1247753 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395691.1;Dbxref=Genbank:YP_002395691.1,GeneID:7138398;ID=cds1085;Name=YP_002395691.1 +NC_011744 S-MART CDS 1247997 1249349 . - . product=Na%28%2B%29 driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395692.1;Dbxref=Genbank:YP_002395692.1,GeneID:7138399;ID=cds1086;Name=YP_002395692.1 +NC_011744 S-MART CDS 1249450 1251402 . + . product=Transporter%2C drug%2Fmetabolite exporter family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395694.1;Dbxref=Genbank:YP_002395694.1,GeneID:7138401;ID=cds1088;Name=YP_002395694.1--YP_002395693.1 +NC_011744 S-MART exon 1249450 1250460 . + . ID=cds1088-exon1;Name=YP_002395694.1--YP_002395693.1-exon1;Parent=cds1088 +NC_011744 S-MART exon 1250548 1251402 . + . ID=cds1088-exon2;Name=YP_002395694.1--YP_002395693.1-exon2;Parent=cds1088 +NC_011744 S-MART CDS 1251577 1252032 . - . product=lactoylglutathione lyase;transl_table=11;gbkey=CDS;protein_id=YP_002395695.1;Dbxref=Genbank:YP_002395695.1,GeneID:7138402;ID=cds1089;Name=YP_002395695.1 +NC_011744 S-MART CDS 1252374 1253291 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395697.1;Dbxref=Genbank:YP_002395697.1,GeneID:7138404;ID=cds1091;Name=YP_002395697.1--YP_002395696.1 +NC_011744 S-MART exon 1252374 1252640 . + . ID=cds1091-exon1;Name=YP_002395697.1--YP_002395696.1-exon1;Parent=cds1091 +NC_011744 S-MART exon 1252683 1253291 . + . ID=cds1091-exon2;Name=YP_002395697.1--YP_002395696.1-exon2;Parent=cds1091 +NC_011744 S-MART CDS 1253443 1254468 . - . product=Zinc-containing alcohol dehydrogenase superfamily protein;transl_table=11;gbkey=CDS;protein_id=YP_002395698.1;Dbxref=Genbank:YP_002395698.1,GeneID:7138405;ID=cds1092;Name=YP_002395698.1 +NC_011744 S-MART CDS 1254675 1255607 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395699.1;Dbxref=Genbank:YP_002395699.1,GeneID:7138406;ID=cds1093;Name=YP_002395699.1 +NC_011744 S-MART CDS 1255752 1256138 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395700.1;Dbxref=Genbank:YP_002395700.1,GeneID:7138407;ID=cds1094;Name=YP_002395700.1 +NC_011744 S-MART CDS 1256291 1262248 . - . product=Vibrioferrin receptor;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395705.1;Dbxref=Genbank:YP_002395705.1,GeneID:7138412;ID=cds1099;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1 +NC_011744 S-MART exon 1256291 1260037 . - . ID=cds1099-exon1;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1-exon1;Parent=cds1099 +NC_011744 S-MART exon 1260125 1262248 . - . ID=cds1099-exon2;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1-exon2;Parent=cds1099 +NC_011744 S-MART CDS 1262438 1264474 . - . product=ferric siderophore receptor;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395706.1;Dbxref=Genbank:YP_002395706.1,GeneID:7138413;ID=cds1100;Name=YP_002395706.1 +NC_011744 S-MART CDS 1264725 1272000 . + . product=Vibrioferrin biosynthesis protein PvsE;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type f : factor;gbkey=CDS;protein_id=YP_002395711.1;Dbxref=Genbank:YP_002395711.1,GeneID:7138418;ID=cds1105;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1 +NC_011744 S-MART exon 1264725 1267744 . + . ID=cds1105-exon1;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1-exon1;Parent=cds1105 +NC_011744 S-MART exon 1267751 1272000 . + . ID=cds1105-exon2;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1-exon2;Parent=cds1105 +NC_011744 S-MART CDS 1272522 1273160 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395712.1;Dbxref=Genbank:YP_002395712.1,GeneID:7138419;ID=cds1106;Name=YP_002395712.1 +NC_011744 S-MART CDS 1273484 1274677 . - . product=acetate kinase;transl_table=11;Note=AckA utilizes acetate and can acetylate CheY which increases signal strength during flagellar rotation%3B utilizes magnesium and ATP%3B also involved in conversion of acetate to aceyl-CoA;gbkey=CDS;protein_id=YP_002395713.1;Dbxref=Genbank:YP_002395713.1,GeneID:7138420;ID=cds1107;Name=YP_002395713.1 +NC_011744 S-MART CDS 1274895 1275119 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395714.1;Dbxref=Genbank:YP_002395714.1,GeneID:7138421;ID=cds1108;Name=YP_002395714.1 +NC_011744 S-MART CDS 1275408 1277477 . - . product=ATP-dependent RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002395715.1;Dbxref=Genbank:YP_002395715.1,GeneID:7138422;ID=cds1109;Name=YP_002395715.1 +NC_011744 S-MART CDS 1277786 1280713 . + . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395717.1;Dbxref=Genbank:YP_002395717.1,GeneID:7138424;ID=cds1111;Name=YP_002395717.1--YP_002395716.1 +NC_011744 S-MART exon 1277786 1279792 . + . ID=cds1111-exon1;Name=YP_002395717.1--YP_002395716.1-exon1;Parent=cds1111 +NC_011744 S-MART exon 1279907 1280713 . + . ID=cds1111-exon2;Name=YP_002395717.1--YP_002395716.1-exon2;Parent=cds1111 +NC_011744 S-MART CDS 1280972 1281334 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395718.1;Dbxref=Genbank:YP_002395718.1,GeneID:7138425;ID=cds1112;Name=YP_002395718.1 +NC_011744 S-MART CDS 1281588 1282403 . + . product=ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395719.1;Dbxref=Genbank:YP_002395719.1,GeneID:7138426;ID=cds1113;Name=YP_002395719.1 +NC_011744 S-MART CDS 1282598 1283302 . - . product=acyl dehydratase;transl_table=11;gbkey=CDS;protein_id=YP_002395720.1;Dbxref=Genbank:YP_002395720.1,GeneID:7138427;ID=cds1114;Name=YP_002395720.1 +NC_011744 S-MART CDS 1283617 1287968 . - . product=membrane fusion protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395722.1;Dbxref=Genbank:YP_002395722.1,GeneID:7138429;ID=cds1116;Name=YP_002395722.1--YP_002395721.1 +NC_011744 S-MART exon 1283617 1286769 . - . ID=cds1116-exon1;Name=YP_002395722.1--YP_002395721.1-exon1;Parent=cds1116 +NC_011744 S-MART exon 1286781 1287968 . - . ID=cds1116-exon2;Name=YP_002395722.1--YP_002395721.1-exon2;Parent=cds1116 +NC_011744 S-MART CDS 1288177 1288620 . + . product=deoxycytidylate deaminase;transl_table=11;gbkey=CDS;protein_id=YP_002395723.1;Dbxref=Genbank:YP_002395723.1,GeneID:7138430;ID=cds1117;Name=YP_002395723.1 +NC_011744 S-MART CDS 1288736 1291491 . - . product=peptidase T;nbElements=3.000000;transl_table=11;Note=catalyzes the release of the N-terminal amino acid from a tripeptide;gbkey=CDS;protein_id=YP_002395726.1;Dbxref=Genbank:YP_002395726.1,GeneID:7138433;ID=cds1120;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1 +NC_011744 S-MART exon 1288736 1289578 . - . ID=cds1120-exon1;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1-exon1;Parent=cds1120 +NC_011744 S-MART exon 1289715 1290182 . - . ID=cds1120-exon2;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1-exon2;Parent=cds1120 +NC_011744 S-MART exon 1290259 1291491 . - . ID=cds1120-exon3;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1-exon3;Parent=cds1120 +NC_011744 S-MART CDS 1291841 1291987 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395727.1;Dbxref=Genbank:YP_002395727.1,GeneID:7138434;ID=cds1121;Name=YP_002395727.1 +NC_011744 S-MART CDS 1292195 1292341 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395728.1;Dbxref=Genbank:YP_002395728.1,GeneID:7138435;ID=cds1122;Name=YP_002395728.1 +NC_011744 S-MART CDS 1292358 1293410 . + . product=NADPH-dependent aldose reductase;transl_table=11;gbkey=CDS;protein_id=YP_002395729.1;Dbxref=Genbank:YP_002395729.1,GeneID:7138436;ID=cds1123;Name=YP_002395729.1 +NC_011744 S-MART CDS 1293602 1294336 . + . product=rRNA methylase;transl_table=11;gbkey=CDS;protein_id=YP_002395730.1;Dbxref=Genbank:YP_002395730.1,GeneID:7138437;ID=cds1124;Name=YP_002395730.1 +NC_011744 S-MART CDS 1294434 1294757 . - . product=Ferredoxin;transl_table=11;gbkey=CDS;protein_id=YP_002395731.1;Dbxref=Genbank:YP_002395731.1,GeneID:7138438;ID=cds1125;Name=YP_002395731.1 +NC_011744 S-MART CDS 1295012 1296643 . + . product=Uncharacterized FAD-dependent dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395732.1;Dbxref=Genbank:YP_002395732.1,GeneID:7138439;ID=cds1126;Name=YP_002395732.1 +NC_011744 S-MART CDS 1296763 1298226 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395733.1;Dbxref=Genbank:YP_002395733.1,GeneID:7138440;ID=cds1127;Name=YP_002395733.1 +NC_011744 S-MART CDS 1298424 1300868 . - . product=Nitroreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395735.1;Dbxref=Genbank:YP_002395735.1,GeneID:7138442;ID=cds1129;Name=YP_002395735.1--YP_002395734.1 +NC_011744 S-MART exon 1298424 1300079 . - . ID=cds1129-exon1;Name=YP_002395735.1--YP_002395734.1-exon1;Parent=cds1129 +NC_011744 S-MART exon 1300212 1300868 . - . ID=cds1129-exon2;Name=YP_002395735.1--YP_002395734.1-exon2;Parent=cds1129 +NC_011744 S-MART CDS 1301316 1303737 . + . product=DNA polymerase III subunit alpha;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395738.1;Dbxref=Genbank:YP_002395738.1,GeneID:7138445;ID=cds1132;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1 +NC_011744 S-MART exon 1301316 1302515 . + . ID=cds1132-exon1;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1-exon1;Parent=cds1132 +NC_011744 S-MART exon 1302625 1303029 . + . ID=cds1132-exon2;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1-exon2;Parent=cds1132 +NC_011744 S-MART exon 1303114 1303737 . + . ID=cds1132-exon3;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1-exon3;Parent=cds1132 +NC_011744 S-MART CDS 1303820 1304656 . - . product=DNA polymerase III subunit alpha;transl_table=11;gbkey=CDS;protein_id=YP_002395739.1;Dbxref=Genbank:YP_002395739.1,GeneID:7138446;ID=cds1133;Name=YP_002395739.1 +NC_011744 S-MART CDS 1304898 1305092 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395740.1;Dbxref=Genbank:YP_002395740.1,GeneID:7138447;ID=cds1134;Name=YP_002395740.1 +NC_011744 S-MART CDS 1305233 1307669 . - . product=Oxidoreductase%2C aldo%2Fketo reductase 2 family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395742.1;Dbxref=Genbank:YP_002395742.1,GeneID:7138449;ID=cds1136;Name=YP_002395742.1--YP_002395741.1 +NC_011744 S-MART exon 1305233 1306639 . - . ID=cds1136-exon1;Name=YP_002395742.1--YP_002395741.1-exon1;Parent=cds1136 +NC_011744 S-MART exon 1306761 1307669 . - . ID=cds1136-exon2;Name=YP_002395742.1--YP_002395741.1-exon2;Parent=cds1136 +NC_011744 S-MART CDS 1307887 1308480 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395743.1;Dbxref=Genbank:YP_002395743.1,GeneID:7138450;ID=cds1137;Name=YP_002395743.1 +NC_011744 S-MART CDS 1308702 1310549 . + . product=peptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395744.1;Dbxref=Genbank:YP_002395744.1,GeneID:7138451;ID=cds1138;Name=YP_002395744.1 +NC_011744 S-MART CDS 1310644 1313357 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395747.1;Dbxref=Genbank:YP_002395747.1,GeneID:7138454;ID=cds1141;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1 +NC_011744 S-MART exon 1310644 1311069 . - . ID=cds1141-exon1;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1-exon1;Parent=cds1141 +NC_011744 S-MART exon 1311160 1312209 . - . ID=cds1141-exon2;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1-exon2;Parent=cds1141 +NC_011744 S-MART exon 1312356 1313357 . - . ID=cds1141-exon3;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1-exon3;Parent=cds1141 +NC_011744 S-MART CDS 1313533 1314327 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395748.1;Dbxref=Genbank:YP_002395748.1,GeneID:7138455;ID=cds1142;Name=YP_002395748.1 +NC_011744 S-MART CDS 1314439 1315272 . - . product=recombinase A;transl_table=11;gbkey=CDS;protein_id=YP_002395749.1;Dbxref=Genbank:YP_002395749.1,GeneID:7138456;ID=cds1143;Name=YP_002395749.1 +NC_011744 S-MART CDS 1315467 1317071 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395750.1;Dbxref=Genbank:YP_002395750.1,GeneID:7138457;ID=cds1144;Name=YP_002395750.1 +NC_011744 S-MART CDS 1317324 1317572 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395751.1;Dbxref=Genbank:YP_002395751.1,GeneID:7138458;ID=cds1145;Name=YP_002395751.1 +NC_011744 S-MART CDS 1318149 1318313 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395752.1;Dbxref=Genbank:YP_002395752.1,GeneID:7138459;ID=cds1146;Name=YP_002395752.1 +NC_011744 S-MART CDS 1318446 1321973 . + . product=outer membrane protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395756.1;Dbxref=Genbank:YP_002395756.1,GeneID:7138463;ID=cds1150;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1 +NC_011744 S-MART exon 1318446 1320557 . + . ID=cds1150-exon1;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1-exon1;Parent=cds1150 +NC_011744 S-MART exon 1320672 1321130 . + . ID=cds1150-exon2;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1-exon2;Parent=cds1150 +NC_011744 S-MART exon 1321254 1321973 . + . ID=cds1150-exon3;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1-exon3;Parent=cds1150 +NC_011744 S-MART CDS 1322129 1323394 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395757.1;Dbxref=Genbank:YP_002395757.1,GeneID:7138464;ID=cds1151;Name=YP_002395757.1 +NC_011744 S-MART CDS 1323621 1324172 . + . product=Ribosomal-protein-serine acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395758.1;Dbxref=Genbank:YP_002395758.1,GeneID:7138465;ID=cds1152;Name=YP_002395758.1 +NC_011744 S-MART CDS 1324315 1326361 . - . product=Response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395760.1;Dbxref=Genbank:YP_002395760.1,GeneID:7138467;ID=cds1154;Name=YP_002395760.1--YP_002395759.1 +NC_011744 S-MART CDS 1326887 1327444 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395761.1;Dbxref=Genbank:YP_002395761.1,GeneID:7138468;ID=cds1155;Name=YP_002395761.1 +NC_011744 S-MART CDS 1327606 1329549 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395762.1;Dbxref=Genbank:YP_002395762.1,GeneID:7138469;ID=cds1156;Name=YP_002395762.1 +NC_011744 S-MART CDS 1329878 1330042 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395763.1;Dbxref=Genbank:YP_002395763.1,GeneID:7138470;ID=cds1157;Name=YP_002395763.1 +NC_011744 S-MART CDS 1330397 1332139 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395764.1;Dbxref=Genbank:YP_002395764.1,GeneID:7138471;ID=cds1158;Name=YP_002395764.1 +NC_011744 S-MART CDS 1332366 1334445 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395767.1;Dbxref=Genbank:YP_002395767.1,GeneID:7138474;ID=cds1161;Name=YP_002395767.1--YP_002395766.1--YP_002395765.1 +NC_011744 S-MART CDS 1335086 1336894 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395771.1;Dbxref=Genbank:YP_002395771.1,GeneID:7138478;ID=cds1165;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1 +NC_011744 S-MART exon 1335086 1335376 . + . ID=cds1165-exon1;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon1;Parent=cds1165 +NC_011744 S-MART exon 1335416 1335703 . + . ID=cds1165-exon2;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon2;Parent=cds1165 +NC_011744 S-MART exon 1335760 1336290 . + . ID=cds1165-exon3;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon3;Parent=cds1165 +NC_011744 S-MART exon 1336367 1336894 . + . ID=cds1165-exon4;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1-exon4;Parent=cds1165 +NC_011744 S-MART CDS 1337143 1337580 . + . product=riboflavin biosynthesis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395772.1;Dbxref=Genbank:YP_002395772.1,GeneID:7138479;ID=cds1166;Name=YP_002395772.1 +NC_011744 S-MART CDS 1337598 1338092 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395773.1;Dbxref=Genbank:YP_002395773.1,GeneID:7138480;ID=cds1167;Name=YP_002395773.1 +NC_011744 S-MART CDS 1338365 1340077 . + . product=ribosomal large chain pseudouridine synthase A;transl_table=11;gbkey=CDS;protein_id=YP_002395774.1;Dbxref=Genbank:YP_002395774.1,GeneID:7138481;ID=cds1168;Name=YP_002395774.1 +NC_011744 S-MART CDS 1340204 1340401 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395775.1;Dbxref=Genbank:YP_002395775.1,GeneID:7138482;ID=cds1169;Name=YP_002395775.1 +NC_011744 S-MART CDS 1340280 1340660 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395776.1;Dbxref=Genbank:YP_002395776.1,GeneID:7138483;ID=cds1170;Name=YP_002395776.1 +NC_011744 S-MART CDS 1340984 1343287 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395778.1;Dbxref=Genbank:YP_002395778.1,GeneID:7138485;ID=cds1172;Name=YP_002395778.1--YP_002395777.1 +NC_011744 S-MART exon 1340984 1342144 . + . ID=cds1172-exon1;Name=YP_002395778.1--YP_002395777.1-exon1;Parent=cds1172 +NC_011744 S-MART exon 1342271 1343287 . + . ID=cds1172-exon2;Name=YP_002395778.1--YP_002395777.1-exon2;Parent=cds1172 +NC_011744 S-MART CDS 1343308 1344375 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395779.1;Dbxref=Genbank:YP_002395779.1,GeneID:7138486;ID=cds1173;Name=YP_002395779.1 +NC_011744 S-MART CDS 1344533 1345891 . - . product=Na%2B%2FH%2B antiporter;transl_table=11;gbkey=CDS;protein_id=YP_002395780.1;Dbxref=Genbank:YP_002395780.1,GeneID:7138487;ID=cds1174;Name=YP_002395780.1 +NC_011744 S-MART CDS 1346082 1347993 . - . product=beta-lactamase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395782.1;Dbxref=Genbank:YP_002395782.1,GeneID:7138489;ID=cds1176;Name=YP_002395782.1--YP_002395781.1 +NC_011744 S-MART exon 1346082 1346846 . - . ID=cds1176-exon1;Name=YP_002395782.1--YP_002395781.1-exon1;Parent=cds1176 +NC_011744 S-MART exon 1346914 1347993 . - . ID=cds1176-exon2;Name=YP_002395782.1--YP_002395781.1-exon2;Parent=cds1176 +NC_011744 S-MART CDS 1348155 1349939 . - . product=transport protein;transl_table=11;gbkey=CDS;protein_id=YP_002395783.1;Dbxref=Genbank:YP_002395783.1,GeneID:7138490;ID=cds1177;Name=YP_002395783.1 +NC_011744 S-MART CDS 1350071 1350241 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395784.1;Dbxref=Genbank:YP_002395784.1,GeneID:7138491;ID=cds1178;Name=YP_002395784.1 +NC_011744 S-MART CDS 1350543 1351909 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395786.1;Dbxref=Genbank:YP_002395786.1,GeneID:7138493;ID=cds1180;Name=YP_002395786.1--YP_002395785.1 +NC_011744 S-MART exon 1350543 1351448 . + . ID=cds1180-exon1;Name=YP_002395786.1--YP_002395785.1-exon1;Parent=cds1180 +NC_011744 S-MART exon 1351481 1351909 . + . ID=cds1180-exon2;Name=YP_002395786.1--YP_002395785.1-exon2;Parent=cds1180 +NC_011744 S-MART CDS 1351985 1352779 . - . product=Zn-dependent hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002395787.1;Dbxref=Genbank:YP_002395787.1,GeneID:7138494;ID=cds1181;Name=YP_002395787.1 +NC_011744 S-MART CDS 1353161 1353763 . + . product=prolyl 4-hydroxylase subunit alpha;transl_table=11;gbkey=CDS;protein_id=YP_002395788.1;Dbxref=Genbank:YP_002395788.1,GeneID:7138495;ID=cds1182;Name=YP_002395788.1 +NC_011744 S-MART CDS 1354039 1355331 . + . product=sugar ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395789.1;Dbxref=Genbank:YP_002395789.1,GeneID:7138496;ID=cds1183;Name=YP_002395789.1 +NC_011744 S-MART CDS 1355408 1355551 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395790.1;Dbxref=Genbank:YP_002395790.1,GeneID:7138497;ID=cds1184;Name=YP_002395790.1 +NC_011744 S-MART CDS 1355502 1359415 . + . product=glycerophosphoryl diester phosphodiesterase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395794.1;Dbxref=Genbank:YP_002395794.1,GeneID:7138501;ID=cds1188;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1 +NC_011744 S-MART exon 1355502 1356458 . + . ID=cds1188-exon1;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon1;Parent=cds1188 +NC_011744 S-MART exon 1356497 1357339 . + . ID=cds1188-exon2;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon2;Parent=cds1188 +NC_011744 S-MART exon 1357449 1358639 . + . ID=cds1188-exon3;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon3;Parent=cds1188 +NC_011744 S-MART exon 1358696 1359415 . + . ID=cds1188-exon4;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1-exon4;Parent=cds1188 +NC_011744 S-MART CDS 1359575 1360312 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395795.1;Dbxref=Genbank:YP_002395795.1,GeneID:7138502;ID=cds1189;Name=YP_002395795.1 +NC_011744 S-MART CDS 1360418 1361676 . - . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395797.1;Dbxref=Genbank:YP_002395797.1,GeneID:7138504;ID=cds1191;Name=YP_002395797.1--YP_002395796.1 +NC_011744 S-MART exon 1360418 1361191 . - . ID=cds1191-exon1;Name=YP_002395797.1--YP_002395796.1-exon1;Parent=cds1191 +NC_011744 S-MART exon 1361194 1361676 . - . ID=cds1191-exon2;Name=YP_002395797.1--YP_002395796.1-exon2;Parent=cds1191 +NC_011744 S-MART CDS 1361888 1362676 . - . product=Glycosyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395798.1;Dbxref=Genbank:YP_002395798.1,GeneID:7138505;ID=cds1192;Name=YP_002395798.1 +NC_011744 S-MART CDS 1363264 1364244 . + . product=oxidoreductase;transl_table=11;gbkey=CDS;protein_id=YP_002395799.1;Dbxref=Genbank:YP_002395799.1,GeneID:7138506;ID=cds1193;Name=YP_002395799.1 +NC_011744 S-MART CDS 1364408 1364569 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395800.1;Dbxref=Genbank:YP_002395800.1,GeneID:7138507;ID=cds1194;Name=YP_002395800.1 +NC_011744 S-MART CDS 1364917 1365549 . + . product=glutaredoxin;transl_table=11;Note=cofactor involved in the reduction of disulfides;gbkey=CDS;protein_id=YP_002395801.1;Dbxref=Genbank:YP_002395801.1,GeneID:7138508;ID=cds1195;Name=YP_002395801.1 +NC_011744 S-MART CDS 1365674 1366507 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395802.1;Dbxref=Genbank:YP_002395802.1,GeneID:7138509;ID=cds1196;Name=YP_002395802.1 +NC_011744 S-MART CDS 1366686 1369058 . + . product=phosphoenolpyruvate synthase;transl_table=11;Note=catalyzes the formation of phosphoenolpyruvate from pyruvate;gbkey=CDS;protein_id=YP_002395803.1;Dbxref=Genbank:YP_002395803.1,GeneID:7138510;ID=cds1197;Name=YP_002395803.1 +NC_011744 S-MART CDS 1369271 1370608 . + . product=Multi antimicrobial extrusion protein MatE;transl_table=11;gbkey=CDS;protein_id=YP_002395804.1;Dbxref=Genbank:YP_002395804.1,GeneID:7138511;ID=cds1198;Name=YP_002395804.1 +NC_011744 S-MART CDS 1371102 1375019 . + . product=coenzyme A disulfide reductase;nbElements=4.000000;transl_table=11;Note=CoADR%3B specific for coenzyme A disulfide%3B requires NADH%3B involved in protecting cells against reactive oxygen species by recycling coenzyme A disulfide which can reduce hydrogen peroxide;gbkey=CDS;protein_id=YP_002395808.1;Dbxref=Genbank:YP_002395808.1,GeneID:7138515;ID=cds1202;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1 +NC_011744 S-MART exon 1371102 1371767 . + . ID=cds1202-exon1;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon1;Parent=cds1202 +NC_011744 S-MART exon 1371792 1372175 . + . ID=cds1202-exon2;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon2;Parent=cds1202 +NC_011744 S-MART exon 1372213 1373619 . + . ID=cds1202-exon3;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon3;Parent=cds1202 +NC_011744 S-MART exon 1373697 1375019 . + . ID=cds1202-exon4;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1-exon4;Parent=cds1202 +NC_011744 S-MART rRNA 1375211 1378513 . - . product=ribosomal RNA 23S;nbElements=4.000000;gbkey=rRNA;Dbxref=GeneID:7138806;ID=rna19;Name=rna19--rna18--rna17--rna16 +NC_011744 S-MART exon 1375211 1375301 . - . ID=rna19-exon1;Name=rna19--rna18--rna17--rna16-exon1;Parent=rna19 +NC_011744 S-MART exon 1375369 1375489 . - . ID=rna19-exon2;Name=rna19--rna18--rna17--rna16-exon2;Parent=rna19 +NC_011744 S-MART exon 1375609 1378513 . - . ID=rna19-exon3;Name=rna19--rna18--rna17--rna16-exon3;Parent=rna19 +NC_011744 S-MART rRNA 1378932 1381102 . - . product=ribosomal RNA 16S;nbElements=6.000000;gbkey=rRNA;Dbxref=GeneID:7138825;ID=rna25;Name=rna25--rna24--rna23--rna22--rna21--rna20 +NC_011744 S-MART exon 1378932 1379007 . - . ID=rna25-exon1;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon1;Parent=rna25 +NC_011744 S-MART exon 1379076 1379151 . - . ID=rna25-exon2;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon2;Parent=rna25 +NC_011744 S-MART exon 1379177 1379252 . - . ID=rna25-exon3;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon3;Parent=rna25 +NC_011744 S-MART exon 1379278 1379353 . - . ID=rna25-exon4;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon4;Parent=rna25 +NC_011744 S-MART exon 1379356 1379431 . - . ID=rna25-exon5;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon5;Parent=rna25 +NC_011744 S-MART exon 1379555 1381102 . - . ID=rna25-exon6;Name=rna25--rna24--rna23--rna22--rna21--rna20-exon6;Parent=rna25 +NC_011744 S-MART CDS 1381807 1382205 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395809.1;Dbxref=Genbank:YP_002395809.1,GeneID:7138808;ID=cds1203;Name=YP_002395809.1 +NC_011744 S-MART CDS 1382635 1383234 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395810.1;Dbxref=Genbank:YP_002395810.1,GeneID:7138517;ID=cds1204;Name=YP_002395810.1 +NC_011744 S-MART CDS 1383353 1387051 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395813.1;Dbxref=Genbank:YP_002395813.1,GeneID:7138520;ID=cds1207;Name=YP_002395813.1--YP_002395812.1--YP_002395811.1 +NC_011744 S-MART CDS 1387465 1388616 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395814.1;Dbxref=Genbank:YP_002395814.1,GeneID:7138521;ID=cds1208;Name=YP_002395814.1 +NC_011744 S-MART CDS 1387832 1388134 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395815.1;Dbxref=Genbank:YP_002395815.1,GeneID:7138522;ID=cds1209;Name=YP_002395815.1 +NC_011744 S-MART CDS 1388799 1389693 . + . product=RNA polymerase sigma factor SigZ;nbElements=2.000000;transl_table=11;Note=Member of the extracytoplasmic function sigma factors which are active under specific conditions%3B binds with the catalytic core of RNA polymerase to produce the holoenzyme and directs bacterial core RNA polymerase to specific promoter elements to initiate transcription;gbkey=CDS;protein_id=YP_002395817.1;Dbxref=Genbank:YP_002395817.1,GeneID:7138524;ID=cds1211;Name=YP_002395817.1--YP_002395816.1 +NC_011744 S-MART exon 1388799 1389095 . + . ID=cds1211-exon1;Name=YP_002395817.1--YP_002395816.1-exon1;Parent=cds1211 +NC_011744 S-MART exon 1389133 1389693 . + . ID=cds1211-exon2;Name=YP_002395817.1--YP_002395816.1-exon2;Parent=cds1211 +NC_011744 S-MART CDS 1389802 1390446 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395818.1;Dbxref=Genbank:YP_002395818.1,GeneID:7138525;ID=cds1212;Name=YP_002395818.1 +NC_011744 S-MART CDS 1390708 1392261 . + . product=MFS transporter;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395820.1;Dbxref=Genbank:YP_002395820.1,GeneID:7138527;ID=cds1214;Name=YP_002395820.1--YP_002395819.1 +NC_011744 S-MART exon 1390708 1391040 . + . ID=cds1214-exon1;Name=YP_002395820.1--YP_002395819.1-exon1;Parent=cds1214 +NC_011744 S-MART exon 1391056 1392261 . + . ID=cds1214-exon2;Name=YP_002395820.1--YP_002395819.1-exon2;Parent=cds1214 +NC_011744 S-MART CDS 1392486 1393211 . + . product=permeases;transl_table=11;gbkey=CDS;protein_id=YP_002395821.1;Dbxref=Genbank:YP_002395821.1,GeneID:7138528;ID=cds1215;Name=YP_002395821.1 +NC_011744 S-MART CDS 1393571 1395505 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395822.1;Dbxref=Genbank:YP_002395822.1,GeneID:7138529;ID=cds1216;Name=YP_002395822.1 +NC_011744 S-MART CDS 1395684 1396430 . - . product=membrane-associated phospholipid phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002395823.1;Dbxref=Genbank:YP_002395823.1,GeneID:7138530;ID=cds1217;Name=YP_002395823.1 +NC_011744 S-MART ncRNA 1396814 1396964 . + . product=FMN riboswitch;ncrna_class=other;gbkey=ncRNA;Dbxref=GeneID:7138531;ID=rna26;Name=rna26 +NC_011744 S-MART CDS 1397312 1397968 . + . product=3%2C4-dihydroxy-2-butanone 4-phosphate synthase;transl_table=11;Note=DHBP synthase%3B functions during riboflavin biosynthesis;gbkey=CDS;protein_id=YP_002395824.1;Dbxref=Genbank:YP_002395824.1,GeneID:7138803;ID=cds1218;Name=YP_002395824.1 +NC_011744 S-MART CDS 1400921 1401307 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395828.1;Dbxref=Genbank:YP_002395828.1,GeneID:7138535;ID=cds1222;Name=YP_002395828.1 +NC_011744 S-MART CDS 1398300 1403173 . + . product=ABC transporter ATP-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395829.1;Dbxref=Genbank:YP_002395829.1,GeneID:7138536;ID=cds1223;Name=YP_002395829.1--YP_002395827.1--YP_002395826.1--YP_002395825.1 +NC_011744 S-MART CDS 1404163 1404264 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395831.1;Dbxref=Genbank:YP_002395831.1,GeneID:7138538;ID=cds1225;Name=YP_002395831.1 +NC_011744 S-MART CDS 1403576 1404439 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395830.1;Dbxref=Genbank:YP_002395830.1,GeneID:7138537;ID=cds1224;Name=YP_002395830.1 +NC_011744 S-MART CDS 1404576 1405475 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395832.1;Dbxref=Genbank:YP_002395832.1,GeneID:7138539;ID=cds1226;Name=YP_002395832.1 +NC_011744 S-MART CDS 1405635 1406273 . + . product=NADH-flavin reductase;transl_table=11;gbkey=CDS;protein_id=YP_002395833.1;Dbxref=Genbank:YP_002395833.1,GeneID:7138540;ID=cds1227;Name=YP_002395833.1 +NC_011744 S-MART CDS 1406351 1407979 . - . product=oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395835.1;Dbxref=Genbank:YP_002395835.1,GeneID:7138542;ID=cds1229;Name=YP_002395835.1--YP_002395834.1 +NC_011744 S-MART exon 1406351 1407004 . - . ID=cds1229-exon1;Name=YP_002395835.1--YP_002395834.1-exon1;Parent=cds1229 +NC_011744 S-MART exon 1407140 1407979 . - . ID=cds1229-exon2;Name=YP_002395835.1--YP_002395834.1-exon2;Parent=cds1229 +NC_011744 S-MART CDS 1408013 1408351 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395836.1;Dbxref=Genbank:YP_002395836.1,GeneID:7138543;ID=cds1230;Name=YP_002395836.1 +NC_011744 S-MART CDS 1408399 1409310 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395837.1;Dbxref=Genbank:YP_002395837.1,GeneID:7138544;ID=cds1231;Name=YP_002395837.1 +NC_011744 S-MART CDS 1409515 1410234 . + . product=Oxidoreductase%2C short-chain dehydrogenase%2Freductase;transl_table=11;gbkey=CDS;protein_id=YP_002395838.1;Dbxref=Genbank:YP_002395838.1,GeneID:7138545;ID=cds1232;Name=YP_002395838.1 +NC_011744 S-MART CDS 1410452 1411099 . - . product=outer membrane protein W;transl_table=11;Note=receptor for colicin S4;gbkey=CDS;protein_id=YP_002395839.1;Dbxref=Genbank:YP_002395839.1,GeneID:7138546;ID=cds1233;Name=YP_002395839.1 +NC_011744 S-MART CDS 1411500 1412720 . + . product=glucose-1-phosphate adenylyltransferase;transl_table=11;Note=catalyzes the formation of ADP-glucose and diphosphate from ATP and alpha-D-glucose 1-phosphate;gbkey=CDS;protein_id=YP_002395840.1;Dbxref=Genbank:YP_002395840.1,GeneID:7138547;ID=cds1234;Name=YP_002395840.1 +NC_011744 S-MART CDS 1413164 1413520 . + . product=ribosomal subunit interface protein;transl_table=11;gbkey=CDS;protein_id=YP_002395841.1;Dbxref=Genbank:YP_002395841.1,GeneID:7138548;ID=cds1235;Name=YP_002395841.1 +NC_011744 S-MART CDS 1413807 1414866 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395843.1;Dbxref=Genbank:YP_002395843.1,GeneID:7138550;ID=cds1237;Name=YP_002395843.1--YP_002395842.1 +NC_011744 S-MART exon 1413807 1413962 . + . ID=cds1237-exon1;Name=YP_002395843.1--YP_002395842.1-exon1;Parent=cds1237 +NC_011744 S-MART exon 1414072 1414866 . + . ID=cds1237-exon2;Name=YP_002395843.1--YP_002395842.1-exon2;Parent=cds1237 +NC_011744 S-MART CDS 1415023 1418583 . - . product=ABC transporter substrate-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395847.1;Dbxref=Genbank:YP_002395847.1,GeneID:7138554;ID=cds1241;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1 +NC_011744 S-MART exon 1415023 1417408 . - . ID=cds1241-exon1;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1-exon1;Parent=cds1241 +NC_011744 S-MART exon 1417537 1418583 . - . ID=cds1241-exon2;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1-exon2;Parent=cds1241 +NC_011744 S-MART CDS 1418879 1420120 . - . product=glycerophosphoryl diester phosphodiesterase;transl_table=11;gbkey=CDS;protein_id=YP_002395848.1;Dbxref=Genbank:YP_002395848.1,GeneID:7138555;ID=cds1242;Name=YP_002395848.1 +NC_011744 S-MART CDS 1420375 1423697 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395850.1;Dbxref=Genbank:YP_002395850.1,GeneID:7138557;ID=cds1244;Name=YP_002395850.1--YP_002395849.1 +NC_011744 S-MART CDS 1424117 1424959 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395851.1;Dbxref=Genbank:YP_002395851.1,GeneID:7138558;ID=cds1245;Name=YP_002395851.1 +NC_011744 S-MART CDS 1425300 1426140 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395853.1;Dbxref=Genbank:YP_002395853.1,GeneID:7138560;ID=cds1247;Name=YP_002395853.1--YP_002395852.1 +NC_011744 S-MART exon 1425300 1425659 . + . ID=cds1247-exon1;Name=YP_002395853.1--YP_002395852.1-exon1;Parent=cds1247 +NC_011744 S-MART exon 1425697 1426140 . + . ID=cds1247-exon2;Name=YP_002395853.1--YP_002395852.1-exon2;Parent=cds1247 +NC_011744 S-MART CDS 1426447 1427217 . + . product=glutamine amidotransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395854.1;Dbxref=Genbank:YP_002395854.1,GeneID:7138561;ID=cds1248;Name=YP_002395854.1 +NC_011744 S-MART CDS 1427257 1431262 . - . product=Lipase%2Facylhydrolase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395858.1;Dbxref=Genbank:YP_002395858.1,GeneID:7138565;ID=cds1252;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1 +NC_011744 S-MART exon 1427257 1428243 . - . ID=cds1252-exon1;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon1;Parent=cds1252 +NC_011744 S-MART exon 1428301 1429308 . - . ID=cds1252-exon2;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon2;Parent=cds1252 +NC_011744 S-MART exon 1429400 1430290 . - . ID=cds1252-exon3;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon3;Parent=cds1252 +NC_011744 S-MART exon 1430426 1431262 . - . ID=cds1252-exon4;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1-exon4;Parent=cds1252 +NC_011744 S-MART CDS 1431541 1433601 . + . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002395859.1;Dbxref=Genbank:YP_002395859.1,GeneID:7138566;ID=cds1253;Name=YP_002395859.1 +NC_011744 S-MART CDS 1433713 1434225 . - . product=rRNA methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395860.1;Dbxref=Genbank:YP_002395860.1,GeneID:7138567;ID=cds1254;Name=YP_002395860.1 +NC_011744 S-MART CDS 1434499 1436160 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395861.1;Dbxref=Genbank:YP_002395861.1,GeneID:7138568;ID=cds1255;Name=YP_002395861.1 +NC_011744 S-MART CDS 1436281 1437150 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395862.1;Dbxref=Genbank:YP_002395862.1,GeneID:7138569;ID=cds1256;Name=YP_002395862.1 +NC_011744 S-MART CDS 1437413 1437760 . + . product=acyl-CoA synthetase;transl_table=11;gbkey=CDS;protein_id=YP_002395863.1;Dbxref=Genbank:YP_002395863.1,GeneID:7138570;ID=cds1257;Name=YP_002395863.1 +NC_011744 S-MART CDS 1437953 1439611 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395864.1;Dbxref=Genbank:YP_002395864.1,GeneID:7138571;ID=cds1258;Name=YP_002395864.1 +NC_011744 S-MART CDS 1439849 1440274 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395865.1;Dbxref=Genbank:YP_002395865.1,GeneID:7138572;ID=cds1259;Name=YP_002395865.1 +NC_011744 S-MART CDS 1440540 1441439 . - . product=drug%2Fmetabolite transporter permease;transl_table=11;gbkey=CDS;protein_id=YP_002395866.1;Dbxref=Genbank:YP_002395866.1,GeneID:7138573;ID=cds1260;Name=YP_002395866.1 +NC_011744 S-MART CDS 1441562 1442989 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395867.1;Dbxref=Genbank:YP_002395867.1,GeneID:7138574;ID=cds1261;Name=YP_002395867.1 +NC_011744 S-MART CDS 1443084 1444880 . - . product=transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395869.1;Dbxref=Genbank:YP_002395869.1,GeneID:7138576;ID=cds1263;Name=YP_002395869.1--YP_002395868.1 +NC_011744 S-MART exon 1443084 1443647 . - . ID=cds1263-exon1;Name=YP_002395869.1--YP_002395868.1-exon1;Parent=cds1263 +NC_011744 S-MART exon 1443648 1444880 . - . ID=cds1263-exon2;Name=YP_002395869.1--YP_002395868.1-exon2;Parent=cds1263 +NC_011744 S-MART CDS 1445373 1446536 . + . product=tyrosine-specific transport protein;transl_table=11;gbkey=CDS;protein_id=YP_002395870.1;Dbxref=Genbank:YP_002395870.1,GeneID:7138577;ID=cds1264;Name=YP_002395870.1 +NC_011744 S-MART CDS 1446689 1447132 . - . product=MarR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395871.1;Dbxref=Genbank:YP_002395871.1,GeneID:7138578;ID=cds1265;Name=YP_002395871.1 +NC_011744 S-MART CDS 1447254 1447676 . + . product=Osmotically inducible protein C;transl_table=11;gbkey=CDS;protein_id=YP_002395872.1;Dbxref=Genbank:YP_002395872.1,GeneID:7138579;ID=cds1266;Name=YP_002395872.1 +NC_011744 S-MART CDS 1447782 1449785 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395873.1;Dbxref=Genbank:YP_002395873.1,GeneID:7138580;ID=cds1267;Name=YP_002395873.1 +NC_011744 S-MART CDS 1450187 1451071 . + . product=Transcriptional regulator%2C TetR family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395875.1;Dbxref=Genbank:YP_002395875.1,GeneID:7138582;ID=cds1269;Name=YP_002395875.1--YP_002395874.1 +NC_011744 S-MART exon 1450187 1450360 . + . ID=cds1269-exon1;Name=YP_002395875.1--YP_002395874.1-exon1;Parent=cds1269 +NC_011744 S-MART exon 1450487 1451071 . + . ID=cds1269-exon2;Name=YP_002395875.1--YP_002395874.1-exon2;Parent=cds1269 +NC_011744 S-MART CDS 1451183 1453048 . - . product=PTS system fructose-specific transporter subunit IIABC;transl_table=11;gbkey=CDS;protein_id=YP_002395876.1;Dbxref=Genbank:YP_002395876.1,GeneID:7138583;ID=cds1270;Name=YP_002395876.1 +NC_011744 S-MART CDS 1453292 1454375 . + . product=Phosphotransferase system mannitol%2Ffructose-specific IIA domain;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395878.1;Dbxref=Genbank:YP_002395878.1,GeneID:7138585;ID=cds1272;Name=YP_002395878.1--YP_002395877.1 +NC_011744 S-MART exon 1453292 1453594 . + . ID=cds1272-exon1;Name=YP_002395878.1--YP_002395877.1-exon1;Parent=cds1272 +NC_011744 S-MART exon 1453602 1454375 . + . ID=cds1272-exon2;Name=YP_002395878.1--YP_002395877.1-exon2;Parent=cds1272 +NC_011744 S-MART CDS 1454439 1455302 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395879.1;Dbxref=Genbank:YP_002395879.1,GeneID:7138586;ID=cds1273;Name=YP_002395879.1 +NC_011744 S-MART CDS 1455657 1457561 . + . product=PTS system fructose-specific transporter subunit IIABC;transl_table=11;gbkey=CDS;protein_id=YP_002395880.1;Dbxref=Genbank:YP_002395880.1,GeneID:7138587;ID=cds1274;Name=YP_002395880.1 +NC_011744 S-MART CDS 1457746 1458909 . + . product=mannose-6-phosphate isomerase;transl_table=11;gbkey=CDS;protein_id=YP_002395881.1;Dbxref=Genbank:YP_002395881.1,GeneID:7138588;ID=cds1275;Name=YP_002395881.1 +NC_011744 S-MART CDS 1459174 1461052 . + . product=PTS system fructose-specific transporter subunit IIBC;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395883.1;Dbxref=Genbank:YP_002395883.1,GeneID:7138590;ID=cds1277;Name=YP_002395883.1--YP_002395882.1 +NC_011744 S-MART exon 1459174 1459614 . + . ID=cds1277-exon1;Name=YP_002395883.1--YP_002395882.1-exon1;Parent=cds1277 +NC_011744 S-MART exon 1459628 1461052 . + . ID=cds1277-exon2;Name=YP_002395883.1--YP_002395882.1-exon2;Parent=cds1277 +NC_011744 S-MART CDS 1461160 1462836 . - . product=ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395884.1;Dbxref=Genbank:YP_002395884.1,GeneID:7138591;ID=cds1278;Name=YP_002395884.1 +NC_011744 S-MART CDS 1462960 1463670 . + . product=murein peptide amidase A;transl_table=11;gbkey=CDS;protein_id=YP_002395885.1;Dbxref=Genbank:YP_002395885.1,GeneID:7138592;ID=cds1279;Name=YP_002395885.1 +NC_011744 S-MART CDS 1463824 1465293 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395886.1;Dbxref=Genbank:YP_002395886.1,GeneID:7138593;ID=cds1280;Name=YP_002395886.1 +NC_011744 S-MART CDS 1465782 1466930 . + . product=alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395887.1;Dbxref=Genbank:YP_002395887.1,GeneID:7138594;ID=cds1281;Name=YP_002395887.1 +NC_011744 S-MART CDS 1467088 1467927 . + . product=esterase;transl_table=11;gbkey=CDS;protein_id=YP_002395888.1;Dbxref=Genbank:YP_002395888.1,GeneID:7138595;ID=cds1282;Name=YP_002395888.1 +NC_011744 S-MART CDS 1468090 1468969 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395890.1;Dbxref=Genbank:YP_002395890.1,GeneID:7138597;ID=cds1284;Name=YP_002395890.1--YP_002395889.1 +NC_011744 S-MART exon 1468090 1468422 . + . ID=cds1284-exon1;Name=YP_002395890.1--YP_002395889.1-exon1;Parent=cds1284 +NC_011744 S-MART exon 1468568 1468969 . + . ID=cds1284-exon2;Name=YP_002395890.1--YP_002395889.1-exon2;Parent=cds1284 +NC_011744 S-MART CDS 1469206 1469946 . + . product=mutT domain protein-like;transl_table=11;gbkey=CDS;protein_id=YP_002395891.1;Dbxref=Genbank:YP_002395891.1,GeneID:7138598;ID=cds1285;Name=YP_002395891.1 +NC_011744 S-MART CDS 1470064 1470687 . - . product=homoserine%2Fhomoserine lactone efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002395892.1;Dbxref=Genbank:YP_002395892.1,GeneID:7138599;ID=cds1286;Name=YP_002395892.1 +NC_011744 S-MART CDS 1470805 1471716 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395893.1;Dbxref=Genbank:YP_002395893.1,GeneID:7138600;ID=cds1287;Name=YP_002395893.1 +NC_011744 S-MART CDS 1471790 1473310 . - . product=NAD-dependent aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395894.1;Dbxref=Genbank:YP_002395894.1,GeneID:7138601;ID=cds1288;Name=YP_002395894.1 +NC_011744 S-MART CDS 1473552 1475425 . + . product=Fis family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395896.1;Dbxref=Genbank:YP_002395896.1,GeneID:7138603;ID=cds1290;Name=YP_002395896.1--YP_002395895.1 +NC_011744 S-MART CDS 1475833 1478073 . + . product=methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395897.1;Dbxref=Genbank:YP_002395897.1,GeneID:7138604;ID=cds1291;Name=YP_002395897.1 +NC_011744 S-MART CDS 1478211 1479062 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395898.1;Dbxref=Genbank:YP_002395898.1,GeneID:7138605;ID=cds1292;Name=YP_002395898.1 +NC_011744 S-MART CDS 1479200 1479847 . + . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395899.1;Dbxref=Genbank:YP_002395899.1,GeneID:7138606;ID=cds1293;Name=YP_002395899.1 +NC_011744 S-MART CDS 1479924 1480773 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395901.1;Dbxref=Genbank:YP_002395901.1,GeneID:7138608;ID=cds1295;Name=YP_002395901.1--YP_002395900.1 +NC_011744 S-MART exon 1479924 1480157 . - . ID=cds1295-exon1;Name=YP_002395901.1--YP_002395900.1-exon1;Parent=cds1295 +NC_011744 S-MART exon 1480168 1480773 . - . ID=cds1295-exon2;Name=YP_002395901.1--YP_002395900.1-exon2;Parent=cds1295 +NC_011744 S-MART CDS 1480964 1482406 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395902.1;Dbxref=Genbank:YP_002395902.1,GeneID:7138609;ID=cds1296;Name=YP_002395902.1 +NC_011744 S-MART CDS 1482615 1483073 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395903.1;Dbxref=Genbank:YP_002395903.1,GeneID:7138610;ID=cds1297;Name=YP_002395903.1 +NC_011744 S-MART CDS 1483259 1485253 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395906.1;Dbxref=Genbank:YP_002395906.1,GeneID:7138613;ID=cds1300;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1 +NC_011744 S-MART exon 1483259 1483960 . + . ID=cds1300-exon1;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1-exon1;Parent=cds1300 +NC_011744 S-MART exon 1484046 1484837 . + . ID=cds1300-exon2;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1-exon2;Parent=cds1300 +NC_011744 S-MART exon 1484930 1485253 . + . ID=cds1300-exon3;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1-exon3;Parent=cds1300 +NC_011744 S-MART CDS 1485444 1485704 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395907.1;Dbxref=Genbank:YP_002395907.1,GeneID:7138614;ID=cds1301;Name=YP_002395907.1 +NC_011744 S-MART CDS 1485732 1487564 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395908.1;Dbxref=Genbank:YP_002395908.1,GeneID:7138615;ID=cds1302;Name=YP_002395908.1 +NC_011744 S-MART CDS 1487855 1489189 . - . product=anaerobic C4-dicarboxylate transporter;transl_table=11;Note=functions in anaerobic transport of C4-dicarboxylate compounds such as fumarate%3B similar to DcuA%3B DcuA and DcuB function as independent and mutually redundant C4-dicarboxylate %28aspartate%2C malate%2C fumarate and succinate%29 transporters;gbkey=CDS;protein_id=YP_002395909.1;Dbxref=Genbank:YP_002395909.1,GeneID:7138616;ID=cds1303;Name=YP_002395909.1 +NC_011744 S-MART CDS 1489595 1490254 . + . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395910.1;Dbxref=Genbank:YP_002395910.1,GeneID:7138617;ID=cds1304;Name=YP_002395910.1 +NC_011744 S-MART CDS 1490465 1491661 . + . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395912.1;Dbxref=Genbank:YP_002395912.1,GeneID:7138619;ID=cds1306;Name=YP_002395912.1--YP_002395911.1 +NC_011744 S-MART exon 1490465 1491091 . + . ID=cds1306-exon1;Name=YP_002395912.1--YP_002395911.1-exon1;Parent=cds1306 +NC_011744 S-MART exon 1491134 1491661 . + . ID=cds1306-exon2;Name=YP_002395912.1--YP_002395911.1-exon2;Parent=cds1306 +NC_011744 S-MART CDS 1491817 1492503 . + . product=DNA-3-methyladenine glycosylase;transl_table=11;gbkey=CDS;protein_id=YP_002395913.1;Dbxref=Genbank:YP_002395913.1,GeneID:7138620;ID=cds1307;Name=YP_002395913.1 +NC_011744 S-MART CDS 1492762 1493904 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395915.1;Dbxref=Genbank:YP_002395915.1,GeneID:7138622;ID=cds1309;Name=YP_002395915.1--YP_002395914.1 +NC_011744 S-MART exon 1492762 1493643 . + . ID=cds1309-exon1;Name=YP_002395915.1--YP_002395914.1-exon1;Parent=cds1309 +NC_011744 S-MART exon 1493713 1493904 . + . ID=cds1309-exon2;Name=YP_002395915.1--YP_002395914.1-exon2;Parent=cds1309 +NC_011744 S-MART CDS 1494104 1494520 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395916.1;Dbxref=Genbank:YP_002395916.1,GeneID:7138623;ID=cds1310;Name=YP_002395916.1 +NC_011744 S-MART CDS 1494720 1495373 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395917.1;Dbxref=Genbank:YP_002395917.1,GeneID:7138624;ID=cds1311;Name=YP_002395917.1 +NC_011744 S-MART CDS 1495584 1496496 . - . product=Transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395919.1;Dbxref=Genbank:YP_002395919.1,GeneID:7138626;ID=cds1313;Name=YP_002395919.1--YP_002395918.1 +NC_011744 S-MART exon 1495584 1495985 . - . ID=cds1313-exon1;Name=YP_002395919.1--YP_002395918.1-exon1;Parent=cds1313 +NC_011744 S-MART exon 1496014 1496496 . - . ID=cds1313-exon2;Name=YP_002395919.1--YP_002395918.1-exon2;Parent=cds1313 +NC_011744 S-MART CDS 1496621 1497514 . + . product=Permease of the drug-metabolite transporter %28DMT%29 superfamily;transl_table=11;gbkey=CDS;protein_id=YP_002395920.1;Dbxref=Genbank:YP_002395920.1,GeneID:7138627;ID=cds1314;Name=YP_002395920.1 +NC_011744 S-MART CDS 1497610 1498893 . - . product=transmembrane transport proteins;transl_table=11;gbkey=CDS;protein_id=YP_002395921.1;Dbxref=Genbank:YP_002395921.1,GeneID:7138628;ID=cds1315;Name=YP_002395921.1 +NC_011744 S-MART CDS 1498985 1500721 . + . product=ABC transporter substrate-bindnig protein;transl_table=11;gbkey=CDS;protein_id=YP_002395922.1;Dbxref=Genbank:YP_002395922.1,GeneID:7138629;ID=cds1316;Name=YP_002395922.1 +NC_011744 S-MART CDS 1500830 1501533 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395924.1;Dbxref=Genbank:YP_002395924.1,GeneID:7138631;ID=cds1318;Name=YP_002395924.1--YP_002395923.1 +NC_011744 S-MART CDS 1501648 1502550 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395925.1;Dbxref=Genbank:YP_002395925.1,GeneID:7138632;ID=cds1319;Name=YP_002395925.1 +NC_011744 S-MART CDS 1502816 1503733 . + . product=Permease of the drug%2Fmetabolite transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395926.1;Dbxref=Genbank:YP_002395926.1,GeneID:7138633;ID=cds1320;Name=YP_002395926.1 +NC_011744 S-MART CDS 1503909 1504016 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395927.1;Dbxref=Genbank:YP_002395927.1,GeneID:7138634;ID=cds1321;Name=YP_002395927.1 +NC_011744 S-MART CDS 1503996 1506286 . + . product=Na%2B driven multidrug efflux pump;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395929.1;Dbxref=Genbank:YP_002395929.1,GeneID:7138636;ID=cds1323;Name=YP_002395929.1--YP_002395928.1 +NC_011744 S-MART exon 1503996 1504838 . + . ID=cds1323-exon1;Name=YP_002395929.1--YP_002395928.1-exon1;Parent=cds1323 +NC_011744 S-MART exon 1504940 1506286 . + . ID=cds1323-exon2;Name=YP_002395929.1--YP_002395928.1-exon2;Parent=cds1323 +NC_011744 S-MART CDS 1506389 1509041 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395933.1;Dbxref=Genbank:YP_002395933.1,GeneID:7138640;ID=cds1327;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1 +NC_011744 S-MART exon 1506389 1507252 . - . ID=cds1327-exon1;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1-exon1;Parent=cds1327 +NC_011744 S-MART exon 1507261 1508740 . - . ID=cds1327-exon2;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1-exon2;Parent=cds1327 +NC_011744 S-MART exon 1508751 1509041 . - . ID=cds1327-exon3;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1-exon3;Parent=cds1327 +NC_011744 S-MART CDS 1509351 1510097 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395934.1;Dbxref=Genbank:YP_002395934.1,GeneID:7138641;ID=cds1328;Name=YP_002395934.1 +NC_011744 S-MART CDS 1510283 1512643 . - . product=ATP-dependent protease LA-related;transl_table=11;gbkey=CDS;protein_id=YP_002395935.1;Dbxref=Genbank:YP_002395935.1,GeneID:7138642;ID=cds1329;Name=YP_002395935.1 +NC_011744 S-MART CDS 1512884 1515019 . + . product=ABC transporter ATP-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395937.1;Dbxref=Genbank:YP_002395937.1,GeneID:7138644;ID=cds1331;Name=YP_002395937.1--YP_002395936.1 +NC_011744 S-MART exon 1512884 1513378 . + . ID=cds1331-exon1;Name=YP_002395937.1--YP_002395936.1-exon1;Parent=cds1331 +NC_011744 S-MART exon 1513391 1515019 . + . ID=cds1331-exon2;Name=YP_002395937.1--YP_002395936.1-exon2;Parent=cds1331 +NC_011744 S-MART CDS 1515440 1517185 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395939.1;Dbxref=Genbank:YP_002395939.1,GeneID:7138646;ID=cds1333;Name=YP_002395939.1--YP_002395938.1 +NC_011744 S-MART exon 1515440 1515808 . - . ID=cds1333-exon1;Name=YP_002395939.1--YP_002395938.1-exon1;Parent=cds1333 +NC_011744 S-MART exon 1515809 1517185 . - . ID=cds1333-exon2;Name=YP_002395939.1--YP_002395938.1-exon2;Parent=cds1333 +NC_011744 S-MART CDS 1516917 1517189 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395940.1;Dbxref=Genbank:YP_002395940.1,GeneID:7138647;ID=cds1334;Name=YP_002395940.1 +NC_011744 S-MART CDS 1517772 1518491 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395941.1;Dbxref=Genbank:YP_002395941.1,GeneID:7138648;ID=cds1335;Name=YP_002395941.1 +NC_011744 S-MART CDS 1518717 1523186 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395944.1;Dbxref=Genbank:YP_002395944.1,GeneID:7138651;ID=cds1338;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1 +NC_011744 S-MART exon 1518717 1518836 . - . ID=cds1338-exon1;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1-exon1;Parent=cds1338 +NC_011744 S-MART exon 1518867 1519880 . - . ID=cds1338-exon2;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1-exon2;Parent=cds1338 +NC_011744 S-MART exon 1519977 1523186 . - . ID=cds1338-exon3;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1-exon3;Parent=cds1338 +NC_011744 S-MART CDS 1523140 1524087 . + . product=galactose mutarotase;transl_table=11;gbkey=CDS;protein_id=YP_002395945.1;Dbxref=Genbank:YP_002395945.1,GeneID:7138652;ID=cds1339;Name=YP_002395945.1 +NC_011744 S-MART CDS 1524161 1533348 . - . product=Transcriptional regulator;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395952.1;Dbxref=Genbank:YP_002395952.1,GeneID:7138659;ID=cds1346;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0 +NC_011744 S-MART exon 1524161 1526617 . - . ID=cds1346-exon1;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon1;Parent=cds1346 +NC_011744 S-MART exon 1526669 1530020 . - . ID=cds1346-exon2;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon2;Parent=cds1346 +NC_011744 S-MART exon 1530022 1531008 . - . ID=cds1346-exon3;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon3;Parent=cds1346 +NC_011744 S-MART exon 1531075 1532322 . - . ID=cds1346-exon4;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon4;Parent=cds1346 +NC_011744 S-MART exon 1532341 1533348 . - . ID=cds1346-exon5;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0-exon5;Parent=cds1346 +NC_011744 S-MART CDS 1533954 1535294 . - . product=maltoporin ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395953.1;Dbxref=Genbank:YP_002395953.1,GeneID:7138660;ID=cds1347;Name=YP_002395953.1 +NC_011744 S-MART CDS 1535471 1535671 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395954.1;Dbxref=Genbank:YP_002395954.1,GeneID:7138661;ID=cds1348;Name=YP_002395954.1 +NC_011744 S-MART CDS 1535668 1538657 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395956.1;Dbxref=Genbank:YP_002395956.1,GeneID:7138663;ID=cds1350;Name=YP_002395956.1--YP_002395955.1 +NC_011744 S-MART exon 1535668 1537728 . - . ID=cds1350-exon1;Name=YP_002395956.1--YP_002395955.1-exon1;Parent=cds1350 +NC_011744 S-MART exon 1537740 1538657 . - . ID=cds1350-exon2;Name=YP_002395956.1--YP_002395955.1-exon2;Parent=cds1350 +NC_011744 S-MART CDS 1538905 1540599 . + . product=L-lactate permease;transl_table=11;gbkey=CDS;protein_id=YP_002395957.1;Dbxref=Genbank:YP_002395957.1,GeneID:7138664;ID=cds1351;Name=YP_002395957.1 +NC_011744 S-MART CDS 1540898 1542046 . + . product=L-lactate dehydrogenase;transl_table=11;Note=flavin mononucleotide-dependent dehydrogenase%3B functions in aerobic respiration and also has a role in anaerobic nitrate respiration;gbkey=CDS;protein_id=YP_002395958.1;Dbxref=Genbank:YP_002395958.1,GeneID:7138665;ID=cds1352;Name=YP_002395958.1 +NC_011744 S-MART CDS 1542475 1545714 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395960.1;Dbxref=Genbank:YP_002395960.1,GeneID:7138667;ID=cds1354;Name=YP_002395960.1--YP_002395959.1 +NC_011744 S-MART exon 1542475 1545330 . + . ID=cds1354-exon1;Name=YP_002395960.1--YP_002395959.1-exon1;Parent=cds1354 +NC_011744 S-MART exon 1545433 1545714 . + . ID=cds1354-exon2;Name=YP_002395960.1--YP_002395959.1-exon2;Parent=cds1354 +NC_011744 S-MART CDS 1545470 1546605 . - . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395962.1;Dbxref=Genbank:YP_002395962.1,GeneID:7138669;ID=cds1356;Name=YP_002395962.1--YP_002395961.1 +NC_011744 S-MART exon 1545470 1545712 . - . ID=cds1356-exon1;Name=YP_002395962.1--YP_002395961.1-exon1;Parent=cds1356 +NC_011744 S-MART exon 1545736 1546605 . - . ID=cds1356-exon2;Name=YP_002395962.1--YP_002395961.1-exon2;Parent=cds1356 +NC_011744 S-MART CDS 1546721 1547869 . + . product=Transcriptional regulatory protein;transl_table=11;gbkey=CDS;protein_id=YP_002395963.1;Dbxref=Genbank:YP_002395963.1,GeneID:7138670;ID=cds1357;Name=YP_002395963.1 +NC_011744 S-MART CDS 1548184 1549173 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395964.1;Dbxref=Genbank:YP_002395964.1,GeneID:7138671;ID=cds1358;Name=YP_002395964.1 +NC_011744 S-MART CDS 1549641 1550528 . + . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395966.1;Dbxref=Genbank:YP_002395966.1,GeneID:7138673;ID=cds1360;Name=YP_002395966.1--YP_002395965.1 +NC_011744 S-MART exon 1549641 1549898 . + . ID=cds1360-exon1;Name=YP_002395966.1--YP_002395965.1-exon1;Parent=cds1360 +NC_011744 S-MART exon 1550043 1550528 . + . ID=cds1360-exon2;Name=YP_002395966.1--YP_002395965.1-exon2;Parent=cds1360 +NC_011744 S-MART CDS 1550545 1553912 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395968.1;Dbxref=Genbank:YP_002395968.1,GeneID:7138675;ID=cds1362;Name=YP_002395968.1--YP_002395967.1 +NC_011744 S-MART exon 1550545 1553463 . - . ID=cds1362-exon1;Name=YP_002395968.1--YP_002395967.1-exon1;Parent=cds1362 +NC_011744 S-MART exon 1553574 1553912 . - . ID=cds1362-exon2;Name=YP_002395968.1--YP_002395967.1-exon2;Parent=cds1362 +NC_011744 S-MART CDS 1554214 1555437 . + . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395969.1;Dbxref=Genbank:YP_002395969.1,GeneID:7138676;ID=cds1363;Name=YP_002395969.1 +NC_011744 S-MART CDS 1555434 1555766 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395970.1;Dbxref=Genbank:YP_002395970.1,GeneID:7138677;ID=cds1364;Name=YP_002395970.1 +NC_011744 S-MART CDS 1555874 1556746 . + . product=pirin;transl_table=11;gbkey=CDS;protein_id=YP_002395971.1;Dbxref=Genbank:YP_002395971.1,GeneID:7138678;ID=cds1365;Name=YP_002395971.1 +NC_011744 S-MART CDS 1556978 1557259 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395972.1;Dbxref=Genbank:YP_002395972.1,GeneID:7138679;ID=cds1366;Name=YP_002395972.1 +NC_011744 S-MART CDS 1557643 1558107 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395973.1;Dbxref=Genbank:YP_002395973.1,GeneID:7138680;ID=cds1367;Name=YP_002395973.1 +NC_011744 S-MART CDS 1558509 1561049 . + . product=chitinase;transl_table=11;gbkey=CDS;protein_id=YP_002395974.1;Dbxref=Genbank:YP_002395974.1,GeneID:7138681;ID=cds1368;Name=YP_002395974.1 +NC_011744 S-MART CDS 1561183 1562055 . - . product=hydrolase or acyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395975.1;Dbxref=Genbank:YP_002395975.1,GeneID:7138682;ID=cds1369;Name=YP_002395975.1 +NC_011744 S-MART CDS 1562226 1562348 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395976.1;Dbxref=Genbank:YP_002395976.1,GeneID:7138683;ID=cds1370;Name=YP_002395976.1 +NC_011744 S-MART CDS 1562271 1562864 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395977.1;Dbxref=Genbank:YP_002395977.1,GeneID:7138684;ID=cds1371;Name=YP_002395977.1 +NC_011744 S-MART CDS 1563025 1565145 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395979.1;Dbxref=Genbank:YP_002395979.1,GeneID:7138686;ID=cds1373;Name=YP_002395979.1--YP_002395978.1 +NC_011744 S-MART exon 1563025 1563981 . + . ID=cds1373-exon1;Name=YP_002395979.1--YP_002395978.1-exon1;Parent=cds1373 +NC_011744 S-MART exon 1564105 1565145 . + . ID=cds1373-exon2;Name=YP_002395979.1--YP_002395978.1-exon2;Parent=cds1373 +NC_011744 S-MART CDS 1565304 1566143 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395980.1;Dbxref=Genbank:YP_002395980.1,GeneID:7138687;ID=cds1374;Name=YP_002395980.1 +NC_011744 S-MART CDS 1566254 1566730 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395981.1;Dbxref=Genbank:YP_002395981.1,GeneID:7138688;ID=cds1375;Name=YP_002395981.1 +NC_011744 S-MART CDS 1566976 1567611 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395982.1;Dbxref=Genbank:YP_002395982.1,GeneID:7138689;ID=cds1376;Name=YP_002395982.1 +NC_011744 S-MART CDS 1567670 1568595 . - . product=glutathione S-transferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395984.1;Dbxref=Genbank:YP_002395984.1,GeneID:7138691;ID=cds1378;Name=YP_002395984.1--YP_002395983.1 +NC_011744 S-MART exon 1567670 1568200 . - . ID=cds1378-exon1;Name=YP_002395984.1--YP_002395983.1-exon1;Parent=cds1378 +NC_011744 S-MART exon 1568209 1568595 . - . ID=cds1378-exon2;Name=YP_002395984.1--YP_002395983.1-exon2;Parent=cds1378 +NC_011744 S-MART ncRNA 1568849 1569184 . + . ncrna_class=other;product=CsrB;Note=regulatory RNA bound by CsrA;gbkey=ncRNA;Dbxref=GeneID:7138692;ID=rna27;Name=rna27 +NC_011744 S-MART CDS 1569243 1570447 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395986.1;Dbxref=Genbank:YP_002395986.1,GeneID:7138693;ID=cds1380;Name=YP_002395986.1--YP_002395985.1 +NC_011744 S-MART CDS 1570873 1572312 . + . product=Na%2B%2FH%2B antiporter NhaD;transl_table=11;gbkey=CDS;protein_id=YP_002395987.1;Dbxref=Genbank:YP_002395987.1,GeneID:7138694;ID=cds1381;Name=YP_002395987.1 +NC_011744 S-MART CDS 1572314 1572697 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395988.1;Dbxref=Genbank:YP_002395988.1,GeneID:7138695;ID=cds1382;Name=YP_002395988.1 +NC_011744 S-MART CDS 1572896 1574837 . - . product=3-methyladenine DNA glycosylase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395990.1;Dbxref=Genbank:YP_002395990.1,GeneID:7138697;ID=cds1384;Name=YP_002395990.1--YP_002395989.1 +NC_011744 S-MART exon 1572896 1573378 . - . ID=cds1384-exon1;Name=YP_002395990.1--YP_002395989.1-exon1;Parent=cds1384 +NC_011744 S-MART exon 1573461 1574837 . - . ID=cds1384-exon2;Name=YP_002395990.1--YP_002395989.1-exon2;Parent=cds1384 +NC_011744 S-MART CDS 1575074 1575277 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395991.1;Dbxref=Genbank:YP_002395991.1,GeneID:7138698;ID=cds1385;Name=YP_002395991.1 +NC_011744 S-MART CDS 1575488 1576381 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395992.1;Dbxref=Genbank:YP_002395992.1,GeneID:7138699;ID=cds1386;Name=YP_002395992.1 +NC_011744 S-MART CDS 1576535 1576888 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395993.1;Dbxref=Genbank:YP_002395993.1,GeneID:7138700;ID=cds1387;Name=YP_002395993.1 +NC_011744 S-MART CDS 1577357 1578157 . + . product=glucosamine-6-phosphate deaminase;transl_table=11;Note=catalyzes the reversible formation of fructose 6-phosphate from glucosamine 6-phosphate;gbkey=CDS;protein_id=YP_002395994.1;Dbxref=Genbank:YP_002395994.1,GeneID:7138701;ID=cds1388;Name=YP_002395994.1 +NC_011744 S-MART CDS 1578534 1579400 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395995.1;Dbxref=Genbank:YP_002395995.1,GeneID:7138702;ID=cds1389;Name=YP_002395995.1 +NC_011744 S-MART CDS 1579724 1580618 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395997.1;Dbxref=Genbank:YP_002395997.1,GeneID:7138704;ID=cds1391;Name=YP_002395997.1--YP_002395996.1 +NC_011744 S-MART exon 1579724 1580380 . + . ID=cds1391-exon1;Name=YP_002395997.1--YP_002395996.1-exon1;Parent=cds1391 +NC_011744 S-MART exon 1580451 1580618 . + . ID=cds1391-exon2;Name=YP_002395997.1--YP_002395996.1-exon2;Parent=cds1391 +NC_011744 S-MART CDS 1580865 1583707 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396000.1;Dbxref=Genbank:YP_002396000.1,GeneID:7138707;ID=cds1394;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1 +NC_011744 S-MART exon 1580865 1582370 . + . ID=cds1394-exon1;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1-exon1;Parent=cds1394 +NC_011744 S-MART exon 1582372 1583541 . + . ID=cds1394-exon2;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1-exon2;Parent=cds1394 +NC_011744 S-MART exon 1583576 1583707 . + . ID=cds1394-exon3;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1-exon3;Parent=cds1394 +NC_011744 S-MART CDS 1583744 1584970 . - . product=Sodium%2Fglutamate symporter;transl_table=11;gbkey=CDS;protein_id=YP_002396001.1;Dbxref=Genbank:YP_002396001.1,GeneID:7138708;ID=cds1395;Name=YP_002396001.1 +NC_011744 S-MART CDS 1585287 1585643 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396002.1;Dbxref=Genbank:YP_002396002.1,GeneID:7138709;ID=cds1396;Name=YP_002396002.1 +NC_011744 S-MART CDS 1585831 1589052 . - . product=O-antigen ligase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396004.1;Dbxref=Genbank:YP_002396004.1,GeneID:7138711;ID=cds1398;Name=YP_002396004.1--YP_002396003.1 +NC_011744 S-MART exon 1585831 1587795 . - . ID=cds1398-exon1;Name=YP_002396004.1--YP_002396003.1-exon1;Parent=cds1398 +NC_011744 S-MART exon 1587874 1589052 . - . ID=cds1398-exon2;Name=YP_002396004.1--YP_002396003.1-exon2;Parent=cds1398 +NC_011744 S-MART CDS 1589312 1589704 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396005.1;Dbxref=Genbank:YP_002396005.1,GeneID:7138712;ID=cds1399;Name=YP_002396005.1 +NC_011744 S-MART CDS 1589995 1600872 . + . product=hypothetical protein;nbElements=13.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396018.1;Dbxref=Genbank:YP_002396018.1,GeneID:7138725;ID=cds1412;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0 +NC_011744 S-MART exon 1589995 1590615 . + . ID=cds1412-exon1;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon1;Parent=cds1412 +NC_011744 S-MART exon 1590725 1592054 . + . ID=cds1412-exon2;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon2;Parent=cds1412 +NC_011744 S-MART exon 1592199 1594603 . + . ID=cds1412-exon3;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon3;Parent=cds1412 +NC_011744 S-MART exon 1594618 1595780 . + . ID=cds1412-exon4;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon4;Parent=cds1412 +NC_011744 S-MART exon 1595783 1597857 . + . ID=cds1412-exon5;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon5;Parent=cds1412 +NC_011744 S-MART exon 1597963 1599742 . + . ID=cds1412-exon6;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon6;Parent=cds1412 +NC_011744 S-MART exon 1599746 1600872 . + . ID=cds1412-exon7;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0-exon7;Parent=cds1412 +NC_011744 S-MART CDS 1600869 1601141 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396019.1;Dbxref=Genbank:YP_002396019.1,GeneID:7138726;ID=cds1413;Name=YP_002396019.1 +NC_011744 S-MART CDS 1601203 1601466 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396020.1;Dbxref=Genbank:YP_002396020.1,GeneID:7138727;ID=cds1414;Name=YP_002396020.1 +NC_011744 S-MART CDS 1601705 1602732 . + . product=RNA-binding proteins;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396022.1;Dbxref=Genbank:YP_002396022.1,GeneID:7138729;ID=cds1416;Name=YP_002396022.1--YP_002396021.1 +NC_011744 S-MART exon 1601705 1602379 . + . ID=cds1416-exon1;Name=YP_002396022.1--YP_002396021.1-exon1;Parent=cds1416 +NC_011744 S-MART exon 1602493 1602732 . + . ID=cds1416-exon2;Name=YP_002396022.1--YP_002396021.1-exon2;Parent=cds1416 +NC_011744 S-MART CDS 1602866 1603210 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396023.1;Dbxref=Genbank:YP_002396023.1,GeneID:7138730;ID=cds1417;Name=YP_002396023.1 +NC_011744 S-MART CDS 1603005 1603073 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396024.1;Dbxref=Genbank:YP_002396024.1,GeneID:7138731;ID=cds1418;Name=YP_002396024.1 +NC_011744 S-MART CDS 1603433 1605788 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396028.1;Dbxref=Genbank:YP_002396028.1,GeneID:7138735;ID=cds1422;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1 +NC_011744 S-MART exon 1603433 1604764 . - . ID=cds1422-exon1;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon1;Parent=cds1422 +NC_011744 S-MART exon 1604788 1605255 . - . ID=cds1422-exon2;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon2;Parent=cds1422 +NC_011744 S-MART exon 1605285 1605701 . - . ID=cds1422-exon3;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon3;Parent=cds1422 +NC_011744 S-MART exon 1605711 1605788 . - . ID=cds1422-exon4;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1-exon4;Parent=cds1422 +NC_011744 S-MART CDS 1605920 1607398 . + . product=PTS permease for N-acetylglucosamine and glucose;transl_table=11;gbkey=CDS;protein_id=YP_002396029.1;Dbxref=Genbank:YP_002396029.1,GeneID:7138736;ID=cds1423;Name=YP_002396029.1 +NC_011744 S-MART CDS 1607784 1608212 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396030.1;Dbxref=Genbank:YP_002396030.1,GeneID:7138737;ID=cds1424;Name=YP_002396030.1 +NC_011744 S-MART CDS 1608380 1608862 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396032.1;Dbxref=Genbank:YP_002396032.1,GeneID:7138739;ID=cds1426;Name=YP_002396032.1--YP_002396031.1 +NC_011744 S-MART CDS 1609169 1611113 . - . product=DNA-binding response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396034.1;Dbxref=Genbank:YP_002396034.1,GeneID:7138741;ID=cds1428;Name=YP_002396034.1--YP_002396033.1 +NC_011744 S-MART CDS 1611320 1612255 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396035.1;Dbxref=Genbank:YP_002396035.1,GeneID:7138742;ID=cds1429;Name=YP_002396035.1 +NC_011744 S-MART CDS 1612372 1615488 . + . product=NADH:flavin oxidoreductase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396038.1;Dbxref=Genbank:YP_002396038.1,GeneID:7138745;ID=cds1432;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1 +NC_011744 S-MART exon 1612372 1613055 . + . ID=cds1432-exon1;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1-exon1;Parent=cds1432 +NC_011744 S-MART exon 1613139 1614347 . + . ID=cds1432-exon2;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1-exon2;Parent=cds1432 +NC_011744 S-MART exon 1614400 1615488 . + . ID=cds1432-exon3;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1-exon3;Parent=cds1432 +NC_011744 S-MART CDS 1615785 1616651 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396039.1;Dbxref=Genbank:YP_002396039.1,GeneID:7138746;ID=cds1433;Name=YP_002396039.1 +NC_011744 S-MART CDS 1616884 1619609 . - . product=Protein export;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396041.1;Dbxref=Genbank:YP_002396041.1,GeneID:7138748;ID=cds1435;Name=YP_002396041.1--YP_002396040.1 +NC_011744 S-MART exon 1616884 1617807 . - . ID=cds1435-exon1;Name=YP_002396041.1--YP_002396040.1-exon1;Parent=cds1435 +NC_011744 S-MART exon 1617810 1619609 . - . ID=cds1435-exon2;Name=YP_002396041.1--YP_002396040.1-exon2;Parent=cds1435 +NC_011744 S-MART CDS 1619882 1620406 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396042.1;Dbxref=Genbank:YP_002396042.1,GeneID:7138749;ID=cds1436;Name=YP_002396042.1 +NC_011744 S-MART CDS 1620650 1623430 . - . product=Zn-dependent protease;transl_table=11;gbkey=CDS;protein_id=YP_002396043.1;Dbxref=Genbank:YP_002396043.1,GeneID:7138750;ID=cds1437;Name=YP_002396043.1 +NC_011744 S-MART CDS 1623757 1626519 . - . product=zinc protease;transl_table=11;gbkey=CDS;protein_id=YP_002396044.1;Dbxref=Genbank:YP_002396044.1,GeneID:7138751;ID=cds1438;Name=YP_002396044.1 +NC_011744 S-MART CDS 1626732 1633492 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396051.1;Dbxref=Genbank:YP_002396051.1,GeneID:7138758;ID=cds1445;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0 +NC_011744 S-MART exon 1626732 1627577 . - . ID=cds1445-exon1;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon1;Parent=cds1445 +NC_011744 S-MART exon 1627650 1629985 . - . ID=cds1445-exon2;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon2;Parent=cds1445 +NC_011744 S-MART exon 1629986 1632760 . - . ID=cds1445-exon3;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon3;Parent=cds1445 +NC_011744 S-MART exon 1632812 1633492 . - . ID=cds1445-exon4;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0-exon4;Parent=cds1445 +NC_011744 S-MART CDS 1633846 1634775 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396052.1;Dbxref=Genbank:YP_002396052.1,GeneID:7138759;ID=cds1446;Name=YP_002396052.1 +NC_011744 S-MART CDS 1636980 1637186 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396054.1;Dbxref=Genbank:YP_002396054.1,GeneID:7138761;ID=cds1448;Name=YP_002396054.1 +NC_011744 S-MART CDS 1634996 1637844 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396055.1;Dbxref=Genbank:YP_002396055.1,GeneID:7138762;ID=cds1449;Name=YP_002396055.1--YP_002396053.1 +NC_011744 S-MART exon 1634996 1636978 . + . ID=cds1449-exon1;Name=YP_002396055.1--YP_002396053.1-exon1;Parent=cds1449 +NC_011744 S-MART exon 1637059 1637844 . + . ID=cds1449-exon2;Name=YP_002396055.1--YP_002396053.1-exon2;Parent=cds1449 +NC_011744 S-MART CDS 1637949 1638386 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396056.1;Dbxref=Genbank:YP_002396056.1,GeneID:7138763;ID=cds1450;Name=YP_002396056.1 +NC_011744 S-MART CDS 1638514 1639428 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396057.1;Dbxref=Genbank:YP_002396057.1,GeneID:7138764;ID=cds1451;Name=YP_002396057.1 +NC_011744 S-MART CDS 1639627 1641237 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002396058.1;Dbxref=Genbank:YP_002396058.1,GeneID:7138765;ID=cds1452;Name=YP_002396058.1 +NC_011744 S-MART CDS 1641680 1643497 . - . product=Transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396060.1;Dbxref=Genbank:YP_002396060.1,GeneID:7138767;ID=cds1454;Name=YP_002396060.1--YP_002396059.1 +NC_011744 S-MART exon 1641680 1642555 . - . ID=cds1454-exon1;Name=YP_002396060.1--YP_002396059.1-exon1;Parent=cds1454 +NC_011744 S-MART exon 1642568 1643497 . - . ID=cds1454-exon2;Name=YP_002396060.1--YP_002396059.1-exon2;Parent=cds1454 +NC_011744 S-MART CDS 1643555 1643806 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396061.1;Dbxref=Genbank:YP_002396061.1,GeneID:7138768;ID=cds1455;Name=YP_002396061.1 +NC_011744 S-MART CDS 1643986 1645065 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396063.1;Dbxref=Genbank:YP_002396063.1,GeneID:7138770;ID=cds1457;Name=YP_002396063.1--YP_002396062.1 +NC_011744 S-MART exon 1643986 1644702 . - . ID=cds1457-exon1;Name=YP_002396063.1--YP_002396062.1-exon1;Parent=cds1457 +NC_011744 S-MART exon 1644799 1645065 . - . ID=cds1457-exon2;Name=YP_002396063.1--YP_002396062.1-exon2;Parent=cds1457 +NC_011744 S-MART CDS 1645252 1646514 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396064.1;Dbxref=Genbank:YP_002396064.1,GeneID:7138771;ID=cds1458;Name=YP_002396064.1 +NC_011744 S-MART CDS 1646662 1649029 . - . product=phenylalanine 4-monooxygenase;nbElements=3.000000;transl_table=11;Note=phenylalanine 4-hydroxylase%3B phenylalanine 4-hydroxylase%3B catalyzes the formation of 4a-hydroxytetrahydrobiopterin and tyrosine from phenylalanine and tetrahydrobiopterin;gbkey=CDS;protein_id=YP_002396067.1;Dbxref=Genbank:YP_002396067.1,GeneID:7138774;ID=cds1461;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1 +NC_011744 S-MART exon 1646662 1647774 . - . ID=cds1461-exon1;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1-exon1;Parent=cds1461 +NC_011744 S-MART exon 1647907 1649029 . - . ID=cds1461-exon2;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1-exon2;Parent=cds1461 +NC_011744 S-MART CDS 1649229 1651280 . + . product=acetoacetyl-CoA synthetase;transl_table=11;Note=AcsA%3B in Sinorhizobium meliloti this enzyme is required for acetoacetate activation%3B similar to acetyl-CoA synthase;gbkey=CDS;protein_id=YP_002396068.1;Dbxref=Genbank:YP_002396068.1,GeneID:7138775;ID=cds1462;Name=YP_002396068.1 +NC_011744 S-MART CDS 1651672 1657718 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396074.1;Dbxref=Genbank:YP_002396074.1,GeneID:7138781;ID=cds1468;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1 +NC_011744 S-MART exon 1651672 1652136 . + . ID=cds1468-exon1;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon1;Parent=cds1468 +NC_011744 S-MART exon 1652164 1654986 . + . ID=cds1468-exon2;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon2;Parent=cds1468 +NC_011744 S-MART exon 1654998 1656358 . + . ID=cds1468-exon3;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon3;Parent=cds1468 +NC_011744 S-MART exon 1656418 1657038 . + . ID=cds1468-exon4;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon4;Parent=cds1468 +NC_011744 S-MART exon 1657098 1657718 . + . ID=cds1468-exon5;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1-exon5;Parent=cds1468 +NC_011744 S-MART CDS 1658632 1659561 . + . product=carbamate kinase;transl_table=11;Note=reversible synthesis of carbamate and ATP from carbamoyl phosphate and ADP;gbkey=CDS;protein_id=YP_002396075.1;Dbxref=Genbank:YP_002396075.1,GeneID:7138782;ID=cds1469;Name=YP_002396075.1 +NC_011744 S-MART CDS 1659797 1663769 . - . product=4-hydroxyphenylpyruvate dioxygenase;nbElements=4.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 8112844%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002396079.1;Dbxref=Genbank:YP_002396079.1,GeneID:7138786;ID=cds1473;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1 +NC_011744 S-MART exon 1659797 1660501 . - . ID=cds1473-exon1;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1-exon1;Parent=cds1473 +NC_011744 S-MART exon 1660523 1661560 . - . ID=cds1473-exon2;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1-exon2;Parent=cds1473 +NC_011744 S-MART exon 1661573 1663769 . - . ID=cds1473-exon3;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1-exon3;Parent=cds1473 +NC_011744 S-MART CDS 1663853 1664035 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396080.1;Dbxref=Genbank:YP_002396080.1,GeneID:7138787;ID=cds1474;Name=YP_002396080.1 +NC_011744 S-MART CDS 1664130 1664789 . - . product=phosphoserine phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002396081.1;Dbxref=Genbank:YP_002396081.1,GeneID:7138788;ID=cds1475;Name=YP_002396081.1 +NC_011744 S-MART CDS 1665142 1667568 . - . product=two-component sensor;transl_table=11;gbkey=CDS;protein_id=YP_002396082.1;Dbxref=Genbank:YP_002396082.1,GeneID:7138789;ID=cds1476;Name=YP_002396082.1 +NC_011744 S-MART CDS 1667657 1668415 . + . product=amino acid ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002396083.1;Dbxref=Genbank:YP_002396083.1,GeneID:7138790;ID=cds1477;Name=YP_002396083.1 +NC_011744 S-MART CDS 1668625 1669185 . - . product=GTP cyclohydrolase II;transl_table=11;gbkey=CDS;protein_id=YP_002396084.1;Dbxref=Genbank:YP_002396084.1,GeneID:7138791;ID=cds1478;Name=YP_002396084.1 +NC_011744 S-MART CDS 1669376 1669699 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396085.1;Dbxref=Genbank:YP_002396085.1,GeneID:7138792;ID=cds1479;Name=YP_002396085.1 +NC_011744 S-MART CDS 1669923 1672240 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396088.1;Dbxref=Genbank:YP_002396088.1,GeneID:7138795;ID=cds1482;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1 +NC_011744 S-MART exon 1669923 1670756 . + . ID=cds1482-exon1;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1-exon1;Parent=cds1482 +NC_011744 S-MART exon 1670766 1672240 . + . ID=cds1482-exon2;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1-exon2;Parent=cds1482 +NC_011744 S-MART CDS 1672182 1672271 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396089.1;Dbxref=Genbank:YP_002396089.1,GeneID:7138796;ID=cds1483;Name=YP_002396089.1 +NC_011744 S-MART CDS 1672683 1674662 . - . product=RctB protein;transl_table=11;gbkey=CDS;protein_id=YP_002396090.1;Dbxref=Genbank:YP_002396090.1,GeneID:7138797;ID=cds1484;Name=YP_002396090.1 diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/splitTranscript_Result.gff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/splitTranscript_Result.gff Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,911 @@ +NC_011744 split utr5 364 408 . + . Name=NC_011744+364..408; +NC_011744 split gene 409 4831 . + . Name=NC_011744+409..4831; +NC_011744 split utr5 5319 5361 . + . Name=NC_011744+5319..5361; +NC_011744 split gene 5362 7032 . + . Name=NC_011744+5362..7032; +NC_011744 split utr5 16915 16953 . + . Name=NC_011744+16915..16953; +NC_011744 split gene 16954 17589 . + . Name=NC_011744+16954..17589; +NC_011744 split utr3 17590 17644 . + . Name=NC_011744+17590..17644; +NC_011744 split utr5 22423 22447 . + . Name=NC_011744+22423..22447; +NC_011744 split gene 22448 23272 . + . Name=NC_011744+22448..23272; +NC_011744 split utr5 23395 23453 . + . Name=NC_011744+23395..23453; +NC_011744 split gene 23454 27325 . + . Name=NC_011744+23454..27325; +NC_011744 split operon 27326 27508 . + . Name=NC_011744+27326..27508; +NC_011744 split gene 27509 29002 . + . Name=NC_011744+27509..29002; +NC_011744 split utr3 29003 29212 . + . Name=NC_011744+29003..29212; +NC_011744 split utr5 29339 29389 . + . Name=NC_011744+29339..29389; +NC_011744 split gene 29390 29614 . + . Name=NC_011744+29390..29614; +NC_011744 split utr3 29615 29644 . + . Name=NC_011744+29615..29644; +NC_011744 split utr5 30066 30126 . + . Name=NC_011744+30066..30126; +NC_011744 split gene 30127 30615 . + . Name=NC_011744+30127..30615; +NC_011744 split utr3 30616 30622 . + . Name=NC_011744+30616..30622; +NC_011744 split utr5 34131 34144 . + . Name=NC_011744+34131..34144; +NC_011744 split gene 34145 35119 . + . Name=NC_011744+34145..35119; +NC_011744 split utr3 35120 35153 . + . Name=NC_011744+35120..35153; +NC_011744 split utr5 40845 40886 . + . Name=NC_011744+40845..40886; +NC_011744 split gene 40887 41426 . + . Name=NC_011744+40887..41426; +NC_011744 split gene 43855 45801 . + . Name=NC_011744+43855..45801; +NC_011744 split utr5 45972 46006 . + . Name=NC_011744+45972..46006; +NC_011744 split gene 46007 49254 . + . Name=NC_011744+46007..49254; +NC_011744 split gene 49412 51862 . + . Name=NC_011744+49412..51862; +NC_011744 split gene 57403 58506 . + . Name=NC_011744+57403..58506; +NC_011744 split utr5 58837 58865 . + . Name=NC_011744+58837..58865; +NC_011744 split gene 58866 60065 . + . Name=NC_011744+58866..60065; +NC_011744 split gene 61052 63159 . + . Name=NC_011744+61052..63159; +NC_011744 split gene 63377 67642 . + . Name=NC_011744+63377..67642; +NC_011744 split gene 68078 75324 . + . Name=NC_011744+68078..75324; +NC_011744 split gene 75688 76170 . + . Name=NC_011744+75688..76170; +NC_011744 split gene 76628 77284 . + . Name=NC_011744+76628..77284; +NC_011744 split gene 78060 78320 . + . Name=NC_011744+78060..78320; +NC_011744 split gene 78790 82528 . + . Name=NC_011744+78790..82528; +NC_011744 split gene 82754 84273 . + . Name=NC_011744+82754..84273; +NC_011744 split gene 86398 88921 . + . Name=NC_011744+86398..88921; +NC_011744 split gene 92897 93433 . + . Name=NC_011744+92897..93433; +NC_011744 split gene 93893 94486 . + . Name=NC_011744+93893..94486; +NC_011744 split gene 94865 96993 . + . Name=NC_011744+94865..96993; +NC_011744 split gene 97330 98777 . + . Name=NC_011744+97330..98777; +NC_011744 split gene 103591 104505 . + . Name=NC_011744+103591..104505; +NC_011744 split gene 105690 106655 . + . Name=NC_011744+105690..106655; +NC_011744 split gene 106826 109364 . + . Name=NC_011744+106826..109364; +NC_011744 split gene 109568 110131 . + . Name=NC_011744+109568..110131; +NC_011744 split gene 111700 112581 . + . Name=NC_011744+111700..112581; +NC_011744 split gene 115500 116063 . + . Name=NC_011744+115500..116063; +NC_011744 split gene 116223 117755 . + . Name=NC_011744+116223..117755; +NC_011744 split gene 118880 120124 . + . Name=NC_011744+118880..120124; +NC_011744 split gene 120342 121256 . + . Name=NC_011744+120342..121256; +NC_011744 split gene 123070 123306 . + . Name=NC_011744+123070..123306; +NC_011744 split gene 129984 130850 . + . Name=NC_011744+129984..130850; +NC_011744 split gene 132757 133554 . + . Name=NC_011744+132757..133554; +NC_011744 split gene 133736 135626 . + . Name=NC_011744+133736..135626; +NC_011744 split gene 136700 138001 . + . Name=NC_011744+136700..138001; +NC_011744 split gene 138201 138539 . + . Name=NC_011744+138201..138539; +NC_011744 split gene 138848 140416 . + . Name=NC_011744+138848..140416; +NC_011744 split gene 140862 143009 . + . Name=NC_011744+140862..143009; +NC_011744 split gene 143382 144595 . + . Name=NC_011744+143382..144595; +NC_011744 split gene 156656 157825 . + . Name=NC_011744+156656..157825; +NC_011744 split gene 158027 159478 . + . Name=NC_011744+158027..159478; +NC_011744 split gene 159709 160581 . + . Name=NC_011744+159709..160581; +NC_011744 split gene 163720 164664 . + . Name=NC_011744+163720..164664; +NC_011744 split gene 170112 172475 . + . Name=NC_011744+170112..172475; +NC_011744 split gene 172685 173512 . + . Name=NC_011744+172685..173512; +NC_011744 split gene 179899 180816 . + . Name=NC_011744+179899..180816; +NC_011744 split gene 193236 193625 . + . Name=NC_011744+193236..193625; +NC_011744 split gene 194406 195846 . + . Name=NC_011744+194406..195846; +NC_011744 split gene 196083 197327 . + . Name=NC_011744+196083..197327; +NC_011744 split gene 203925 204035 . + . Name=NC_011744+203925..204035; +NC_011744 split gene 207458 209911 . + . Name=NC_011744+207458..209911; +NC_011744 split gene 210088 212268 . + . Name=NC_011744+210088..212268; +NC_011744 split gene 212444 214624 . + . Name=NC_011744+212444..214624; +NC_011744 split gene 219953 220867 . + . Name=NC_011744+219953..220867; +NC_011744 split gene 226854 227756 . + . Name=NC_011744+226854..227756; +NC_011744 split gene 228566 229909 . + . Name=NC_011744+228566..229909; +NC_011744 split gene 231825 233699 . + . Name=NC_011744+231825..233699; +NC_011744 split gene 235997 239625 . + . Name=NC_011744+235997..239625; +NC_011744 split gene 239945 242089 . + . Name=NC_011744+239945..242089; +NC_011744 split gene 249562 251478 . + . Name=NC_011744+249562..251478; +NC_011744 split gene 251798 252053 . + . Name=NC_011744+251798..252053; +NC_011744 split gene 254055 257791 . + . Name=NC_011744+254055..257791; +NC_011744 split gene 261274 262062 . + . Name=NC_011744+261274..262062; +NC_011744 split gene 265017 266057 . + . Name=NC_011744+265017..266057; +NC_011744 split gene 266265 268079 . + . Name=NC_011744+266265..268079; +NC_011744 split gene 278312 278647 . + . Name=NC_011744+278312..278647; +NC_011744 split gene 278912 279706 . + . Name=NC_011744+278912..279706; +NC_011744 split gene 284606 287767 . + . Name=NC_011744+284606..287767; +NC_011744 split gene 289034 290551 . + . Name=NC_011744+289034..290551; +NC_011744 split gene 297221 298147 . + . Name=NC_011744+297221..298147; +NC_011744 split gene 302458 302850 . + . Name=NC_011744+302458..302850; +NC_011744 split gene 305504 306457 . + . Name=NC_011744+305504..306457; +NC_011744 split gene 306613 308796 . + . Name=NC_011744+306613..308796; +NC_011744 split gene 310935 311507 . + . Name=NC_011744+310935..311507; +NC_011744 split gene 312002 313609 . + . Name=NC_011744+312002..313609; +NC_011744 split gene 317950 319806 . + . Name=NC_011744+317950..319806; +NC_011744 split gene 320854 321889 . + . Name=NC_011744+320854..321889; +NC_011744 split gene 322802 323920 . + . Name=NC_011744+322802..323920; +NC_011744 split gene 324751 325053 . + . Name=NC_011744+324751..325053; +NC_011744 split gene 325919 326380 . + . Name=NC_011744+325919..326380; +NC_011744 split gene 331801 334462 . + . Name=NC_011744+331801..334462; +NC_011744 split gene 335714 335992 . + . Name=NC_011744+335714..335992; +NC_011744 split gene 336291 337661 . + . Name=NC_011744+336291..337661; +NC_011744 split gene 343092 344162 . + . Name=NC_011744+343092..344162; +NC_011744 split gene 344408 345700 . + . Name=NC_011744+344408..345700; +NC_011744 split gene 348902 350580 . + . Name=NC_011744+348902..350580; +NC_011744 split gene 350824 350958 . + . Name=NC_011744+350824..350958; +NC_011744 split gene 354232 355245 . + . Name=NC_011744+354232..355245; +NC_011744 split gene 358753 359961 . + . Name=NC_011744+358753..359961; +NC_011744 split gene 360320 361246 . + . Name=NC_011744+360320..361246; +NC_011744 split gene 362826 364181 . + . Name=NC_011744+362826..364181; +NC_011744 split gene 364346 365917 . + . Name=NC_011744+364346..365917; +NC_011744 split gene 366376 366484 . + . Name=NC_011744+366376..366484; +NC_011744 split gene 368323 368925 . + . Name=NC_011744+368323..368925; +NC_011744 split gene 373850 373924 . + . Name=NC_011744+373850..373924; +NC_011744 split gene 376058 377065 . + . Name=NC_011744+376058..377065; +NC_011744 split gene 378808 380265 . + . Name=NC_011744+378808..380265; +NC_011744 split gene 381822 384039 . + . Name=NC_011744+381822..384039; +NC_011744 split gene 385873 388726 . + . Name=NC_011744+385873..388726; +NC_011744 split gene 391162 393817 . + . Name=NC_011744+391162..393817; +NC_011744 split gene 395459 396793 . + . Name=NC_011744+395459..396793; +NC_011744 split gene 397101 401235 . + . Name=NC_011744+397101..401235; +NC_011744 split gene 402093 403457 . + . Name=NC_011744+402093..403457; +NC_011744 split gene 403968 405026 . + . Name=NC_011744+403968..405026; +NC_011744 split gene 405444 406049 . + . Name=NC_011744+405444..406049; +NC_011744 split gene 406200 406832 . + . Name=NC_011744+406200..406832; +NC_011744 split gene 409209 419043 . + . Name=NC_011744+409209..419043; +NC_011744 split gene 419627 420304 . + . Name=NC_011744+419627..420304; +NC_011744 split gene 421035 421463 . + . Name=NC_011744+421035..421463; +NC_011744 split gene 421959 422592 . + . Name=NC_011744+421959..422592; +NC_011744 split gene 423194 423962 . + . Name=NC_011744+423194..423962; +NC_011744 split gene 424597 425118 . + . Name=NC_011744+424597..425118; +NC_011744 split gene 425805 426857 . + . Name=NC_011744+425805..426857; +NC_011744 split gene 431422 433473 . + . Name=NC_011744+431422..433473; +NC_011744 split gene 434919 435317 . + . Name=NC_011744+434919..435317; +NC_011744 split gene 440720 443272 . + . Name=NC_011744+440720..443272; +NC_011744 split gene 443500 448153 . + . Name=NC_011744+443500..448153; +NC_011744 split gene 448354 453436 . + . Name=NC_011744+448354..453436; +NC_011744 split gene 453913 454644 . + . Name=NC_011744+453913..454644; +NC_011744 split gene 454955 455956 . + . Name=NC_011744+454955..455956; +NC_011744 split gene 460691 461569 . + . Name=NC_011744+460691..461569; +NC_011744 split gene 462389 462907 . + . Name=NC_011744+462389..462907; +NC_011744 split gene 463412 466069 . + . Name=NC_011744+463412..466069; +NC_011744 split gene 466296 472210 . + . Name=NC_011744+466296..472210; +NC_011744 split gene 473708 474718 . + . Name=NC_011744+473708..474718; +NC_011744 split gene 478058 478804 . + . Name=NC_011744+478058..478804; +NC_011744 split gene 478976 479371 . + . Name=NC_011744+478976..479371; +NC_011744 split gene 479698 481695 . + . Name=NC_011744+479698..481695; +NC_011744 split gene 483488 484627 . + . Name=NC_011744+483488..484627; +NC_011744 split gene 484944 487278 . + . Name=NC_011744+484944..487278; +NC_011744 split gene 488848 489003 . + . Name=NC_011744+488848..489003; +NC_011744 split gene 492055 493131 . + . Name=NC_011744+492055..493131; +NC_011744 split gene 493609 494043 . + . Name=NC_011744+493609..494043; +NC_011744 split gene 497111 497785 . + . Name=NC_011744+497111..497785; +NC_011744 split gene 497965 498897 . + . Name=NC_011744+497965..498897; +NC_011744 split gene 502409 502759 . + . Name=NC_011744+502409..502759; +NC_011744 split gene 503849 504460 . + . Name=NC_011744+503849..504460; +NC_011744 split gene 504872 507401 . + . Name=NC_011744+504872..507401; +NC_011744 split gene 513179 515736 . + . Name=NC_011744+513179..515736; +NC_011744 split gene 519415 520407 . + . Name=NC_011744+519415..520407; +NC_011744 split gene 520677 523694 . + . Name=NC_011744+520677..523694; +NC_011744 split gene 524243 525127 . + . Name=NC_011744+524243..525127; +NC_011744 split gene 525798 536990 . + . Name=NC_011744+525798..536990; +NC_011744 split gene 546671 547324 . + . Name=NC_011744+546671..547324; +NC_011744 split gene 552642 553835 . + . Name=NC_011744+552642..553835; +NC_011744 split gene 555855 556727 . + . Name=NC_011744+555855..556727; +NC_011744 split gene 556974 562141 . + . Name=NC_011744+556974..562141; +NC_011744 split gene 562394 565179 . + . Name=NC_011744+562394..565179; +NC_011744 split gene 565513 566625 . + . Name=NC_011744+565513..566625; +NC_011744 split gene 567046 567681 . + . Name=NC_011744+567046..567681; +NC_011744 split gene 567834 573035 . + . Name=NC_011744+567834..573035; +NC_011744 split gene 581891 590044 . + . Name=NC_011744+581891..590044; +NC_011744 split gene 591502 592665 . + . Name=NC_011744+591502..592665; +NC_011744 split gene 592846 594812 . + . Name=NC_011744+592846..594812; +NC_011744 split gene 595989 597995 . + . Name=NC_011744+595989..597995; +NC_011744 split gene 604352 605236 . + . Name=NC_011744+604352..605236; +NC_011744 split gene 605901 607148 . + . Name=NC_011744+605901..607148; +NC_011744 split gene 607390 607992 . + . Name=NC_011744+607390..607992; +NC_011744 split gene 608947 611939 . + . Name=NC_011744+608947..611939; +NC_011744 split gene 612150 612668 . + . Name=NC_011744+612150..612668; +NC_011744 split gene 613510 613872 . + . Name=NC_011744+613510..613872; +NC_011744 split gene 616053 619211 . + . Name=NC_011744+616053..619211; +NC_011744 split gene 619498 620967 . + . Name=NC_011744+619498..620967; +NC_011744 split gene 621581 622165 . + . Name=NC_011744+621581..622165; +NC_011744 split gene 622344 623528 . + . Name=NC_011744+622344..623528; +NC_011744 split gene 623726 624019 . + . Name=NC_011744+623726..624019; +NC_011744 split gene 625084 625464 . + . Name=NC_011744+625084..625464; +NC_011744 split gene 631360 631971 . + . Name=NC_011744+631360..631971; +NC_011744 split gene 634471 635667 . + . Name=NC_011744+634471..635667; +NC_011744 split gene 639037 640020 . + . Name=NC_011744+639037..640020; +NC_011744 split gene 640203 641489 . + . Name=NC_011744+640203..641489; +NC_011744 split gene 641777 642274 . + . Name=NC_011744+641777..642274; +NC_011744 split gene 644806 645147 . + . Name=NC_011744+644806..645147; +NC_011744 split gene 645401 649161 . + . Name=NC_011744+645401..649161; +NC_011744 split gene 650699 650857 . + . Name=NC_011744+650699..650857; +NC_011744 split gene 651018 651476 . + . Name=NC_011744+651018..651476; +NC_011744 split gene 652906 653586 . + . Name=NC_011744+652906..653586; +NC_011744 split gene 654117 658459 . + . Name=NC_011744+654117..658459; +NC_011744 split gene 658717 659679 . + . Name=NC_011744+658717..659679; +NC_011744 split gene 674374 676723 . + . Name=NC_011744+674374..676723; +NC_011744 split gene 679911 681845 . + . Name=NC_011744+679911..681845; +NC_011744 split gene 682083 687140 . + . Name=NC_011744+682083..687140; +NC_011744 split gene 689399 689944 . + . Name=NC_011744+689399..689944; +NC_011744 split gene 694518 695124 . + . Name=NC_011744+694518..695124; +NC_011744 split gene 701981 702466 . + . Name=NC_011744+701981..702466; +NC_011744 split gene 702643 705370 . + . Name=NC_011744+702643..705370; +NC_011744 split gene 715173 718286 . + . Name=NC_011744+715173..718286; +NC_011744 split gene 718483 718990 . + . Name=NC_011744+718483..718990; +NC_011744 split gene 720204 720874 . + . Name=NC_011744+720204..720874; +NC_011744 split gene 724495 730500 . + . Name=NC_011744+724495..730500; +NC_011744 split gene 731582 732379 . + . Name=NC_011744+731582..732379; +NC_011744 split gene 732547 734338 . + . Name=NC_011744+732547..734338; +NC_011744 split gene 734620 734799 . + . Name=NC_011744+734620..734799; +NC_011744 split gene 735583 738480 . + . Name=NC_011744+735583..738480; +NC_011744 split gene 738656 739471 . + . Name=NC_011744+738656..739471; +NC_011744 split gene 739788 740564 . + . Name=NC_011744+739788..740564; +NC_011744 split gene 741389 743990 . + . Name=NC_011744+741389..743990; +NC_011744 split gene 746055 748184 . + . Name=NC_011744+746055..748184; +NC_011744 split gene 748363 753282 . + . Name=NC_011744+748363..753282; +NC_011744 split gene 754129 760856 . + . Name=NC_011744+754129..760856; +NC_011744 split gene 761311 762224 . + . Name=NC_011744+761311..762224; +NC_011744 split gene 763792 765180 . + . Name=NC_011744+763792..765180; +NC_011744 split gene 765352 765687 . + . Name=NC_011744+765352..765687; +NC_011744 split gene 766991 767272 . + . Name=NC_011744+766991..767272; +NC_011744 split gene 767430 769079 . + . Name=NC_011744+767430..769079; +NC_011744 split gene 769782 772232 . + . Name=NC_011744+769782..772232; +NC_011744 split gene 772433 773340 . + . Name=NC_011744+772433..773340; +NC_011744 split gene 774662 776785 . + . Name=NC_011744+774662..776785; +NC_011744 split gene 776941 777411 . + . Name=NC_011744+776941..777411; +NC_011744 split gene 779044 779883 . + . Name=NC_011744+779044..779883; +NC_011744 split gene 780127 782018 . + . Name=NC_011744+780127..782018; +NC_011744 split gene 782335 783918 . + . Name=NC_011744+782335..783918; +NC_011744 split gene 787649 791742 . + . Name=NC_011744+787649..791742; +NC_011744 split gene 792758 794817 . + . Name=NC_011744+792758..794817; +NC_011744 split gene 796531 797219 . + . Name=NC_011744+796531..797219; +NC_011744 split gene 797519 800474 . + . Name=NC_011744+797519..800474; +NC_011744 split gene 800800 805192 . + . Name=NC_011744+800800..805192; +NC_011744 split gene 805664 805798 . + . Name=NC_011744+805664..805798; +NC_011744 split gene 809209 810177 . + . Name=NC_011744+809209..810177; +NC_011744 split gene 812332 815013 . + . Name=NC_011744+812332..815013; +NC_011744 split gene 815945 818255 . + . Name=NC_011744+815945..818255; +NC_011744 split gene 820183 820896 . + . Name=NC_011744+820183..820896; +NC_011744 split gene 821073 822780 . + . Name=NC_011744+821073..822780; +NC_011744 split gene 828027 829925 . + . Name=NC_011744+828027..829925; +NC_011744 split gene 830104 833803 . + . Name=NC_011744+830104..833803; +NC_011744 split gene 834047 835945 . + . Name=NC_011744+834047..835945; +NC_011744 split gene 838091 838702 . + . Name=NC_011744+838091..838702; +NC_011744 split gene 842758 843546 . + . Name=NC_011744+842758..843546; +NC_011744 split gene 845070 848778 . + . Name=NC_011744+845070..848778; +NC_011744 split gene 848999 849556 . + . Name=NC_011744+848999..849556; +NC_011744 split gene 856098 857870 . + . Name=NC_011744+856098..857870; +NC_011744 split gene 860190 861641 . + . Name=NC_011744+860190..861641; +NC_011744 split gene 863806 864733 . + . Name=NC_011744+863806..864733; +NC_011744 split gene 864958 865749 . + . Name=NC_011744+864958..865749; +NC_011744 split gene 871342 872067 . + . Name=NC_011744+871342..872067; +NC_011744 split gene 874940 877736 . + . Name=NC_011744+874940..877736; +NC_011744 split gene 881714 883638 . + . Name=NC_011744+881714..883638; +NC_011744 split gene 883933 885681 . + . Name=NC_011744+883933..885681; +NC_011744 split gene 885922 887826 . + . Name=NC_011744+885922..887826; +NC_011744 split gene 888588 888998 . + . Name=NC_011744+888588..888998; +NC_011744 split gene 889691 890029 . + . Name=NC_011744+889691..890029; +NC_011744 split gene 894183 898887 . + . Name=NC_011744+894183..898887; +NC_011744 split gene 902823 903977 . + . Name=NC_011744+902823..903977; +NC_011744 split gene 908638 910020 . + . Name=NC_011744+908638..910020; +NC_011744 split gene 918880 924210 . + . Name=NC_011744+918880..924210; +NC_011744 split gene 925309 927927 . + . Name=NC_011744+925309..927927; +NC_011744 split gene 928216 930131 . + . Name=NC_011744+928216..930131; +NC_011744 split gene 930526 931422 . + . Name=NC_011744+930526..931422; +NC_011744 split gene 952752 962294 . + . Name=NC_011744+952752..962294; +NC_011744 split gene 962510 967253 . + . Name=NC_011744+962510..967253; +NC_011744 split gene 969982 970770 . + . Name=NC_011744+969982..970770; +NC_011744 split gene 970950 972632 . + . Name=NC_011744+970950..972632; +NC_011744 split gene 985133 986695 . + . Name=NC_011744+985133..986695; +NC_011744 split gene 986985 987638 . + . Name=NC_011744+986985..987638; +NC_011744 split gene 988720 989217 . + . Name=NC_011744+988720..989217; +NC_011744 split gene 992973 996440 . + . Name=NC_011744+992973..996440; +NC_011744 split gene 998364 1000814 . + . Name=NC_011744+998364..1000814; +NC_011744 split gene 1001606 1002967 . + . Name=NC_011744+1001606..1002967; +NC_011744 split gene 1003230 1003457 . + . Name=NC_011744+1003230..1003457; +NC_011744 split gene 1003721 1003903 . + . Name=NC_011744+1003721..1003903; +NC_011744 split gene 1013832 1014713 . + . Name=NC_011744+1013832..1014713; +NC_011744 split gene 1015526 1022425 . + . Name=NC_011744+1015526..1022425; +NC_011744 split gene 1030452 1035558 . + . Name=NC_011744+1030452..1035558; +NC_011744 split gene 1036962 1038869 . + . Name=NC_011744+1036962..1038869; +NC_011744 split gene 1039828 1041511 . + . Name=NC_011744+1039828..1041511; +NC_011744 split gene 1047710 1048753 . + . Name=NC_011744+1047710..1048753; +NC_011744 split gene 1049932 1050246 . + . Name=NC_011744+1049932..1050246; +NC_011744 split gene 1050478 1053537 . + . Name=NC_011744+1050478..1053537; +NC_011744 split gene 1053711 1054589 . + . Name=NC_011744+1053711..1054589; +NC_011744 split gene 1054798 1055724 . + . Name=NC_011744+1054798..1055724; +NC_011744 split gene 1055877 1056878 . + . Name=NC_011744+1055877..1056878; +NC_011744 split gene 1057917 1059515 . + . Name=NC_011744+1057917..1059515; +NC_011744 split gene 1062792 1062935 . + . Name=NC_011744+1062792..1062935; +NC_011744 split gene 1093545 1098842 . + . Name=NC_011744+1093545..1098842; +NC_011744 split gene 1115052 1119360 . + . Name=NC_011744+1115052..1119360; +NC_011744 split gene 1148963 1149922 . + . Name=NC_011744+1148963..1149922; +NC_011744 split gene 1153415 1160053 . + . Name=NC_011744+1153415..1160053; +NC_011744 split gene 1161525 1165421 . + . Name=NC_011744+1161525..1165421; +NC_011744 split gene 1171985 1175738 . + . Name=NC_011744+1171985..1175738; +NC_011744 split gene 1177488 1177832 . + . Name=NC_011744+1177488..1177832; +NC_011744 split gene 1178987 1181946 . + . Name=NC_011744+1178987..1181946; +NC_011744 split gene 1182101 1184455 . + . Name=NC_011744+1182101..1184455; +NC_011744 split gene 1187819 1189363 . + . Name=NC_011744+1187819..1189363; +NC_011744 split gene 1192081 1193043 . + . Name=NC_011744+1192081..1193043; +NC_011744 split gene 1193246 1193389 . + . Name=NC_011744+1193246..1193389; +NC_011744 split gene 1193628 1196734 . + . Name=NC_011744+1193628..1196734; +NC_011744 split gene 1198432 1199322 . + . Name=NC_011744+1198432..1199322; +NC_011744 split gene 1215746 1216739 . + . Name=NC_011744+1215746..1216739; +NC_011744 split gene 1217046 1217513 . + . Name=NC_011744+1217046..1217513; +NC_011744 split gene 1218285 1219951 . + . Name=NC_011744+1218285..1219951; +NC_011744 split gene 1220957 1222900 . + . Name=NC_011744+1220957..1222900; +NC_011744 split gene 1233780 1234454 . + . Name=NC_011744+1233780..1234454; +NC_011744 split gene 1234860 1236490 . + . Name=NC_011744+1234860..1236490; +NC_011744 split gene 1239985 1243687 . + . Name=NC_011744+1239985..1243687; +NC_011744 split gene 1249450 1251402 . + . Name=NC_011744+1249450..1251402; +NC_011744 split gene 1252374 1253291 . + . Name=NC_011744+1252374..1253291; +NC_011744 split gene 1254675 1255607 . + . Name=NC_011744+1254675..1255607; +NC_011744 split gene 1264725 1272000 . + . Name=NC_011744+1264725..1272000; +NC_011744 split gene 1272522 1273160 . + . Name=NC_011744+1272522..1273160; +NC_011744 split gene 1274895 1275119 . + . Name=NC_011744+1274895..1275119; +NC_011744 split gene 1277786 1280713 . + . Name=NC_011744+1277786..1280713; +NC_011744 split gene 1281588 1282403 . + . Name=NC_011744+1281588..1282403; +NC_011744 split gene 1288177 1288620 . + . Name=NC_011744+1288177..1288620; +NC_011744 split gene 1291841 1291987 . + . Name=NC_011744+1291841..1291987; +NC_011744 split gene 1292358 1293410 . + . Name=NC_011744+1292358..1293410; +NC_011744 split gene 1293602 1294336 . + . Name=NC_011744+1293602..1294336; +NC_011744 split gene 1295012 1296643 . + . Name=NC_011744+1295012..1296643; +NC_011744 split gene 1301316 1303737 . + . Name=NC_011744+1301316..1303737; +NC_011744 split gene 1304898 1305092 . + . Name=NC_011744+1304898..1305092; +NC_011744 split gene 1308702 1310549 . + . Name=NC_011744+1308702..1310549; +NC_011744 split gene 1313533 1314327 . + . Name=NC_011744+1313533..1314327; +NC_011744 split gene 1317324 1317572 . + . Name=NC_011744+1317324..1317572; +NC_011744 split gene 1318446 1321973 . + . Name=NC_011744+1318446..1321973; +NC_011744 split gene 1323621 1324172 . + . Name=NC_011744+1323621..1324172; +NC_011744 split gene 1326887 1327444 . + . Name=NC_011744+1326887..1327444; +NC_011744 split gene 1327606 1329549 . + . Name=NC_011744+1327606..1329549; +NC_011744 split gene 1329878 1330042 . + . Name=NC_011744+1329878..1330042; +NC_011744 split gene 1330397 1332139 . + . Name=NC_011744+1330397..1332139; +NC_011744 split gene 1332366 1334445 . + . Name=NC_011744+1332366..1334445; +NC_011744 split gene 1335086 1336894 . + . Name=NC_011744+1335086..1336894; +NC_011744 split gene 1337143 1337580 . + . Name=NC_011744+1337143..1337580; +NC_011744 split gene 1338365 1340077 . + . Name=NC_011744+1338365..1340077; +NC_011744 split gene 1340280 1340660 . + . Name=NC_011744+1340280..1340660; +NC_011744 split gene 1340984 1343287 . + . Name=NC_011744+1340984..1343287; +NC_011744 split gene 1350071 1350241 . + . Name=NC_011744+1350071..1350241; +NC_011744 split gene 1350543 1351909 . + . Name=NC_011744+1350543..1351909; +NC_011744 split gene 1353161 1353763 . + . Name=NC_011744+1353161..1353763; +NC_011744 split gene 1354039 1355331 . + . Name=NC_011744+1354039..1355331; +NC_011744 split gene 1355502 1359415 . + . Name=NC_011744+1355502..1359415; +NC_011744 split gene 1359575 1360312 . + . Name=NC_011744+1359575..1360312; +NC_011744 split gene 1363264 1364244 . + . Name=NC_011744+1363264..1364244; +NC_011744 split gene 1364408 1364569 . + . Name=NC_011744+1364408..1364569; +NC_011744 split gene 1364917 1365549 . + . Name=NC_011744+1364917..1365549; +NC_011744 split gene 1366686 1369058 . + . Name=NC_011744+1366686..1369058; +NC_011744 split gene 1369271 1370608 . + . Name=NC_011744+1369271..1370608; +NC_011744 split gene 1371102 1375019 . + . Name=NC_011744+1371102..1375019; +NC_011744 split gene 1382635 1383234 . + . Name=NC_011744+1382635..1383234; +NC_011744 split gene 1387832 1388134 . + . Name=NC_011744+1387832..1388134; +NC_011744 split gene 1388799 1389693 . + . Name=NC_011744+1388799..1389693; +NC_011744 split gene 1390708 1392261 . + . Name=NC_011744+1390708..1392261; +NC_011744 split gene 1392486 1393211 . + . Name=NC_011744+1392486..1393211; +NC_011744 split gene 1393571 1395505 . + . Name=NC_011744+1393571..1395505; +NC_011744 split gene 1396814 1396964 . + . Name=NC_011744+1396814..1396964; +NC_011744 split gene 1397312 1397968 . + . Name=NC_011744+1397312..1397968; +NC_011744 split gene 1398300 1403173 . + . Name=NC_011744+1398300..1403173; +NC_011744 split gene 1403576 1404439 . + . Name=NC_011744+1403576..1404439; +NC_011744 split gene 1405635 1406273 . + . Name=NC_011744+1405635..1406273; +NC_011744 split gene 1408013 1408351 . + . Name=NC_011744+1408013..1408351; +NC_011744 split gene 1409515 1410234 . + . Name=NC_011744+1409515..1410234; +NC_011744 split gene 1411500 1412720 . + . Name=NC_011744+1411500..1412720; +NC_011744 split gene 1413164 1413520 . + . Name=NC_011744+1413164..1413520; +NC_011744 split gene 1413807 1414866 . + . Name=NC_011744+1413807..1414866; +NC_011744 split gene 1424117 1424959 . + . Name=NC_011744+1424117..1424959; +NC_011744 split gene 1425300 1426140 . + . Name=NC_011744+1425300..1426140; +NC_011744 split gene 1426447 1427217 . + . Name=NC_011744+1426447..1427217; +NC_011744 split gene 1431541 1433601 . + . Name=NC_011744+1431541..1433601; +NC_011744 split gene 1434499 1436160 . + . Name=NC_011744+1434499..1436160; +NC_011744 split gene 1437413 1437760 . + . Name=NC_011744+1437413..1437760; +NC_011744 split gene 1439849 1440274 . + . Name=NC_011744+1439849..1440274; +NC_011744 split gene 1441562 1442989 . + . Name=NC_011744+1441562..1442989; +NC_011744 split gene 1445373 1446536 . + . Name=NC_011744+1445373..1446536; +NC_011744 split gene 1447254 1447676 . + . Name=NC_011744+1447254..1447676; +NC_011744 split gene 1450187 1451071 . + . Name=NC_011744+1450187..1451071; +NC_011744 split gene 1453292 1454375 . + . Name=NC_011744+1453292..1454375; +NC_011744 split gene 1455657 1457561 . + . Name=NC_011744+1455657..1457561; +NC_011744 split gene 1457746 1458909 . + . Name=NC_011744+1457746..1458909; +NC_011744 split gene 1459174 1461052 . + . Name=NC_011744+1459174..1461052; +NC_011744 split gene 1462960 1463670 . + . Name=NC_011744+1462960..1463670; +NC_011744 split gene 1465782 1466930 . + . Name=NC_011744+1465782..1466930; +NC_011744 split gene 1467088 1467927 . + . Name=NC_011744+1467088..1467927; +NC_011744 split gene 1468090 1468969 . + . Name=NC_011744+1468090..1468969; +NC_011744 split gene 1469206 1469946 . + . Name=NC_011744+1469206..1469946; +NC_011744 split gene 1470805 1471716 . + . Name=NC_011744+1470805..1471716; +NC_011744 split gene 1473552 1475425 . + . Name=NC_011744+1473552..1475425; +NC_011744 split gene 1475833 1478073 . + . Name=NC_011744+1475833..1478073; +NC_011744 split gene 1479200 1479847 . + . Name=NC_011744+1479200..1479847; +NC_011744 split gene 1480964 1482406 . + . Name=NC_011744+1480964..1482406; +NC_011744 split gene 1483259 1485253 . + . Name=NC_011744+1483259..1485253; +NC_011744 split gene 1485732 1487564 . + . Name=NC_011744+1485732..1487564; +NC_011744 split gene 1489595 1490254 . + . Name=NC_011744+1489595..1490254; +NC_011744 split gene 1490465 1491661 . + . Name=NC_011744+1490465..1491661; +NC_011744 split gene 1491817 1492503 . + . Name=NC_011744+1491817..1492503; +NC_011744 split gene 1492762 1493904 . + . Name=NC_011744+1492762..1493904; +NC_011744 split gene 1494104 1494520 . + . Name=NC_011744+1494104..1494520; +NC_011744 split gene 1496621 1497514 . + . Name=NC_011744+1496621..1497514; +NC_011744 split gene 1498985 1500721 . + . Name=NC_011744+1498985..1500721; +NC_011744 split gene 1501648 1502550 . + . Name=NC_011744+1501648..1502550; +NC_011744 split gene 1502816 1503733 . + . Name=NC_011744+1502816..1503733; +NC_011744 split gene 1503996 1506286 . + . Name=NC_011744+1503996..1506286; +NC_011744 split gene 1509351 1510097 . + . Name=NC_011744+1509351..1510097; +NC_011744 split gene 1512884 1515019 . + . Name=NC_011744+1512884..1515019; +NC_011744 split gene 1516917 1517189 . + . Name=NC_011744+1516917..1517189; +NC_011744 split gene 1523140 1524087 . + . Name=NC_011744+1523140..1524087; +NC_011744 split gene 1535471 1535671 . + . Name=NC_011744+1535471..1535671; +NC_011744 split gene 1538905 1540599 . + . Name=NC_011744+1538905..1540599; +NC_011744 split gene 1540898 1542046 . + . Name=NC_011744+1540898..1542046; +NC_011744 split gene 1542475 1545714 . + . Name=NC_011744+1542475..1545714; +NC_011744 split gene 1546721 1547869 . + . Name=NC_011744+1546721..1547869; +NC_011744 split gene 1548184 1549173 . + . Name=NC_011744+1548184..1549173; +NC_011744 split gene 1549641 1550528 . + . Name=NC_011744+1549641..1550528; +NC_011744 split gene 1554214 1555437 . + . Name=NC_011744+1554214..1555437; +NC_011744 split gene 1555874 1556746 . + . Name=NC_011744+1555874..1556746; +NC_011744 split gene 1557643 1558107 . + . Name=NC_011744+1557643..1558107; +NC_011744 split gene 1558509 1561049 . + . Name=NC_011744+1558509..1561049; +NC_011744 split gene 1562226 1562348 . + . Name=NC_011744+1562226..1562348; +NC_011744 split gene 1563025 1565145 . + . Name=NC_011744+1563025..1565145; +NC_011744 split gene 1566254 1566730 . + . Name=NC_011744+1566254..1566730; +NC_011744 split gene 1566976 1567611 . + . Name=NC_011744+1566976..1567611; +NC_011744 split gene 1568849 1569184 . + . Name=NC_011744+1568849..1569184; +NC_011744 split gene 1570873 1572312 . + . Name=NC_011744+1570873..1572312; +NC_011744 split gene 1575074 1575277 . + . Name=NC_011744+1575074..1575277; +NC_011744 split gene 1576535 1576888 . + . Name=NC_011744+1576535..1576888; +NC_011744 split gene 1577357 1578157 . + . Name=NC_011744+1577357..1578157; +NC_011744 split gene 1578534 1579400 . + . Name=NC_011744+1578534..1579400; +NC_011744 split gene 1579724 1580618 . + . Name=NC_011744+1579724..1580618; +NC_011744 split gene 1580865 1583707 . + . Name=NC_011744+1580865..1583707; +NC_011744 split gene 1589995 1600872 . + . Name=NC_011744+1589995..1600872; +NC_011744 split gene 1601203 1601466 . + . Name=NC_011744+1601203..1601466; +NC_011744 split gene 1601705 1602732 . + . Name=NC_011744+1601705..1602732; +NC_011744 split gene 1603005 1603073 . + . Name=NC_011744+1603005..1603073; +NC_011744 split gene 1605920 1607398 . + . Name=NC_011744+1605920..1607398; +NC_011744 split gene 1607784 1608212 . + . Name=NC_011744+1607784..1608212; +NC_011744 split gene 1608380 1608862 . + . Name=NC_011744+1608380..1608862; +NC_011744 split gene 1612372 1615488 . + . Name=NC_011744+1612372..1615488; +NC_011744 split gene 1633846 1634775 . + . Name=NC_011744+1633846..1634775; +NC_011744 split gene 1634996 1637844 . + . Name=NC_011744+1634996..1637844; +NC_011744 split gene 1638514 1639428 . + . Name=NC_011744+1638514..1639428; +NC_011744 split gene 1643555 1643806 . + . Name=NC_011744+1643555..1643806; +NC_011744 split gene 1645252 1646514 . + . Name=NC_011744+1645252..1646514; +NC_011744 split gene 1649229 1651280 . + . Name=NC_011744+1649229..1651280; +NC_011744 split gene 1651672 1657718 . + . Name=NC_011744+1651672..1657718; +NC_011744 split gene 1658632 1659561 . + . Name=NC_011744+1658632..1659561; +NC_011744 split gene 1663853 1664035 . + . Name=NC_011744+1663853..1664035; +NC_011744 split gene 1667657 1668415 . + . Name=NC_011744+1667657..1668415; +NC_011744 split gene 1669923 1672240 . + . Name=NC_011744+1669923..1672240; +NC_011744 split gene 1672683 1674662 . - . Name=NC_011744-1672683..1674662; +NC_011744 split gene 1672182 1672271 . - . Name=NC_011744-1672182..1672271; +NC_011744 split gene 1669376 1669699 . - . Name=NC_011744-1669376..1669699; +NC_011744 split gene 1668625 1669185 . - . Name=NC_011744-1668625..1669185; +NC_011744 split gene 1665142 1667568 . - . Name=NC_011744-1665142..1667568; +NC_011744 split gene 1664130 1664789 . - . Name=NC_011744-1664130..1664789; +NC_011744 split gene 1659797 1663769 . - . Name=NC_011744-1659797..1663769; +NC_011744 split gene 1646662 1649029 . - . Name=NC_011744-1646662..1649029; +NC_011744 split gene 1643986 1645065 . - . Name=NC_011744-1643986..1645065; +NC_011744 split gene 1641680 1643497 . - . Name=NC_011744-1641680..1643497; +NC_011744 split gene 1639627 1641237 . - . Name=NC_011744-1639627..1641237; +NC_011744 split gene 1637949 1638386 . - . Name=NC_011744-1637949..1638386; +NC_011744 split gene 1636980 1637186 . - . Name=NC_011744-1636980..1637186; +NC_011744 split gene 1626732 1633492 . - . Name=NC_011744-1626732..1633492; +NC_011744 split gene 1623757 1626519 . - . Name=NC_011744-1623757..1626519; +NC_011744 split gene 1620650 1623430 . - . Name=NC_011744-1620650..1623430; +NC_011744 split gene 1619882 1620406 . - . Name=NC_011744-1619882..1620406; +NC_011744 split gene 1616884 1619609 . - . Name=NC_011744-1616884..1619609; +NC_011744 split gene 1615785 1616651 . - . Name=NC_011744-1615785..1616651; +NC_011744 split gene 1611320 1612255 . - . Name=NC_011744-1611320..1612255; +NC_011744 split gene 1609169 1611113 . - . Name=NC_011744-1609169..1611113; +NC_011744 split gene 1603433 1605788 . - . Name=NC_011744-1603433..1605788; +NC_011744 split gene 1602866 1603210 . - . Name=NC_011744-1602866..1603210; +NC_011744 split gene 1600869 1601141 . - . Name=NC_011744-1600869..1601141; +NC_011744 split gene 1589312 1589704 . - . Name=NC_011744-1589312..1589704; +NC_011744 split gene 1585831 1589052 . - . Name=NC_011744-1585831..1589052; +NC_011744 split gene 1585287 1585643 . - . Name=NC_011744-1585287..1585643; +NC_011744 split gene 1583744 1584970 . - . Name=NC_011744-1583744..1584970; +NC_011744 split gene 1575488 1576381 . - . Name=NC_011744-1575488..1576381; +NC_011744 split gene 1572896 1574837 . - . Name=NC_011744-1572896..1574837; +NC_011744 split gene 1572314 1572697 . - . Name=NC_011744-1572314..1572697; +NC_011744 split gene 1569243 1570447 . - . Name=NC_011744-1569243..1570447; +NC_011744 split gene 1567670 1568595 . - . Name=NC_011744-1567670..1568595; +NC_011744 split gene 1565304 1566143 . - . Name=NC_011744-1565304..1566143; +NC_011744 split gene 1562271 1562864 . - . Name=NC_011744-1562271..1562864; +NC_011744 split gene 1561183 1562055 . - . Name=NC_011744-1561183..1562055; +NC_011744 split gene 1556978 1557259 . - . Name=NC_011744-1556978..1557259; +NC_011744 split gene 1555434 1555766 . - . Name=NC_011744-1555434..1555766; +NC_011744 split gene 1550545 1553912 . - . Name=NC_011744-1550545..1553912; +NC_011744 split gene 1545470 1546605 . - . Name=NC_011744-1545470..1546605; +NC_011744 split gene 1535668 1538657 . - . Name=NC_011744-1535668..1538657; +NC_011744 split gene 1533954 1535294 . - . Name=NC_011744-1533954..1535294; +NC_011744 split gene 1524161 1533348 . - . Name=NC_011744-1524161..1533348; +NC_011744 split gene 1518717 1523186 . - . Name=NC_011744-1518717..1523186; +NC_011744 split gene 1517772 1518491 . - . Name=NC_011744-1517772..1518491; +NC_011744 split gene 1515440 1517185 . - . Name=NC_011744-1515440..1517185; +NC_011744 split gene 1510283 1512643 . - . Name=NC_011744-1510283..1512643; +NC_011744 split gene 1506389 1509041 . - . Name=NC_011744-1506389..1509041; +NC_011744 split gene 1503909 1504016 . - . Name=NC_011744-1503909..1504016; +NC_011744 split gene 1500830 1501533 . - . Name=NC_011744-1500830..1501533; +NC_011744 split gene 1497610 1498893 . - . Name=NC_011744-1497610..1498893; +NC_011744 split gene 1495584 1496496 . - . Name=NC_011744-1495584..1496496; +NC_011744 split gene 1494720 1495373 . - . Name=NC_011744-1494720..1495373; +NC_011744 split gene 1487855 1489189 . - . Name=NC_011744-1487855..1489189; +NC_011744 split gene 1485444 1485704 . - . Name=NC_011744-1485444..1485704; +NC_011744 split gene 1482615 1483073 . - . Name=NC_011744-1482615..1483073; +NC_011744 split gene 1479924 1480773 . - . Name=NC_011744-1479924..1480773; +NC_011744 split gene 1478211 1479062 . - . Name=NC_011744-1478211..1479062; +NC_011744 split gene 1471790 1473310 . - . Name=NC_011744-1471790..1473310; +NC_011744 split gene 1470064 1470687 . - . Name=NC_011744-1470064..1470687; +NC_011744 split gene 1463824 1465293 . - . Name=NC_011744-1463824..1465293; +NC_011744 split gene 1461160 1462836 . - . Name=NC_011744-1461160..1462836; +NC_011744 split gene 1454439 1455302 . - . Name=NC_011744-1454439..1455302; +NC_011744 split gene 1451183 1453048 . - . Name=NC_011744-1451183..1453048; +NC_011744 split gene 1447782 1449785 . - . Name=NC_011744-1447782..1449785; +NC_011744 split gene 1446689 1447132 . - . Name=NC_011744-1446689..1447132; +NC_011744 split gene 1443084 1444880 . - . Name=NC_011744-1443084..1444880; +NC_011744 split gene 1440540 1441439 . - . Name=NC_011744-1440540..1441439; +NC_011744 split gene 1437953 1439611 . - . Name=NC_011744-1437953..1439611; +NC_011744 split gene 1436281 1437150 . - . Name=NC_011744-1436281..1437150; +NC_011744 split gene 1433713 1434225 . - . Name=NC_011744-1433713..1434225; +NC_011744 split gene 1427257 1431262 . - . Name=NC_011744-1427257..1431262; +NC_011744 split gene 1420375 1423697 . - . Name=NC_011744-1420375..1423697; +NC_011744 split gene 1418879 1420120 . - . Name=NC_011744-1418879..1420120; +NC_011744 split gene 1415023 1418583 . - . Name=NC_011744-1415023..1418583; +NC_011744 split gene 1410452 1411099 . - . Name=NC_011744-1410452..1411099; +NC_011744 split gene 1408399 1409310 . - . Name=NC_011744-1408399..1409310; +NC_011744 split gene 1406351 1407979 . - . Name=NC_011744-1406351..1407979; +NC_011744 split gene 1404576 1405475 . - . Name=NC_011744-1404576..1405475; +NC_011744 split gene 1404163 1404264 . - . Name=NC_011744-1404163..1404264; +NC_011744 split gene 1400921 1401307 . - . Name=NC_011744-1400921..1401307; +NC_011744 split gene 1395684 1396430 . - . Name=NC_011744-1395684..1396430; +NC_011744 split gene 1389802 1390446 . - . Name=NC_011744-1389802..1390446; +NC_011744 split gene 1387465 1388616 . - . Name=NC_011744-1387465..1388616; +NC_011744 split gene 1383353 1387051 . - . Name=NC_011744-1383353..1387051; +NC_011744 split gene 1381807 1382205 . - . Name=NC_011744-1381807..1382205; +NC_011744 split gene 1378932 1381102 . - . Name=NC_011744-1378932..1381102; +NC_011744 split gene 1375211 1378513 . - . Name=NC_011744-1375211..1378513; +NC_011744 split gene 1365674 1366507 . - . Name=NC_011744-1365674..1366507; +NC_011744 split gene 1361888 1362676 . - . Name=NC_011744-1361888..1362676; +NC_011744 split gene 1360418 1361676 . - . Name=NC_011744-1360418..1361676; +NC_011744 split gene 1355408 1355551 . - . Name=NC_011744-1355408..1355551; +NC_011744 split gene 1351985 1352779 . - . Name=NC_011744-1351985..1352779; +NC_011744 split gene 1348155 1349939 . - . Name=NC_011744-1348155..1349939; +NC_011744 split gene 1346082 1347993 . - . Name=NC_011744-1346082..1347993; +NC_011744 split gene 1344533 1345891 . - . Name=NC_011744-1344533..1345891; +NC_011744 split gene 1343308 1344375 . - . Name=NC_011744-1343308..1344375; +NC_011744 split gene 1340204 1340401 . - . Name=NC_011744-1340204..1340401; +NC_011744 split gene 1337598 1338092 . - . Name=NC_011744-1337598..1338092; +NC_011744 split gene 1324315 1326361 . - . Name=NC_011744-1324315..1326361; +NC_011744 split gene 1322129 1323394 . - . Name=NC_011744-1322129..1323394; +NC_011744 split gene 1318149 1318313 . - . Name=NC_011744-1318149..1318313; +NC_011744 split gene 1315467 1317071 . - . Name=NC_011744-1315467..1317071; +NC_011744 split gene 1314439 1315272 . - . Name=NC_011744-1314439..1315272; +NC_011744 split gene 1310644 1313357 . - . Name=NC_011744-1310644..1313357; +NC_011744 split gene 1307887 1308480 . - . Name=NC_011744-1307887..1308480; +NC_011744 split gene 1305233 1307669 . - . Name=NC_011744-1305233..1307669; +NC_011744 split gene 1303820 1304656 . - . Name=NC_011744-1303820..1304656; +NC_011744 split gene 1298424 1300868 . - . Name=NC_011744-1298424..1300868; +NC_011744 split gene 1296763 1298226 . - . Name=NC_011744-1296763..1298226; +NC_011744 split gene 1294434 1294757 . - . Name=NC_011744-1294434..1294757; +NC_011744 split gene 1292195 1292341 . - . Name=NC_011744-1292195..1292341; +NC_011744 split gene 1288736 1291491 . - . Name=NC_011744-1288736..1291491; +NC_011744 split gene 1283617 1287968 . - . Name=NC_011744-1283617..1287968; +NC_011744 split gene 1282598 1283302 . - . Name=NC_011744-1282598..1283302; +NC_011744 split gene 1280972 1281334 . - . Name=NC_011744-1280972..1281334; +NC_011744 split gene 1275408 1277477 . - . Name=NC_011744-1275408..1277477; +NC_011744 split gene 1273484 1274677 . - . Name=NC_011744-1273484..1274677; +NC_011744 split gene 1262438 1264474 . - . Name=NC_011744-1262438..1264474; +NC_011744 split gene 1256291 1262248 . - . Name=NC_011744-1256291..1262248; +NC_011744 split gene 1255752 1256138 . - . Name=NC_011744-1255752..1256138; +NC_011744 split gene 1253443 1254468 . - . Name=NC_011744-1253443..1254468; +NC_011744 split gene 1251577 1252032 . - . Name=NC_011744-1251577..1252032; +NC_011744 split gene 1247997 1249349 . - . Name=NC_011744-1247997..1249349; +NC_011744 split gene 1247502 1247753 . - . Name=NC_011744-1247502..1247753; +NC_011744 split gene 1245677 1247120 . - . Name=NC_011744-1245677..1247120; +NC_011744 split gene 1243775 1244818 . - . Name=NC_011744-1243775..1244818; +NC_011744 split gene 1240399 1240725 . - . Name=NC_011744-1240399..1240725; +NC_011744 split gene 1238904 1239575 . - . Name=NC_011744-1238904..1239575; +NC_011744 split gene 1237160 1238719 . - . Name=NC_011744-1237160..1238719; +NC_011744 split gene 1236580 1236819 . - . Name=NC_011744-1236580..1236819; +NC_011744 split gene 1231806 1233284 . - . Name=NC_011744-1231806..1233284; +NC_011744 split gene 1230355 1231404 . - . Name=NC_011744-1230355..1231404; +NC_011744 split gene 1223038 1230181 . - . Name=NC_011744-1223038..1230181; +NC_011744 split gene 1220080 1220766 . - . Name=NC_011744-1220080..1220766; +NC_011744 split gene 1217709 1218146 . - . Name=NC_011744-1217709..1218146; +NC_011744 split gene 1211676 1215586 . - . Name=NC_011744-1211676..1215586; +NC_011744 split gene 1210829 1211422 . - . Name=NC_011744-1210829..1211422; +NC_011744 split gene 1205725 1209463 . - . Name=NC_011744-1205725..1209463; +NC_011744 split gene 1199417 1205405 . - . Name=NC_011744-1199417..1205405; +NC_011744 split gene 1196948 1198174 . - . Name=NC_011744-1196948..1198174; +NC_011744 split gene 1193474 1193665 . - . Name=NC_011744-1193474..1193665; +NC_011744 split gene 1191462 1191929 . - . Name=NC_011744-1191462..1191929; +NC_011744 split gene 1189691 1191253 . - . Name=NC_011744-1189691..1191253; +NC_011744 split gene 1184694 1187726 . - . Name=NC_011744-1184694..1187726; +NC_011744 split gene 1178012 1178392 . - . Name=NC_011744-1178012..1178392; +NC_011744 split gene 1177465 1177785 . - . Name=NC_011744-1177465..1177785; +NC_011744 split gene 1176355 1177212 . - . Name=NC_011744-1176355..1177212; +NC_011744 split gene 1175849 1176172 . - . Name=NC_011744-1175849..1176172; +NC_011744 split gene 1165522 1171829 . - . Name=NC_011744-1165522..1171829; +NC_011744 split gene 1160129 1161292 . - . Name=NC_011744-1160129..1161292; +NC_011744 split gene 1150345 1152942 . - . Name=NC_011744-1150345..1152942; +NC_011744 split gene 1138091 1148704 . - . Name=NC_011744-1138091..1148704; +NC_011744 split gene 1127390 1137370 . - . Name=NC_011744-1127390..1137370; +NC_011744 split gene 1119421 1127185 . - . Name=NC_011744-1119421..1127185; +NC_011744 split gene 1108177 1114597 . - . Name=NC_011744-1108177..1114597; +NC_011744 split gene 1098871 1107675 . - . Name=NC_011744-1098871..1107675; +NC_011744 split gene 1084799 1092865 . - . Name=NC_011744-1084799..1092865; +NC_011744 split gene 1083767 1084411 . - . Name=NC_011744-1083767..1084411; +NC_011744 split gene 1081952 1083590 . - . Name=NC_011744-1081952..1083590; +NC_011744 split gene 1079815 1081574 . - . Name=NC_011744-1079815..1081574; +NC_011744 split gene 1078538 1079514 . - . Name=NC_011744-1078538..1079514; +NC_011744 split gene 1075189 1078353 . - . Name=NC_011744-1075189..1078353; +NC_011744 split gene 1068805 1075006 . - . Name=NC_011744-1068805..1075006; +NC_011744 split gene 1064838 1068624 . - . Name=NC_011744-1064838..1068624; +NC_011744 split gene 1063028 1064630 . - . Name=NC_011744-1063028..1064630; +NC_011744 split gene 1062286 1062711 . - . Name=NC_011744-1062286..1062711; +NC_011744 split gene 1061438 1061875 . - . Name=NC_011744-1061438..1061875; +NC_011744 split gene 1059596 1061010 . - . Name=NC_011744-1059596..1061010; +NC_011744 split gene 1057002 1057667 . - . Name=NC_011744-1057002..1057667; +NC_011744 split gene 1048904 1049539 . - . Name=NC_011744-1048904..1049539; +NC_011744 split gene 1041608 1047317 . - . Name=NC_011744-1041608..1047317; +NC_011744 split gene 1035708 1036604 . - . Name=NC_011744-1035708..1036604; +NC_011744 split gene 1024400 1030193 . - . Name=NC_011744-1024400..1030193; +NC_011744 split gene 1023422 1024201 . - . Name=NC_011744-1023422..1024201; +NC_011744 split gene 1022610 1023158 . - . Name=NC_011744-1022610..1023158; +NC_011744 split gene 1013276 1013686 . - . Name=NC_011744-1013276..1013686; +NC_011744 split gene 1011616 1013079 . - . Name=NC_011744-1011616..1013079; +NC_011744 split gene 1010410 1011411 . - . Name=NC_011744-1010410..1011411; +NC_011744 split gene 1008571 1010178 . - . Name=NC_011744-1008571..1010178; +NC_011744 split gene 1005763 1008308 . - . Name=NC_011744-1005763..1008308; +NC_011744 split gene 1004107 1005399 . - . Name=NC_011744-1004107..1005399; +NC_011744 split gene 996495 997997 . - . Name=NC_011744-996495..997997; +NC_011744 split gene 991952 992602 . - . Name=NC_011744-991952..992602; +NC_011744 split gene 989343 991730 . - . Name=NC_011744-989343..991730; +NC_011744 split gene 987744 988238 . - . Name=NC_011744-987744..988238; +NC_011744 split gene 983239 984813 . - . Name=NC_011744-983239..984813; +NC_011744 split gene 980660 983047 . - . Name=NC_011744-980660..983047; +NC_011744 split gene 972837 980475 . - . Name=NC_011744-972837..980475; +NC_011744 split gene 967368 969845 . - . Name=NC_011744-967368..969845; +NC_011744 split gene 932163 952555 . - . Name=NC_011744-932163..952555; +NC_011744 split gene 931608 931961 . - . Name=NC_011744-931608..931961; +NC_011744 split gene 924279 925181 . - . Name=NC_011744-924279..925181; +NC_011744 split gene 915759 918681 . - . Name=NC_011744-915759..918681; +NC_011744 split gene 914705 915505 . - . Name=NC_011744-914705..915505; +NC_011744 split gene 913393 914454 . - . Name=NC_011744-913393..914454; +NC_011744 split gene 912255 913226 . - . Name=NC_011744-912255..913226; +NC_011744 split gene 910131 911902 . - . Name=NC_011744-910131..911902; +NC_011744 split gene 906613 908214 . - . Name=NC_011744-906613..908214; +NC_011744 split gene 905907 906257 . - . Name=NC_011744-905907..906257; +NC_011744 split gene 905548 905715 . - . Name=NC_011744-905548..905715; +NC_011744 split gene 904904 905320 . - . Name=NC_011744-904904..905320; +NC_011744 split gene 904385 904729 . - . Name=NC_011744-904385..904729; +NC_011744 split gene 900811 902702 . - . Name=NC_011744-900811..902702; +NC_011744 split gene 899061 900308 . - . Name=NC_011744-899061..900308; +NC_011744 split gene 893119 893742 . - . Name=NC_011744-893119..893742; +NC_011744 split gene 891515 892681 . - . Name=NC_011744-891515..892681; +NC_011744 split gene 890115 891200 . - . Name=NC_011744-890115..891200; +NC_011744 split gene 889175 889498 . - . Name=NC_011744-889175..889498; +NC_011744 split gene 887895 888512 . - . Name=NC_011744-887895..888512; +NC_011744 split gene 879102 881495 . - . Name=NC_011744-879102..881495; +NC_011744 split gene 878165 878944 . - . Name=NC_011744-878165..878944; +NC_011744 split gene 874365 874523 . - . Name=NC_011744-874365..874523; +NC_011744 split gene 872230 874170 . - . Name=NC_011744-872230..874170; +NC_011744 split gene 865987 871186 . - . Name=NC_011744-865987..871186; +NC_011744 split gene 863271 863528 . - . Name=NC_011744-863271..863528; +NC_011744 split gene 861979 863086 . - . Name=NC_011744-861979..863086; +NC_011744 split gene 859011 859916 . - . Name=NC_011744-859011..859916; +NC_011744 split gene 858049 858543 . - . Name=NC_011744-858049..858543; +NC_011744 split gene 853914 855859 . - . Name=NC_011744-853914..855859; +NC_011744 split gene 852502 853701 . - . Name=NC_011744-852502..853701; +NC_011744 split gene 852000 852188 . - . Name=NC_011744-852000..852188; +NC_011744 split gene 849634 851842 . - . Name=NC_011744-849634..851842; +NC_011744 split gene 843630 844736 . - . Name=NC_011744-843630..844736; +NC_011744 split gene 841841 842573 . - . Name=NC_011744-841841..842573; +NC_011744 split gene 839056 841686 . - . Name=NC_011744-839056..841686; +NC_011744 split gene 837055 837927 . - . Name=NC_011744-837055..837927; +NC_011744 split gene 836127 836747 . - . Name=NC_011744-836127..836747; +NC_011744 split gene 824914 828028 . - . Name=NC_011744-824914..828028; +NC_011744 split gene 822927 824381 . - . Name=NC_011744-822927..824381; +NC_011744 split gene 818680 819693 . - . Name=NC_011744-818680..819693; +NC_011744 split gene 815005 815892 . - . Name=NC_011744-815005..815892; +NC_011744 split gene 811552 812115 . - . Name=NC_011744-811552..812115; +NC_011744 split gene 810377 811372 . - . Name=NC_011744-810377..811372; +NC_011744 split gene 808421 809114 . - . Name=NC_011744-808421..809114; +NC_011744 split gene 807681 808154 . - . Name=NC_011744-807681..808154; +NC_011744 split gene 805957 807273 . - . Name=NC_011744-805957..807273; +NC_011744 split gene 800590 800664 . - . Name=NC_011744-800590..800664; +NC_011744 split gene 794897 796138 . - . Name=NC_011744-794897..796138; +NC_011744 split gene 792189 792626 . - . Name=NC_011744-792189..792626; +NC_011744 split gene 786336 787386 . - . Name=NC_011744-786336..787386; +NC_011744 split gene 784159 786045 . - . Name=NC_011744-784159..786045; +NC_011744 split gene 777526 778953 . - . Name=NC_011744-777526..778953; +NC_011744 split gene 773488 774363 . - . Name=NC_011744-773488..774363; +NC_011744 split gene 769225 769659 . - . Name=NC_011744-769225..769659; +NC_011744 split gene 765840 766991 . - . Name=NC_011744-765840..766991; +NC_011744 split gene 762344 763741 . - . Name=NC_011744-762344..763741; +NC_011744 split gene 760983 761213 . - . Name=NC_011744-760983..761213; +NC_011744 split gene 753443 753760 . - . Name=NC_011744-753443..753760; +NC_011744 split gene 744192 745496 . - . Name=NC_011744-744192..745496; +NC_011744 split gene 740597 741193 . - . Name=NC_011744-740597..741193; +NC_011744 split gene 730674 731138 . - . Name=NC_011744-730674..731138; +NC_011744 split gene 722348 724667 . - . Name=NC_011744-722348..724667; +NC_011744 split gene 720954 722141 . - . Name=NC_011744-720954..722141; +NC_011744 split gene 719066 719854 . - . Name=NC_011744-719066..719854; +NC_011744 split gene 713325 714942 . - . Name=NC_011744-713325..714942; +NC_011744 split gene 705792 712546 . - . Name=NC_011744-705792..712546; +NC_011744 split gene 700082 701402 . - . Name=NC_011744-700082..701402; +NC_011744 split gene 699090 699815 . - . Name=NC_011744-699090..699815; +NC_011744 split gene 697351 698611 . - . Name=NC_011744-697351..698611; +NC_011744 split gene 696153 697172 . - . Name=NC_011744-696153..697172; +NC_011744 split gene 692592 694097 . - . Name=NC_011744-692592..694097; +NC_011744 split gene 691396 692056 . - . Name=NC_011744-691396..692056; +NC_011744 split gene 690130 691161 . - . Name=NC_011744-690130..691161; +NC_011744 split gene 687546 689373 . - . Name=NC_011744-687546..689373; +NC_011744 split gene 678877 679593 . - . Name=NC_011744-678877..679593; +NC_011744 split gene 676943 678322 . - . Name=NC_011744-676943..678322; +NC_011744 split gene 669479 674120 . - . Name=NC_011744-669479..674120; +NC_011744 split gene 667829 669037 . - . Name=NC_011744-667829..669037; +NC_011744 split gene 659861 667587 . - . Name=NC_011744-659861..667587; +NC_011744 split gene 652234 652809 . - . Name=NC_011744-652234..652809; +NC_011744 split gene 651713 651955 . - . Name=NC_011744-651713..651955; +NC_011744 split gene 649298 650877 . - . Name=NC_011744-649298..650877; +NC_011744 split gene 642526 644553 . - . Name=NC_011744-642526..644553; +NC_011744 split gene 637090 638535 . - . Name=NC_011744-637090..638535; +NC_011744 split gene 635827 636852 . - . Name=NC_011744-635827..636852; +NC_011744 split gene 632080 634121 . - . Name=NC_011744-632080..634121; +NC_011744 split gene 625545 631388 . - . Name=NC_011744-625545..631388; +NC_011744 split gene 624071 624967 . - . Name=NC_011744-624071..624967; +NC_011744 split gene 621058 621312 . - . Name=NC_011744-621058..621312; +NC_011744 split gene 614016 615650 . - . Name=NC_011744-614016..615650; +NC_011744 split gene 612782 613228 . - . Name=NC_011744-612782..613228; +NC_011744 split gene 603010 604158 . - . Name=NC_011744-603010..604158; +NC_011744 split gene 600409 602774 . - . Name=NC_011744-600409..602774; +NC_011744 split gene 599305 600231 . - . Name=NC_011744-599305..600231; +NC_011744 split gene 598168 599112 . - . Name=NC_011744-598168..599112; +NC_011744 split gene 594859 595968 . - . Name=NC_011744-594859..595968; +NC_011744 split gene 590718 590976 . - . Name=NC_011744-590718..590976; +NC_011744 split gene 590206 590463 . - . Name=NC_011744-590206..590463; +NC_011744 split gene 573132 581666 . - . Name=NC_011744-573132..581666; +NC_011744 split gene 553978 555599 . - . Name=NC_011744-553978..555599; +NC_011744 split gene 551259 552344 . - . Name=NC_011744-551259..552344; +NC_011744 split gene 549372 550810 . - . Name=NC_011744-549372..550810; +NC_011744 split gene 547390 548886 . - . Name=NC_011744-547390..548886; +NC_011744 split gene 544457 546454 . - . Name=NC_011744-544457..546454; +NC_011744 split gene 541314 544200 . - . Name=NC_011744-541314..544200; +NC_011744 split gene 539867 541156 . - . Name=NC_011744-539867..541156; +NC_011744 split gene 537128 539515 . - . Name=NC_011744-537128..539515; +NC_011744 split gene 525128 525586 . - . Name=NC_011744-525128..525586; +NC_011744 split gene 515923 519015 . - . Name=NC_011744-515923..519015; +NC_011744 split gene 510815 513001 . - . Name=NC_011744-510815..513001; +NC_011744 split gene 507467 510462 . - . Name=NC_011744-507467..510462; +NC_011744 split gene 502821 503699 . - . Name=NC_011744-502821..503699; +NC_011744 split gene 498928 502047 . - . Name=NC_011744-498928..502047; +NC_011744 split gene 496712 496897 . - . Name=NC_011744-496712..496897; +NC_011744 split gene 495325 496473 . - . Name=NC_011744-495325..496473; +NC_011744 split gene 494164 495087 . - . Name=NC_011744-494164..495087; +NC_011744 split gene 489208 491805 . - . Name=NC_011744-489208..491805; +NC_011744 split gene 487458 488681 . - . Name=NC_011744-487458..488681; +NC_011744 split gene 481826 483189 . - . Name=NC_011744-481826..483189; +NC_011744 split gene 474756 477779 . - . Name=NC_011744-474756..477779; +NC_011744 split gene 472311 473616 . - . Name=NC_011744-472311..473616; +NC_011744 split gene 465520 465708 . - . Name=NC_011744-465520..465708; +NC_011744 split gene 461764 462018 . - . Name=NC_011744-461764..462018; +NC_011744 split gene 458945 460315 . - . Name=NC_011744-458945..460315; +NC_011744 split gene 457057 458580 . - . Name=NC_011744-457057..458580; +NC_011744 split gene 456071 456853 . - . Name=NC_011744-456071..456853; +NC_011744 split gene 436874 440325 . - . Name=NC_011744-436874..440325; +NC_011744 split gene 435461 436522 . - . Name=NC_011744-435461..436522; +NC_011744 split gene 433580 434722 . - . Name=NC_011744-433580..434722; +NC_011744 split gene 426970 431237 . - . Name=NC_011744-426970..431237; +NC_011744 split gene 424285 424524 . - . Name=NC_011744-424285..424524; +NC_011744 split gene 420608 420964 . - . Name=NC_011744-420608..420964; +NC_011744 split gene 419340 419477 . - . Name=NC_011744-419340..419477; +NC_011744 split gene 406960 408690 . - . Name=NC_011744-406960..408690; +NC_011744 split gene 401372 401680 . - . Name=NC_011744-401372..401680; +NC_011744 split gene 395048 395362 . - . Name=NC_011744-395048..395362; +NC_011744 split gene 394251 394877 . - . Name=NC_011744-394251..394877; +NC_011744 split gene 393850 394086 . - . Name=NC_011744-393850..394086; +NC_011744 split gene 388972 390408 . - . Name=NC_011744-388972..390408; +NC_011744 split gene 384149 385659 . - . Name=NC_011744-384149..385659; +NC_011744 split gene 380313 381578 . - . Name=NC_011744-380313..381578; +NC_011744 split gene 377072 378717 . - . Name=NC_011744-377072..378717; +NC_011744 split gene 374356 375923 . - . Name=NC_011744-374356..375923; +NC_011744 split gene 373934 374042 . - . Name=NC_011744-373934..374042; +NC_011744 split gene 371098 373622 . - . Name=NC_011744-371098..373622; +NC_011744 split gene 370524 370754 . - . Name=NC_011744-370524..370754; +NC_011744 split gene 369191 370228 . - . Name=NC_011744-369191..370228; +NC_011744 split gene 366620 368185 . - . Name=NC_011744-366620..368185; +NC_011744 split gene 361344 362552 . - . Name=NC_011744-361344..362552; +NC_011744 split gene 357665 358150 . - . Name=NC_011744-357665..358150; +NC_011744 split gene 355397 357379 . - . Name=NC_011744-355397..357379; +NC_011744 split gene 352866 353861 . - . Name=NC_011744-352866..353861; +NC_011744 split gene 351134 352710 . - . Name=NC_011744-351134..352710; +NC_011744 split gene 345872 348793 . - . Name=NC_011744-345872..348793; +NC_011744 split gene 341752 343059 . - . Name=NC_011744-341752..343059; +NC_011744 split gene 340153 341523 . - . Name=NC_011744-340153..341523; +NC_011744 split gene 337828 339699 . - . Name=NC_011744-337828..339699; +NC_011744 split gene 334516 335430 . - . Name=NC_011744-334516..335430; +NC_011744 split gene 329765 331646 . - . Name=NC_011744-329765..331646; +NC_011744 split gene 326774 329589 . - . Name=NC_011744-326774..329589; +NC_011744 split gene 325090 325431 . - . Name=NC_011744-325090..325431; +NC_011744 split gene 324050 324649 . - . Name=NC_011744-324050..324649; +NC_011744 split gene 322012 322638 . - . Name=NC_011744-322012..322638; +NC_011744 split gene 319914 320744 . - . Name=NC_011744-319914..320744; +NC_011744 split gene 317573 317731 . - . Name=NC_011744-317573..317731; +NC_011744 split gene 316352 317380 . - . Name=NC_011744-316352..317380; +NC_011744 split gene 314963 316180 . - . Name=NC_011744-314963..316180; +NC_011744 split gene 313812 314738 . - . Name=NC_011744-313812..314738; +NC_011744 split gene 309040 310467 . - . Name=NC_011744-309040..310467; +NC_011744 split gene 303764 305362 . - . Name=NC_011744-303764..305362; +NC_011744 split gene 302973 303563 . - . Name=NC_011744-302973..303563; +NC_011744 split gene 298191 302041 . - . Name=NC_011744-298191..302041; +NC_011744 split gene 294685 297090 . - . Name=NC_011744-294685..297090; +NC_011744 split gene 292132 294467 . - . Name=NC_011744-292132..294467; +NC_011744 split gene 290698 291947 . - . Name=NC_011744-290698..291947; +NC_011744 split gene 287851 288837 . - . Name=NC_011744-287851..288837; +NC_011744 split gene 279767 284156 . - . Name=NC_011744-279767..284156; +NC_011744 split gene 275309 277998 . - . Name=NC_011744-275309..277998; +NC_011744 split gene 271085 275014 . - . Name=NC_011744-271085..275014; +NC_011744 split gene 269443 270897 . - . Name=NC_011744-269443..270897; +NC_011744 split gene 268214 269146 . - . Name=NC_011744-268214..269146; +NC_011744 split gene 262770 264620 . - . Name=NC_011744-262770..264620; +NC_011744 split gene 262176 262564 . - . Name=NC_011744-262176..262564; +NC_011744 split gene 260282 261175 . - . Name=NC_011744-260282..261175; +NC_011744 split gene 258885 259388 . - . Name=NC_011744-258885..259388; +NC_011744 split gene 258382 258654 . - . Name=NC_011744-258382..258654; +NC_011744 split gene 252277 253389 . - . Name=NC_011744-252277..253389; +NC_011744 split gene 242225 249098 . - . Name=NC_011744-242225..249098; +NC_011744 split gene 233889 235571 . - . Name=NC_011744-233889..235571; +NC_011744 split gene 230062 231345 . - . Name=NC_011744-230062..231345; +NC_011744 split gene 227951 228283 . - . Name=NC_011744-227951..228283; +NC_011744 split gene 220939 226435 . - . Name=NC_011744-220939..226435; +NC_011744 split gene 218171 219696 . - . Name=NC_011744-218171..219696; +NC_011744 split gene 214777 217985 . - . Name=NC_011744-214777..217985; +NC_011744 split gene 204183 206906 . - . Name=NC_011744-204183..206906; +NC_011744 split gene 202677 203636 . - . Name=NC_011744-202677..203636; +NC_011744 split gene 200868 202474 . - . Name=NC_011744-200868..202474; +NC_011744 split gene 199011 200347 . - . Name=NC_011744-199011..200347; +NC_011744 split gene 197624 198841 . - . Name=NC_011744-197624..198841; +NC_011744 split gene 193680 194318 . - . Name=NC_011744-193680..194318; +NC_011744 split gene 189145 192858 . - . Name=NC_011744-189145..192858; +NC_011744 split gene 187101 188867 . - . Name=NC_011744-187101..188867; +NC_011744 split gene 181650 186638 . - . Name=NC_011744-181650..186638; +NC_011744 split gene 180946 181239 . - . Name=NC_011744-180946..181239; +NC_011744 split gene 178073 179716 . - . Name=NC_011744-178073..179716; +NC_011744 split gene 173629 177705 . - . Name=NC_011744-173629..177705; +NC_011744 split gene 167706 169679 . - . Name=NC_011744-167706..169679; +NC_011744 split gene 165711 167525 . - . Name=NC_011744-165711..167525; +NC_011744 split gene 164814 165557 . - . Name=NC_011744-164814..165557; +NC_011744 split gene 163858 164139 . - . Name=NC_011744-163858..164139; +NC_011744 split gene 162181 163424 . - . Name=NC_011744-162181..163424; +NC_011744 split gene 160700 161692 . - . Name=NC_011744-160700..161692; +NC_011744 split gene 144807 156233 . - . Name=NC_011744-144807..156233; +NC_011744 split gene 135655 136593 . - . Name=NC_011744-135655..136593; +NC_011744 split gene 130935 132437 . - . Name=NC_011744-130935..132437; +NC_011744 split gene 129398 129829 . - . Name=NC_011744-129398..129829; +NC_011744 split gene 126512 128949 . - . Name=NC_011744-126512..128949; +NC_011744 split gene 125434 126219 . - . Name=NC_011744-125434..126219; +NC_011744 split gene 123588 125222 . - . Name=NC_011744-123588..125222; +NC_011744 split gene 121363 122403 . - . Name=NC_011744-121363..122403; +NC_011744 split gene 117879 118601 . - . Name=NC_011744-117879..118601; +NC_011744 split gene 114873 115439 . - . Name=NC_011744-114873..115439; +NC_011744 split gene 113921 114712 . - . Name=NC_011744-113921..114712; +NC_011744 split gene 112703 113697 . - . Name=NC_011744-112703..113697; +NC_011744 split gene 110231 111424 . - . Name=NC_011744-110231..111424; +NC_011744 split gene 104593 105597 . - . Name=NC_011744-104593..105597; +NC_011744 split gene 99962 103402 . - . Name=NC_011744-99962..103402; +NC_011744 split gene 98945 99784 . - . Name=NC_011744-98945..99784; +NC_011744 split gene 93618 93836 . - . Name=NC_011744-93618..93836; +NC_011744 split gene 88922 92825 . - . Name=NC_011744-88922..92825; +NC_011744 split gene 85279 86277 . - . Name=NC_011744-85279..86277; +NC_011744 split gene 84373 84948 . - . Name=NC_011744-84373..84948; +NC_011744 split gene 77461 77685 . - . Name=NC_011744-77461..77685; +NC_011744 split gene 60250 60756 . - . Name=NC_011744-60250..60756; +NC_011744 split gene 54927 57177 . - . Name=NC_011744-54927..57177; +NC_011744 split utr5 54568 54590 . - . Name=NC_011744-54568..54590; +NC_011744 split gene 52087 54567 . - . Name=NC_011744-52087..54567; +NC_011744 split gene 41423 43678 . - . Name=NC_011744-41423..43678; +NC_011744 split utr3 41380 41422 . - . Name=NC_011744-41380..41422; +NC_011744 split gene 39954 40544 . - . Name=NC_011744-39954..40544; +NC_011744 split utr3 39921 39953 . - . Name=NC_011744-39921..39953; +NC_011744 split gene 38102 39724 . - . Name=NC_011744-38102..39724; +NC_011744 split gene 37057 37881 . - . Name=NC_011744-37057..37881; +NC_011744 split gene 35271 36858 . - . Name=NC_011744-35271..36858; +NC_011744 split utr5 33579 33638 . - . Name=NC_011744-33579..33638; +NC_011744 split gene 31728 33578 . - . Name=NC_011744-31728..33578; +NC_011744 split utr3 31715 31727 . - . Name=NC_011744-31715..31727; +NC_011744 split gene 30726 31430 . - . Name=NC_011744-30726..31430; +NC_011744 split utr5 29848 29874 . - . Name=NC_011744-29848..29874; +NC_011744 split gene 29677 29847 . - . Name=NC_011744-29677..29847; +NC_011744 split utr3 29672 29676 . - . Name=NC_011744-29672..29676; +NC_011744 split utr5 22525 22542 . - . Name=NC_011744-22525..22542; +NC_011744 split gene 22321 22524 . - . Name=NC_011744-22321..22524; +NC_011744 split utr5 21962 22087 . - . Name=NC_011744-21962..22087; +NC_011744 split gene 20840 21961 . - . Name=NC_011744-20840..21961; +NC_011744 split utr3 20746 20839 . - . Name=NC_011744-20746..20839; +NC_011744 split utr5 20683 20714 . - . Name=NC_011744-20683..20714; +NC_011744 split gene 18853 20682 . - . Name=NC_011744-18853..20682; +NC_011744 split gene 17694 18476 . - . Name=NC_011744-17694..18476; +NC_011744 split utr5 16788 16790 . - . Name=NC_011744-16788..16790; +NC_011744 split gene 7180 16787 . - . Name=NC_011744-7180..16787; diff -r 000000000000 -r a53eb951b164 detrprok_scripts/test-data/splitTranscript_TranscriptionUnit.gff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/detrprok_scripts/test-data/splitTranscript_TranscriptionUnit.gff Mon Mar 25 05:39:29 2013 -0400 @@ -0,0 +1,881 @@ +NC_011744 S-MART transcript 364 4831 . + . nbElements=334.000000;overlapsWith=YP_002394608.1--YP_002394607.1--YP_002394606.1;nbOverlaps=3;quality=255;ID=HWUSI-EAS1656_0001:3:89:5014:9610#0/1--HWUSI-EAS1656_0001:3:35:9162:10538#0/1--HWUSI-EAS1656_0001:3:;Name=HWUSI-EAS1656_0001:3:89:5014:9610#0/1--HWUSI-EAS1656_0001:3:35:9162:10538#0/1--HWUSI-EAS1656_0001:3: +NC_011744 S-MART transcript 5319 7032 . + . nbElements=269.000000;overlapsWith=YP_002394609.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:107:12063:21287#0/1--HWUSI-EAS1656_0001:3:83:3280:18655#0/1--HWUSI-EAS1656_0001;Name=HWUSI-EAS1656_0001:3:107:12063:21287#0/1--HWUSI-EAS1656_0001:3:83:3280:18655#0/1--HWUSI-EAS1656_0001 +NC_011744 S-MART transcript 7180 16790 . - . nbElements=716.000000;overlapsWith=YP_002394615.1--YP_002394614.1--YP_002394613.1--YP_002394612.1--YP_002394611.1--YP_002394610.1;nbOverlaps=6;quality=255;ID=HWUSI-EAS1656_0001:3:80:8700:6553#0/1;Name=HWUSI-EAS1656_0001:3:80:8700:6553#0/1--HWUSI-EAS1656_0001:3:17:7827:9031#0/1--HWUSI-EAS1656_0001:3:2 +NC_011744 S-MART transcript 16915 17644 . + . nbElements=67.000000;overlapsWith=YP_002394616.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:72:18710:9619#0/1--HWUSI-EAS1656_0001:3:35:17678:14651#0/1;Name=HWUSI-EAS1656_0001:3:72:18710:9619#0/1--HWUSI-EAS1656_0001:3:35:17678:14651#0/1--HWUSI-EAS1656_0001: +NC_011744 S-MART transcript 17694 18476 . - . nbElements=10.000000;overlapsWith=YP_002394617.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:27:15227:6678#0/1;Name=HWUSI-EAS1656_0001:3:27:15227:6678#0/1--HWUSI-EAS1656_0001:3:81:9376:6532#0/1--HWUSI-EAS1656_0001:3: +NC_011744 S-MART transcript 18853 20714 . - . nbElements=822.000000;overlapsWith=YP_002394618.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:120:10699:20912#0/1--HWUSI-EAS1656_0001:3:98:17053:15919#0/1--HWUSI-EAS1656_000;Name=HWUSI-EAS1656_0001:3:120:10699:20912#0/1--HWUSI-EAS1656_0001:3:98:17053:15919#0/1--HWUSI-EAS1656_000 +NC_011744 S-MART transcript 20746 22087 . - . nbElements=1404.000000;overlapsWith=YP_002394619.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:105:17341:13775#0/1--HWUSI-EAS1656_0001:3:92:5836:8090#0/1--HWUSI-EAS1656_0001:;Name=HWUSI-EAS1656_0001:3:105:17341:13775#0/1--HWUSI-EAS1656_0001:3:92:5836:8090#0/1--HWUSI-EAS1656_0001: +NC_011744 S-MART transcript 22321 22542 . - . nbElements=7.000000;overlapsWith=YP_002394620.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:51:12735:9404#0/1--HWUSI-EAS1656_0001:3:40:1950:13769#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:51:12735:9404#0/1--HWUSI-EAS1656_0001:3:40:1950:13769#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 22423 23272 . + . nbElements=29.000000;overlapsWith=YP_002394621.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:117:18154:8751#0/1--HWUSI-EAS1656_0001:3:79:2790:12435#0/1--HWUSI-EAS1656_0001:;Name=HWUSI-EAS1656_0001:3:117:18154:8751#0/1--HWUSI-EAS1656_0001:3:79:2790:12435#0/1--HWUSI-EAS1656_0001: +NC_011744 S-MART transcript 23395 29212 . + . nbElements=4357.000000;overlapsWith=YP_002394624.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:7:4762:13462#0/1--HWUSI-EAS1656_0001:3:75:10747:17479#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:7:4762:13462#0/1--HWUSI-EAS1656_0001:3:75:10747:17479#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 29339 29644 . + . nbElements=32.000000;overlapsWith=YP_002394625.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:93:17472:16781#0/1--HWUSI-EAS1656_0001:3:85:8946:6720#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:93:17472:16781#0/1--HWUSI-EAS1656_0001:3:85:8946:6720#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 29672 29874 . - . nbElements=167.000000;overlapsWith=YP_002394626.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:95:2533:10057#0/1--HWUSI-EAS1656_0001:3:72:1679:20601#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:95:2533:10057#0/1--HWUSI-EAS1656_0001:3:72:1679:20601#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 30066 30622 . + . nbElements=55.000000;overlapsWith=YP_002394627.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:69:7633:5227#0/1--HWUSI-EAS1656_0001:3:56:7437:3718#0/1--HWUSI-EAS1656_0001:3:1;Name=HWUSI-EAS1656_0001:3:69:7633:5227#0/1--HWUSI-EAS1656_0001:3:56:7437:3718#0/1--HWUSI-EAS1656_0001:3:1 +NC_011744 S-MART transcript 30726 31430 . - . nbElements=4.000000;overlapsWith=YP_002394628.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:39:5738:20032#0/1;Name=HWUSI-EAS1656_0001:3:39:5738:20032#0/1--HWUSI-EAS1656_0001:3:67:17606:19379#0/1--HWUSI-EAS1656_0001: +NC_011744 S-MART transcript 31715 33638 . - . nbElements=520.000000;overlapsWith=YP_002394629.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:41:18354:13648#0/1--HWUSI-EAS1656_0001:3:3:5550:11393#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:41:18354:13648#0/1--HWUSI-EAS1656_0001:3:3:5550:11393#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 34131 35153 . + . nbElements=776.000000;overlapsWith=YP_002394630.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:91:19399:15968#0/1--HWUSI-EAS1656_0001:3:116:16099:18179#0/1--HWUSI-EAS1656_000;Name=HWUSI-EAS1656_0001:3:91:19399:15968#0/1--HWUSI-EAS1656_0001:3:116:16099:18179#0/1--HWUSI-EAS1656_000 +NC_011744 S-MART transcript 35271 36858 . - . nbElements=15.000000;overlapsWith=YP_002394632.1--YP_002394631.1;nbOverlaps=2;quality=255;ID=HWUSI-EAS1656_0001:3:105:11813:6913#0/1--HWUSI-EAS1656_0001:3:60:7425:1809#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:105:11813:6913#0/1--HWUSI-EAS1656_0001:3:60:7425:1809#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 37057 37881 . - . nbElements=17.000000;overlapsWith=YP_002394633.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:107:8061:6586#0/1;Name=HWUSI-EAS1656_0001:3:107:8061:6586#0/1--HWUSI-EAS1656_0001:3:117:11469:19385#0/1--HWUSI-EAS1656_0001 +NC_011744 S-MART transcript 38102 39724 . - . nbElements=11.000000;overlapsWith=YP_002394634.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:86:14605:6684#0/1--HWUSI-EAS1656_0001:3:35:16147:8887#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:86:14605:6684#0/1--HWUSI-EAS1656_0001:3:35:16147:8887#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART CDS 39921 40544 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394635.1;Dbxref=Genbank:YP_002394635.1,GeneID:7137345;ID=cds29;Name=YP_002394635.1--HWUSI-EAS1656_0001:3:103:8987:5208#0/1 +NC_011744 S-MART transcript 40845 41426 . + . nbElements=150.000000;overlapsWith=YP_002394636.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:115:12477:7652#0/1--HWUSI-EAS1656_0001:3:45:8143:8135#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:115:12477:7652#0/1--HWUSI-EAS1656_0001:3:45:8143:8135#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 41380 43678 . - . nbElements=146.000000;overlapsWith=YP_002394638.1--YP_002394637.1;nbOverlaps=2;quality=255;ID=HWUSI-EAS1656_0001:3:105:8044:10565#0/1--HWUSI-EAS1656_0001:3:51:15238:16802#0/1--HWUSI-EAS1656_0001;Name=HWUSI-EAS1656_0001:3:105:8044:10565#0/1--HWUSI-EAS1656_0001:3:51:15238:16802#0/1--HWUSI-EAS1656_0001 +NC_011744 S-MART CDS 43855 45801 . + . product=translation initiationinhibitor%2C yjgF family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394640.1;Dbxref=Genbank:YP_002394640.1,GeneID:7137350;ID=cds34;Name=YP_002394640.1--YP_002394639.1 +NC_011744 S-MART transcript 45972 49254 . + . nbElements=15.000000;overlapsWith=YP_002394643.1--YP_002394642.1--YP_002394641.1;nbOverlaps=3;quality=255;ID=HWUSI-EAS1656_0001:3:10:6762:7149#0/1;Name=HWUSI-EAS1656_0001:3:10:6762:7149#0/1--HWUSI-EAS1656_0001:3:21:18135:14561#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 49412 51862 . + . nbElements=66.000000;overlapsWith=YP_002394644.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:100:7097:14439#0/1;Name=HWUSI-EAS1656_0001:3:100:7097:14439#0/1--HWUSI-EAS1656_0001:3:25:12777:6978#0/1--HWUSI-EAS1656_0001: +NC_011744 S-MART transcript 52087 54590 . - . nbElements=125.000000;overlapsWith=YP_002394647.1--YP_002394646.1--YP_002394645.1;nbOverlaps=3;quality=255;ID=HWUSI-EAS1656_0001:3:88:4569:14961#0/1--HWUSI-EAS1656_0001:3:88:3044:10224#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:88:4569:14961#0/1--HWUSI-EAS1656_0001:3:88:3044:10224#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 54927 57177 . - . nbElements=89.000000;overlapsWith=YP_002394649.1--YP_002394648.1;nbOverlaps=2;quality=255;ID=HWUSI-EAS1656_0001:3:116:17086:15676#0/1--HWUSI-EAS1656_0001:3:104:15027:3498#0/1--HWUSI-EAS1656_000;Name=HWUSI-EAS1656_0001:3:116:17086:15676#0/1--HWUSI-EAS1656_0001:3:104:15027:3498#0/1--HWUSI-EAS1656_000 +NC_011744 S-MART transcript 57403 58506 . + . nbElements=67.000000;overlapsWith=YP_002394650.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:101:17197:7637#0/1--HWUSI-EAS1656_0001:3:4:18420:7746#0/1--HWUSI-EAS1656_0001:3;Name=HWUSI-EAS1656_0001:3:101:17197:7637#0/1--HWUSI-EAS1656_0001:3:4:18420:7746#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART transcript 58837 60065 . + . nbElements=31.000000;overlapsWith=YP_002394651.1;nbOverlaps=1;quality=255;ID=HWUSI-EAS1656_0001:3:71:12482:5298#0/1--HWUSI-EAS1656_0001:3:35:10844:9637#0/1;Name=HWUSI-EAS1656_0001:3:71:12482:5298#0/1--HWUSI-EAS1656_0001:3:35:10844:9637#0/1--HWUSI-EAS1656_0001:3 +NC_011744 S-MART CDS 60250 60756 . - . product=Hypothetical transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394652.1;Dbxref=Genbank:YP_002394652.1,GeneID:7137362;ID=cds46;Name=YP_002394652.1 +NC_011744 S-MART CDS 61052 63159 . + . product=amidohydrolase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394654.1;Dbxref=Genbank:YP_002394654.1,GeneID:7137364;ID=cds48;Name=YP_002394654.1--YP_002394653.1 +NC_011744 S-MART CDS 63377 67642 . + . product=Metallopeptidase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394658.1;Dbxref=Genbank:YP_002394658.1,GeneID:7137368;ID=cds52;Name=YP_002394658.1--YP_002394657.1--YP_002394656.1--YP_002394655.1 +NC_011744 S-MART CDS 68078 75324 . + . product=ABC transporter ATP-binding protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394664.1;Dbxref=Genbank:YP_002394664.1,GeneID:7137374;ID=cds58;Name=YP_002394664.1--YP_002394663.1--YP_002394662.1--YP_002394661.1--YP_002394660.1--YP_002394659.1 +NC_011744 S-MART CDS 75688 76170 . + . product=MarR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394665.1;Dbxref=Genbank:YP_002394665.1,GeneID:7137375;ID=cds59;Name=YP_002394665.1 +NC_011744 S-MART CDS 76628 77284 . + . product=quinolone resistance determinant;transl_table=11;gbkey=CDS;protein_id=YP_002394666.1;Dbxref=Genbank:YP_002394666.1,GeneID:7137376;ID=cds60;Name=YP_002394666.1 +NC_011744 S-MART CDS 77461 77685 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394667.1;Dbxref=Genbank:YP_002394667.1,GeneID:7137377;ID=cds61;Name=YP_002394667.1 +NC_011744 S-MART CDS 78060 78320 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394668.1;Dbxref=Genbank:YP_002394668.1,GeneID:7137378;ID=cds62;Name=YP_002394668.1 +NC_011744 S-MART CDS 78790 82528 . + . product=aspartate kinase;nbElements=4.000000;transl_table=11;Note=catalyzes the formation of 4-phospho-L-aspartate from L-aspartate and ATP;gbkey=CDS;protein_id=YP_002394672.1;Dbxref=Genbank:YP_002394672.1,GeneID:7137382;ID=cds66;Name=YP_002394672.1--YP_002394671.1--YP_002394670.1--YP_002394669.1 +NC_011744 S-MART CDS 82754 84273 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394674.1;Dbxref=Genbank:YP_002394674.1,GeneID:7137384;ID=cds68;Name=YP_002394674.1--YP_002394673.1 +NC_011744 S-MART CDS 84373 84948 . - . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394675.1;Dbxref=Genbank:YP_002394675.1,GeneID:7137385;ID=cds69;Name=YP_002394675.1 +NC_011744 S-MART CDS 85279 86277 . - . product=adenosine deaminase;transl_table=11;Note=catalyzes the formation of inosine from adenosine;gbkey=CDS;protein_id=YP_002394676.1;Dbxref=Genbank:YP_002394676.1,GeneID:7137386;ID=cds70;Name=YP_002394676.1 +NC_011744 S-MART CDS 86398 88921 . + . product=Glutathione synthetase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394678.1;Dbxref=Genbank:YP_002394678.1,GeneID:7137388;ID=cds72;Name=YP_002394678.1--YP_002394677.1 +NC_011744 S-MART CDS 88922 92825 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394682.1;Dbxref=Genbank:YP_002394682.1,GeneID:7137392;ID=cds76;Name=YP_002394682.1--YP_002394681.1--YP_002394680.1--YP_002394679.1 +NC_011744 S-MART CDS 92897 93433 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394683.1;Dbxref=Genbank:YP_002394683.1,GeneID:7137393;ID=cds77;Name=YP_002394683.1 +NC_011744 S-MART CDS 93618 93836 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394684.1;Dbxref=Genbank:YP_002394684.1,GeneID:7137394;ID=cds78;Name=YP_002394684.1 +NC_011744 S-MART CDS 93893 94486 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394685.1;Dbxref=Genbank:YP_002394685.1,GeneID:7137395;ID=cds79;Name=YP_002394685.1 +NC_011744 S-MART CDS 94865 96993 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394687.1;Dbxref=Genbank:YP_002394687.1,GeneID:7137397;ID=cds81;Name=YP_002394687.1--YP_002394686.1 +NC_011744 S-MART CDS 97330 98777 . + . product=lipoate-protein ligase A;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394690.1;Dbxref=Genbank:YP_002394690.1,GeneID:7137400;ID=cds84;Name=YP_002394690.1--YP_002394689.1--YP_002394688.1 +NC_011744 S-MART CDS 98945 99784 . - . product=oxidoreductase;transl_table=11;gbkey=CDS;protein_id=YP_002394691.1;Dbxref=Genbank:YP_002394691.1,GeneID:7137401;ID=cds85;Name=YP_002394691.1 +NC_011744 S-MART CDS 99962 103402 . - . product=hydrolase%2C metallo-beta-lactamase superfamily;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394694.1;Dbxref=Genbank:YP_002394694.1,GeneID:7137404;ID=cds88;Name=YP_002394694.1--YP_002394693.1--YP_002394692.1 +NC_011744 S-MART CDS 103591 104505 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394695.1;Dbxref=Genbank:YP_002394695.1,GeneID:7137405;ID=cds89;Name=YP_002394695.1 +NC_011744 S-MART CDS 104593 105597 . - . product=Transporter%2C drug%2Fmetabolite exporter family;transl_table=11;gbkey=CDS;protein_id=YP_002394696.1;Dbxref=Genbank:YP_002394696.1,GeneID:7137406;ID=cds90;Name=YP_002394696.1 +NC_011744 S-MART CDS 105690 106655 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394698.1;Dbxref=Genbank:YP_002394698.1,GeneID:7137408;ID=cds92;Name=YP_002394698.1--YP_002394697.1 +NC_011744 S-MART CDS 106826 109364 . + . product=LacI-family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394700.1;Dbxref=Genbank:YP_002394700.1,GeneID:7137410;ID=cds94;Name=YP_002394700.1--YP_002394699.1 +NC_011744 S-MART CDS 109568 110131 . + . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394701.1;Dbxref=Genbank:YP_002394701.1,GeneID:7137411;ID=cds95;Name=YP_002394701.1 +NC_011744 S-MART CDS 110231 111424 . - . product=transmembrane efflux transmembrane protein;transl_table=11;gbkey=CDS;protein_id=YP_002394702.1;Dbxref=Genbank:YP_002394702.1,GeneID:7137412;ID=cds96;Name=YP_002394702.1 +NC_011744 S-MART CDS 111700 112581 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394703.1;Dbxref=Genbank:YP_002394703.1,GeneID:7137413;ID=cds97;Name=YP_002394703.1 +NC_011744 S-MART CDS 112703 113697 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394705.1;Dbxref=Genbank:YP_002394705.1,GeneID:7137415;ID=cds99;Name=YP_002394705.1--YP_002394704.1 +NC_011744 S-MART CDS 113921 114712 . - . product=plasmid-related protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type h : extrachromosomal origin;gbkey=CDS;protein_id=YP_002394706.1;Dbxref=Genbank:YP_002394706.1,GeneID:7137416;ID=cds100;Name=YP_002394706.1 +NC_011744 S-MART CDS 114873 115439 . - . product=dihydrofolate reductase;transl_table=11;gbkey=CDS;protein_id=YP_002394707.1;Dbxref=Genbank:YP_002394707.1,GeneID:7137417;ID=cds101;Name=YP_002394707.1 +NC_011744 S-MART CDS 115500 116063 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394708.1;Dbxref=Genbank:YP_002394708.1,GeneID:7137418;ID=cds102;Name=YP_002394708.1 +NC_011744 S-MART CDS 116223 117755 . + . product=phospholipase D;transl_table=11;gbkey=CDS;protein_id=YP_002394709.1;Dbxref=Genbank:YP_002394709.1,GeneID:7137419;ID=cds103;Name=YP_002394709.1 +NC_011744 S-MART CDS 117879 118601 . - . product=nitroreductase A;transl_table=11;Note=NADPH-dependent%3B oxygen-insensitive%3B catalyzes the reduction of nitroaromatic compounds;gbkey=CDS;protein_id=YP_002394710.1;Dbxref=Genbank:YP_002394710.1,GeneID:7137420;ID=cds104;Name=YP_002394710.1 +NC_011744 S-MART CDS 118880 120124 . + . product=NADH oxidase;transl_table=11;gbkey=CDS;protein_id=YP_002394711.1;Dbxref=Genbank:YP_002394711.1,GeneID:7137421;ID=cds105;Name=YP_002394711.1 +NC_011744 S-MART CDS 120342 121256 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394712.1;Dbxref=Genbank:YP_002394712.1,GeneID:7137422;ID=cds106;Name=YP_002394712.1 +NC_011744 S-MART CDS 121363 122403 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394713.1;Dbxref=Genbank:YP_002394713.1,GeneID:7137423;ID=cds107;Name=YP_002394713.1 +NC_011744 S-MART CDS 123070 123306 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394714.1;Dbxref=Genbank:YP_002394714.1,GeneID:7137424;ID=cds108;Name=YP_002394714.1 +NC_011744 S-MART CDS 123588 125222 . - . product=glycerol-3-phosphate dehydrogenase;transl_table=11;Note=in Escherichia coli this homodimeric enzyme is expressed under aerobic conditions%3B anaerobic expression is repressed by the arcAB system%3B converts sn-glycerol-3-phosphate and ubiquinone-8 to dihydroxy acetone phosphate and ubiquinol-8%3B associates with the cytoplasmic membrane;gbkey=CDS;protein_id=YP_002394715.1;Dbxref=Genbank:YP_002394715.1,GeneID:7137425;ID=cds109;Name=YP_002394715.1 +NC_011744 S-MART CDS 125434 126219 . - . product=Transcriptional regulator%2C DeoR family;transl_table=11;gbkey=CDS;protein_id=YP_002394716.1;Dbxref=Genbank:YP_002394716.1,GeneID:7137426;ID=cds110;Name=YP_002394716.1 +NC_011744 S-MART CDS 126512 128949 . - . product=Glycerol uptake facilitator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394718.1;Dbxref=Genbank:YP_002394718.1,GeneID:7137428;ID=cds112;Name=YP_002394718.1--YP_002394717.1 +NC_011744 S-MART CDS 129398 129829 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394719.1;Dbxref=Genbank:YP_002394719.1,GeneID:7137429;ID=cds113;Name=YP_002394719.1 +NC_011744 S-MART CDS 129984 130850 . + . product=Hypothetical transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394720.1;Dbxref=Genbank:YP_002394720.1,GeneID:7137430;ID=cds114;Name=YP_002394720.1 +NC_011744 S-MART CDS 130935 132437 . - . product=regulatory protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394722.1;Dbxref=Genbank:YP_002394722.1,GeneID:7137432;ID=cds116;Name=YP_002394722.1--YP_002394721.1 +NC_011744 S-MART CDS 132757 133554 . + . product=hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394723.1;Dbxref=Genbank:YP_002394723.1,GeneID:7137433;ID=cds117;Name=YP_002394723.1 +NC_011744 S-MART CDS 133736 135626 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394725.1;Dbxref=Genbank:YP_002394725.1,GeneID:7137435;ID=cds119;Name=YP_002394725.1--YP_002394724.1 +NC_011744 S-MART CDS 135655 136593 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394726.1;Dbxref=Genbank:YP_002394726.1,GeneID:7137436;ID=cds120;Name=YP_002394726.1 +NC_011744 S-MART CDS 136700 138001 . + . product=oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394728.1;Dbxref=Genbank:YP_002394728.1,GeneID:7137438;ID=cds122;Name=YP_002394728.1--YP_002394727.1 +NC_011744 S-MART CDS 138201 138539 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394729.1;Dbxref=Genbank:YP_002394729.1,GeneID:7137439;ID=cds123;Name=YP_002394729.1 +NC_011744 S-MART CDS 138848 140416 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394730.1;Dbxref=Genbank:YP_002394730.1,GeneID:7137440;ID=cds124;Name=YP_002394730.1 +NC_011744 S-MART CDS 140862 143009 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394731.1;Dbxref=Genbank:YP_002394731.1,GeneID:7137441;ID=cds125;Name=YP_002394731.1 +NC_011744 S-MART CDS 143382 144595 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394735.1;Dbxref=Genbank:YP_002394735.1,GeneID:7137445;ID=cds129;Name=YP_002394735.1--YP_002394734.1--YP_002394733.1--YP_002394732.1 +NC_011744 S-MART CDS 144807 156233 . - . product=2%2C3-diketo-L-gulonate reductase;nbElements=13.000000;transl_table=11;Note=NAD%28P%29H-dependent%3B catalyzes the reduction of 2%2C3-diketo-L-gulonate to 3-keto-L-gulonate;gbkey=CDS;protein_id=YP_002394748.1;Dbxref=Genbank:YP_002394748.1,GeneID:7137458;ID=cds142;Name=YP_002394748.1--YP_002394747.1--YP_002394746.1--YP_002394745.1--YP_002394744.1--YP_002394743.1--YP_0 +NC_011744 S-MART CDS 156656 157825 . + . product=glycerate kinase;transl_table=11;gbkey=CDS;protein_id=YP_002394749.1;Dbxref=Genbank:YP_002394749.1,GeneID:7137459;ID=cds143;Name=YP_002394749.1 +NC_011744 S-MART CDS 158027 159478 . + . product=catalase;transl_table=11;gbkey=CDS;protein_id=YP_002394750.1;Dbxref=Genbank:YP_002394750.1,GeneID:7137460;ID=cds144;Name=YP_002394750.1 +NC_011744 S-MART CDS 159709 160581 . + . product=Phospholipase;transl_table=11;gbkey=CDS;protein_id=YP_002394751.1;Dbxref=Genbank:YP_002394751.1,GeneID:7137461;ID=cds145;Name=YP_002394751.1 +NC_011744 S-MART CDS 160700 161692 . - . product=D-lactate dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002394752.1;Dbxref=Genbank:YP_002394752.1,GeneID:7137462;ID=cds146;Name=YP_002394752.1 +NC_011744 S-MART CDS 162181 163424 . - . product=ferredoxin-NADP reductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394754.1;Dbxref=Genbank:YP_002394754.1,GeneID:7137464;ID=cds148;Name=YP_002394754.1--YP_002394753.1 +NC_011744 S-MART CDS 163720 164664 . + . product=acyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394755.1;Dbxref=Genbank:YP_002394755.1,GeneID:7137465;ID=cds149;Name=YP_002394755.1 +NC_011744 S-MART CDS 163858 164139 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394756.1;Dbxref=Genbank:YP_002394756.1,GeneID:7137466;ID=cds150;Name=YP_002394756.1 +NC_011744 S-MART CDS 164814 165557 . - . product=SAM-dependent methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002394757.1;Dbxref=Genbank:YP_002394757.1,GeneID:7137467;ID=cds151;Name=YP_002394757.1 +NC_011744 S-MART CDS 165711 167525 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394758.1;Dbxref=Genbank:YP_002394758.1,GeneID:7137468;ID=cds152;Name=YP_002394758.1 +NC_011744 S-MART CDS 167706 169679 . - . product=Type II secretory pathway%2C pullulanase PulA and related glycosidases;transl_table=11;gbkey=CDS;protein_id=YP_002394759.1;Dbxref=Genbank:YP_002394759.1,GeneID:7137469;ID=cds153;Name=YP_002394759.1 +NC_011744 S-MART CDS 170112 172475 . + . product=Maltose operon periplasmic protein precursor;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394761.1;Dbxref=Genbank:YP_002394761.1,GeneID:7137471;ID=cds155;Name=YP_002394761.1--YP_002394760.1 +NC_011744 S-MART CDS 172685 173512 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394762.1;Dbxref=Genbank:YP_002394762.1,GeneID:7137472;ID=cds156;Name=YP_002394762.1 +NC_011744 S-MART CDS 173629 177705 . - . product=maltose ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;Note=functions in the MalKFGE ABC transporter complex to transport maltose into the cell by using ATP hydrolysis;gbkey=CDS;protein_id=YP_002394764.1;Dbxref=Genbank:YP_002394764.1,GeneID:7137474;ID=cds158;Name=YP_002394764.1--YP_002394763.1 +NC_011744 S-MART CDS 178073 179716 . - . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002394765.1;Dbxref=Genbank:YP_002394765.1,GeneID:7137475;ID=cds159;Name=YP_002394765.1 +NC_011744 S-MART CDS 179899 180816 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394766.1;Dbxref=Genbank:YP_002394766.1,GeneID:7137476;ID=cds160;Name=YP_002394766.1 +NC_011744 S-MART CDS 180946 181239 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394767.1;Dbxref=Genbank:YP_002394767.1,GeneID:7137477;ID=cds161;Name=YP_002394767.1 +NC_011744 S-MART CDS 181650 186638 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394768.1;Dbxref=Genbank:YP_002394768.1,GeneID:7137478;ID=cds162;Name=YP_002394768.1 +NC_011744 S-MART CDS 187101 188867 . - . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002394769.1;Dbxref=Genbank:YP_002394769.1,GeneID:7137479;ID=cds163;Name=YP_002394769.1 +NC_011744 S-MART CDS 189145 192858 . - . product=pullulanase;transl_table=11;gbkey=CDS;protein_id=YP_002394770.1;Dbxref=Genbank:YP_002394770.1,GeneID:7137480;ID=cds164;Name=YP_002394770.1 +NC_011744 S-MART CDS 193236 193625 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394771.1;Dbxref=Genbank:YP_002394771.1,GeneID:7137481;ID=cds165;Name=YP_002394771.1 +NC_011744 S-MART CDS 193680 194318 . - . product=threonine efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002394772.1;Dbxref=Genbank:YP_002394772.1,GeneID:7137482;ID=cds166;Name=YP_002394772.1 +NC_011744 S-MART CDS 194406 195846 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394775.1;Dbxref=Genbank:YP_002394775.1,GeneID:7137485;ID=cds169;Name=YP_002394775.1--YP_002394774.1--YP_002394773.1 +NC_011744 S-MART CDS 196083 197327 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394776.1;Dbxref=Genbank:YP_002394776.1,GeneID:7137486;ID=cds170;Name=YP_002394776.1 +NC_011744 S-MART CDS 197624 198841 . - . product=serine%2Fthreonine transporter SstT;transl_table=11;Note=involved in the import of serine and threonine coupled with the import of sodium;gbkey=CDS;protein_id=YP_002394777.1;Dbxref=Genbank:YP_002394777.1,GeneID:7137487;ID=cds171;Name=YP_002394777.1 +NC_011744 S-MART CDS 199011 200347 . - . product=ribosome-associated GTPase;nbElements=2.000000;transl_table=11;Note=EngC%3B RsgA%3B CpgA%3B circularly permuted GTPase%3B ribosome small subunit-dependent GTPase A%3B has the pattern G4-G1-G3 as opposed to other GTPases%3B interacts strongly with 30S ribosome which stimulates GTPase activity;gbkey=CDS;protein_id=YP_002394779.1;Dbxref=Genbank:YP_002394779.1,GeneID:7137489;ID=cds173;Name=YP_002394779.1--YP_002394778.1 +NC_011744 S-MART CDS 200868 202474 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394782.1;Dbxref=Genbank:YP_002394782.1,GeneID:7137492;ID=cds176;Name=YP_002394782.1--YP_002394781.1--YP_002394780.1 +NC_011744 S-MART CDS 202677 203636 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394783.1;Dbxref=Genbank:YP_002394783.1,GeneID:7137493;ID=cds177;Name=YP_002394783.1 +NC_011744 S-MART ncRNA 203925 204035 . + . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137494;ID=rna0;Name=rna0 +NC_011744 S-MART CDS 204183 206906 . - . product=transcriptional regulator MalT;transl_table=11;Note=Positively regulates the transcription of the maltose regulon whose gene products are responsible for uptake and catabolism of malto-oligosaccharides;gbkey=CDS;protein_id=YP_002394784.1;Dbxref=Genbank:YP_002394784.1,GeneID:7138798;ID=cds178;Name=YP_002394784.1 +NC_011744 S-MART CDS 207458 209911 . + . product=maltodextrin phosphorylase;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394785.1;Dbxref=Genbank:YP_002394785.1,GeneID:7137495;ID=cds179;Name=YP_002394785.1 +NC_011744 S-MART CDS 210088 212268 . + . product=4-alpha-glucanotransferase;transl_table=11;Note=amylomaltase%3B acts to release glucose from maltodextrins;gbkey=CDS;protein_id=YP_002394786.1;Dbxref=Genbank:YP_002394786.1,GeneID:7137496;ID=cds180;Name=YP_002394786.1 +NC_011744 S-MART CDS 212444 214624 . + . product=glycogen branching protein;transl_table=11;Note=catalyzes the transfer of a segment of a 1%2C4-alpha-D-glucan chain to a primary hydroxy group in a similar glucan chain;gbkey=CDS;protein_id=YP_002394787.1;Dbxref=Genbank:YP_002394787.1,GeneID:7137497;ID=cds181;Name=YP_002394787.1 +NC_011744 S-MART CDS 214777 217985 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394790.1;Dbxref=Genbank:YP_002394790.1,GeneID:7137500;ID=cds184;Name=YP_002394790.1--YP_002394789.1--YP_002394788.1 +NC_011744 S-MART CDS 218171 219696 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394792.1;Dbxref=Genbank:YP_002394792.1,GeneID:7137502;ID=cds186;Name=YP_002394792.1--YP_002394791.1 +NC_011744 S-MART CDS 219953 220867 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394793.1;Dbxref=Genbank:YP_002394793.1,GeneID:7137503;ID=cds187;Name=YP_002394793.1 +NC_011744 S-MART CDS 220939 226435 . - . product=purine nucleoside phosphorylase;nbElements=5.000000;transl_table=11;Note=catalyzes the reversible phosphorolysis of ribonucleosides and 2%27- deoxyribonucleosides to the free base and %282%27-deoxy%29ribose-1- phosphate;gbkey=CDS;protein_id=YP_002394798.1;Dbxref=Genbank:YP_002394798.1,GeneID:7137508;ID=cds192;Name=YP_002394798.1--YP_002394797.1--YP_002394796.1--YP_002394795.1--YP_002394794.1 +NC_011744 S-MART CDS 226854 227756 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394799.1;Dbxref=Genbank:YP_002394799.1,GeneID:7137509;ID=cds193;Name=YP_002394799.1 +NC_011744 S-MART CDS 227951 228283 . - . product=outer membrane lipoprotein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pm : membrane component;gbkey=CDS;protein_id=YP_002394800.1;Dbxref=Genbank:YP_002394800.1,GeneID:7137510;ID=cds194;Name=YP_002394800.1 +NC_011744 S-MART CDS 228566 229909 . + . product=ATP-dependent RNA helicase%2C DEAD box family;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 2461520%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394801.1;Dbxref=Genbank:YP_002394801.1,GeneID:7137511;ID=cds195;Name=YP_002394801.1 +NC_011744 S-MART CDS 230062 231345 . - . product=Thermolabile hemolysin %28TL%29-%28Lecithin-dependent hemolysin%29 %28LDH%29;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 1791426%2C 3508495%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002394802.1;Dbxref=Genbank:YP_002394802.1,GeneID:7137512;ID=cds196;Name=YP_002394802.1 +NC_011744 S-MART CDS 231825 233699 . + . product=lipase chaperone;nbElements=2.000000;transl_table=11;Note=acts as a molecular chaperone to fold and export lipase A;gbkey=CDS;protein_id=YP_002394804.1;Dbxref=Genbank:YP_002394804.1,GeneID:7137514;ID=cds198;Name=YP_002394804.1--YP_002394803.1 +NC_011744 S-MART CDS 233889 235571 . - . product=methyl-accepting chemotaxis protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pf : factor;gbkey=CDS;protein_id=YP_002394805.1;Dbxref=Genbank:YP_002394805.1,GeneID:7137515;ID=cds199;Name=YP_002394805.1 +NC_011744 S-MART CDS 235997 239625 . + . product=phosphate ABC transporter ATP-binding protein;nbElements=4.000000;transl_table=11;Note=ATP-binding protein%3B PstABCS is an ATP dependent phosphate uptake system which is responsible for inorganic phosphate uptake during phosphate starvation;gbkey=CDS;protein_id=YP_002394809.1;Dbxref=Genbank:YP_002394809.1,GeneID:7137519;ID=cds203;Name=YP_002394809.1--YP_002394808.1--YP_002394807.1--YP_002394806.1 +NC_011744 S-MART CDS 239945 242089 . + . product=GGDEF family protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type f : factor;gbkey=CDS;protein_id=YP_002394810.1;Dbxref=Genbank:YP_002394810.1,GeneID:7137520;ID=cds204;Name=YP_002394810.1 +NC_011744 S-MART CDS 242225 249098 . - . product=MoxR-ATPase;nbElements=6.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 165787%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394816.1;Dbxref=Genbank:YP_002394816.1,GeneID:7137526;ID=cds210;Name=YP_002394816.1--YP_002394815.1--YP_002394814.1--YP_002394813.1--YP_002394812.1--YP_002394811.1 +NC_011744 S-MART CDS 249562 251478 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B PubMedId : 8188684%3B Product type f : factor;gbkey=CDS;protein_id=YP_002394817.1;Dbxref=Genbank:YP_002394817.1,GeneID:7137527;ID=cds211;Name=YP_002394817.1 +NC_011744 S-MART CDS 251798 252053 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394819.1;Dbxref=Genbank:YP_002394819.1,GeneID:7137529;ID=cds213;Name=YP_002394819.1--YP_002394818.1 +NC_011744 S-MART CDS 252277 253389 . - . product=maltose ABC transporter ATP-binding protein;transl_table=11;Note=with malEFG is involved in import of maltose%2Fmaltodextrin;gbkey=CDS;protein_id=YP_002394820.1;Dbxref=Genbank:YP_002394820.1,GeneID:7137530;ID=cds214;Name=YP_002394820.1 +NC_011744 S-MART CDS 254055 257791 . + . product=maltose ABC transporter permease;nbElements=3.000000;transl_table=11;Note=with MalKFE is involved in the transport of maltose into the cell;gbkey=CDS;protein_id=YP_002394823.1;Dbxref=Genbank:YP_002394823.1,GeneID:7137533;ID=cds217;Name=YP_002394823.1--YP_002394822.1--YP_002394821.1 +NC_011744 S-MART CDS 258382 258654 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394824.1;Dbxref=Genbank:YP_002394824.1,GeneID:7137534;ID=cds218;Name=YP_002394824.1 +NC_011744 S-MART CDS 258885 259388 . - . product=hydrolase;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 9139899%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002394825.1;Dbxref=Genbank:YP_002394825.1,GeneID:7137535;ID=cds219;Name=YP_002394825.1 +NC_011744 S-MART CDS 260282 261175 . - . product=transport protein;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pt : transporter;gbkey=CDS;protein_id=YP_002394826.1;Dbxref=Genbank:YP_002394826.1,GeneID:7137536;ID=cds220;Name=YP_002394826.1 +NC_011744 S-MART CDS 261274 262062 . + . product=HTH-type transcriptional regulator;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002394827.1;Dbxref=Genbank:YP_002394827.1,GeneID:7137537;ID=cds221;Name=YP_002394827.1 +NC_011744 S-MART CDS 262176 262564 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394829.1;Dbxref=Genbank:YP_002394829.1,GeneID:7137539;ID=cds223;Name=YP_002394829.1--YP_002394828.1 +NC_011744 S-MART CDS 262770 264620 . - . product=Alkyl sulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002394830.1;Dbxref=Genbank:YP_002394830.1,GeneID:7137540;ID=cds224;Name=YP_002394830.1 +NC_011744 S-MART CDS 265017 266057 . + . product=esterase;transl_table=11;gbkey=CDS;protein_id=YP_002394831.1;Dbxref=Genbank:YP_002394831.1,GeneID:7137541;ID=cds225;Name=YP_002394831.1 +NC_011744 S-MART CDS 266265 268079 . + . product=mechanosensitive ion channel;transl_table=11;gbkey=CDS;protein_id=YP_002394832.1;Dbxref=Genbank:YP_002394832.1,GeneID:7137542;ID=cds226;Name=YP_002394832.1 +NC_011744 S-MART CDS 268214 269146 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394833.1;Dbxref=Genbank:YP_002394833.1,GeneID:7137543;ID=cds227;Name=YP_002394833.1 +NC_011744 S-MART CDS 269443 270897 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394835.1;Dbxref=Genbank:YP_002394835.1,GeneID:7137545;ID=cds229;Name=YP_002394835.1--YP_002394834.1 +NC_011744 S-MART CDS 271085 275014 . - . product=Calcium%2Fproton antiporter;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394840.1;Dbxref=Genbank:YP_002394840.1,GeneID:7137550;ID=cds234;Name=YP_002394840.1--YP_002394839.1--YP_002394838.1--YP_002394837.1--YP_002394836.1 +NC_011744 S-MART CDS 275309 277998 . - . product=protein-export membrane protein SecD;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394842.1;Dbxref=Genbank:YP_002394842.1,GeneID:7137552;ID=cds236;Name=YP_002394842.1--YP_002394841.1 +NC_011744 S-MART CDS 278312 278647 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394843.1;Dbxref=Genbank:YP_002394843.1,GeneID:7137553;ID=cds237;Name=YP_002394843.1 +NC_011744 S-MART CDS 278912 279706 . + . product=ribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002394844.1;Dbxref=Genbank:YP_002394844.1,GeneID:7137554;ID=cds238;Name=YP_002394844.1 +NC_011744 S-MART CDS 279767 284156 . - . product=ABC transporter-ATP binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394847.1;Dbxref=Genbank:YP_002394847.1,GeneID:7137557;ID=cds241;Name=YP_002394847.1--YP_002394846.1--YP_002394845.1 +NC_011744 S-MART CDS 284606 287767 . + . product=diguanylate cyclase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394849.1;Dbxref=Genbank:YP_002394849.1,GeneID:7137559;ID=cds243;Name=YP_002394849.1--YP_002394848.1 +NC_011744 S-MART CDS 287851 288837 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394850.1;Dbxref=Genbank:YP_002394850.1,GeneID:7137560;ID=cds244;Name=YP_002394850.1 +NC_011744 S-MART CDS 289034 290551 . + . product=radical SAM protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394852.1;Dbxref=Genbank:YP_002394852.1,GeneID:7137562;ID=cds246;Name=YP_002394852.1--YP_002394851.1 +NC_011744 S-MART CDS 290698 291947 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394854.1;Dbxref=Genbank:YP_002394854.1,GeneID:7137564;ID=cds248;Name=YP_002394854.1--YP_002394853.1 +NC_011744 S-MART CDS 292132 294467 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394856.1;Dbxref=Genbank:YP_002394856.1,GeneID:7137566;ID=cds250;Name=YP_002394856.1--YP_002394855.1 +NC_011744 S-MART CDS 294685 297090 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394858.1;Dbxref=Genbank:YP_002394858.1,GeneID:7137568;ID=cds252;Name=YP_002394858.1--YP_002394857.1 +NC_011744 S-MART CDS 297221 298147 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394859.1;Dbxref=Genbank:YP_002394859.1,GeneID:7137569;ID=cds253;Name=YP_002394859.1 +NC_011744 S-MART CDS 298191 302041 . - . product=LuxM protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394861.1;Dbxref=Genbank:YP_002394861.1,GeneID:7137571;ID=cds255;Name=YP_002394861.1--YP_002394860.1 +NC_011744 S-MART CDS 302458 302850 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394862.1;Dbxref=Genbank:YP_002394862.1,GeneID:7137572;ID=cds256;Name=YP_002394862.1 +NC_011744 S-MART CDS 302973 303563 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394863.1;Dbxref=Genbank:YP_002394863.1,GeneID:7137573;ID=cds257;Name=YP_002394863.1 +NC_011744 S-MART CDS 303764 305362 . - . product=isocitrate lyase;transl_table=11;Note=Catalyzes the first step in the glyoxalate cycle%2C which converts lipids to carbohydrates;gbkey=CDS;protein_id=YP_002394864.1;Dbxref=Genbank:YP_002394864.1,GeneID:7137574;ID=cds258;Name=YP_002394864.1 +NC_011744 S-MART CDS 305504 306457 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394865.1;Dbxref=Genbank:YP_002394865.1,GeneID:7137575;ID=cds259;Name=YP_002394865.1 +NC_011744 S-MART CDS 306613 308796 . + . product=malate synthase G;transl_table=11;Note=catalyzes the formation of malate from glyoxylate and acetyl-CoA;gbkey=CDS;protein_id=YP_002394866.1;Dbxref=Genbank:YP_002394866.1,GeneID:7137576;ID=cds260;Name=YP_002394866.1 +NC_011744 S-MART CDS 309040 310467 . - . product=Succinate-semialdehyde dehydrogenase %5BNADP%2B%5D;transl_table=11;gbkey=CDS;protein_id=YP_002394867.1;Dbxref=Genbank:YP_002394867.1,GeneID:7137577;ID=cds261;Name=YP_002394867.1 +NC_011744 S-MART CDS 310935 311507 . + . product=malate synthase;transl_table=11;Note=Catalyzes the aldol condensation of glyoxylate with acetyl-CoA to form malate as part of the second step of the glyoxylate bypass and an alternative to the tricarboxylic acid cycle;gbkey=CDS;protein_id=YP_002394868.1;Dbxref=Genbank:YP_002394868.1,GeneID:7137578;ID=cds262;Name=YP_002394868.1 +NC_011744 S-MART CDS 312002 313609 . + . product=transporter%2C BCCT family;transl_table=11;gbkey=CDS;protein_id=YP_002394869.1;Dbxref=Genbank:YP_002394869.1,GeneID:7137579;ID=cds263;Name=YP_002394869.1 +NC_011744 S-MART CDS 313812 314738 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394870.1;Dbxref=Genbank:YP_002394870.1,GeneID:7137580;ID=cds264;Name=YP_002394870.1 +NC_011744 S-MART CDS 314963 316180 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394871.1;Dbxref=Genbank:YP_002394871.1,GeneID:7137581;ID=cds265;Name=YP_002394871.1 +NC_011744 S-MART CDS 316352 317380 . - . product=dihydroorotase;transl_table=11;Note=catalyzes the formation of N-carbamoyl-L-aspartate from %28S%29-dihydroorotate in pyrimidine biosynthesis;gbkey=CDS;protein_id=YP_002394872.1;Dbxref=Genbank:YP_002394872.1,GeneID:7137582;ID=cds266;Name=YP_002394872.1 +NC_011744 S-MART CDS 317573 317731 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394873.1;Dbxref=Genbank:YP_002394873.1,GeneID:7137583;ID=cds267;Name=YP_002394873.1 +NC_011744 S-MART CDS 317950 319806 . + . product=Flavodoxin reductase 1 protein;transl_table=11;gbkey=CDS;protein_id=YP_002394874.1;Dbxref=Genbank:YP_002394874.1,GeneID:7137584;ID=cds268;Name=YP_002394874.1 +NC_011744 S-MART CDS 319914 320744 . - . product=NAD synthetase;transl_table=11;Note=catalyzes the formation of nicotinamide adenine dinucleotide %28NAD%29 from nicotinic acid adenine dinucleotide %28NAAD%29 using either ammonia or glutamine as the amide donor and ATP%3B ammonia-utilizing enzymes include the ones from Bacillus and Escherichia coli while glutamine-utilizing enzymes include the Mycobacterial one%3B forms homodimers;gbkey=CDS;protein_id=YP_002394875.1;Dbxref=Genbank:YP_002394875.1,GeneID:7137585;ID=cds269;Name=YP_002394875.1 +NC_011744 S-MART CDS 320854 321889 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394877.1;Dbxref=Genbank:YP_002394877.1,GeneID:7137587;ID=cds271;Name=YP_002394877.1--YP_002394876.1 +NC_011744 S-MART CDS 322012 322638 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394878.1;Dbxref=Genbank:YP_002394878.1,GeneID:7137588;ID=cds272;Name=YP_002394878.1 +NC_011744 S-MART CDS 322802 323920 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394879.1;Dbxref=Genbank:YP_002394879.1,GeneID:7137589;ID=cds273;Name=YP_002394879.1 +NC_011744 S-MART CDS 324050 324649 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394880.1;Dbxref=Genbank:YP_002394880.1,GeneID:7137590;ID=cds274;Name=YP_002394880.1 +NC_011744 S-MART CDS 324751 325053 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394881.1;Dbxref=Genbank:YP_002394881.1,GeneID:7137591;ID=cds275;Name=YP_002394881.1 +NC_011744 S-MART CDS 325090 325431 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394882.1;Dbxref=Genbank:YP_002394882.1,GeneID:7137592;ID=cds276;Name=YP_002394882.1 +NC_011744 S-MART CDS 325919 326380 . + . product=LuxT regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394883.1;Dbxref=Genbank:YP_002394883.1,GeneID:7137593;ID=cds277;Name=YP_002394883.1 +NC_011744 S-MART CDS 326774 329589 . - . product=hemin ABC transporter substrate-binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394886.1;Dbxref=Genbank:YP_002394886.1,GeneID:7137596;ID=cds280;Name=YP_002394886.1--YP_002394885.1--YP_002394884.1 +NC_011744 S-MART CDS 329765 331646 . - . product=TonB-like protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394889.1;Dbxref=Genbank:YP_002394889.1,GeneID:7137599;ID=cds283;Name=YP_002394889.1--YP_002394888.1--YP_002394887.1 +NC_011744 S-MART CDS 331801 334462 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394892.1;Dbxref=Genbank:YP_002394892.1,GeneID:7137602;ID=cds286;Name=YP_002394892.1--YP_002394891.1--YP_002394890.1 +NC_011744 S-MART CDS 334516 335430 . - . product=Chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002394893.1;Dbxref=Genbank:YP_002394893.1,GeneID:7137603;ID=cds287;Name=YP_002394893.1 +NC_011744 S-MART CDS 335714 335992 . + . product=Peptidyl-prolyl cis-trans isomerase C;transl_table=11;gbkey=CDS;protein_id=YP_002394894.1;Dbxref=Genbank:YP_002394894.1,GeneID:7137604;ID=cds288;Name=YP_002394894.1 +NC_011744 S-MART CDS 336291 337661 . + . product=alpha-amylase;transl_table=11;gbkey=CDS;protein_id=YP_002394895.1;Dbxref=Genbank:YP_002394895.1,GeneID:7137605;ID=cds289;Name=YP_002394895.1 +NC_011744 S-MART CDS 337828 339699 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002394896.1;Dbxref=Genbank:YP_002394896.1,GeneID:7137606;ID=cds290;Name=YP_002394896.1 +NC_011744 S-MART CDS 340153 341523 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394897.1;Dbxref=Genbank:YP_002394897.1,GeneID:7137607;ID=cds291;Name=YP_002394897.1 +NC_011744 S-MART CDS 341752 343059 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394899.1;Dbxref=Genbank:YP_002394899.1,GeneID:7137609;ID=cds293;Name=YP_002394899.1--YP_002394898.1 +NC_011744 S-MART CDS 343092 344162 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394901.1;Dbxref=Genbank:YP_002394901.1,GeneID:7137611;ID=cds295;Name=YP_002394901.1--YP_002394900.1 +NC_011744 S-MART CDS 344408 345700 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394902.1;Dbxref=Genbank:YP_002394902.1,GeneID:7137612;ID=cds296;Name=YP_002394902.1 +NC_011744 S-MART CDS 345872 348793 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394904.1;Dbxref=Genbank:YP_002394904.1,GeneID:7137614;ID=cds298;Name=YP_002394904.1--YP_002394903.1 +NC_011744 S-MART CDS 348902 350580 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394906.1;Dbxref=Genbank:YP_002394906.1,GeneID:7137616;ID=cds300;Name=YP_002394906.1--YP_002394905.1 +NC_011744 S-MART CDS 350824 350958 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394907.1;Dbxref=Genbank:YP_002394907.1,GeneID:7137617;ID=cds301;Name=YP_002394907.1 +NC_011744 S-MART CDS 351134 352710 . - . product=transporter;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394909.1;Dbxref=Genbank:YP_002394909.1,GeneID:7137619;ID=cds303;Name=YP_002394909.1--YP_002394908.1 +NC_011744 S-MART CDS 352866 353861 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394910.1;Dbxref=Genbank:YP_002394910.1,GeneID:7137620;ID=cds304;Name=YP_002394910.1 +NC_011744 S-MART CDS 354232 355245 . + . product=succinate dehydrogenase subunit Sdh;transl_table=11;gbkey=CDS;protein_id=YP_002394911.1;Dbxref=Genbank:YP_002394911.1,GeneID:7137621;ID=cds305;Name=YP_002394911.1 +NC_011744 S-MART CDS 355397 357379 . - . product=PTS system transporter subunit IIB;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394914.1;Dbxref=Genbank:YP_002394914.1,GeneID:7137624;ID=cds308;Name=YP_002394914.1--YP_002394913.1--YP_002394912.1 +NC_011744 S-MART CDS 357665 358150 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394915.1;Dbxref=Genbank:YP_002394915.1,GeneID:7137625;ID=cds309;Name=YP_002394915.1 +NC_011744 S-MART CDS 358753 359961 . + . product=nucleoside permease;transl_table=11;gbkey=CDS;protein_id=YP_002394916.1;Dbxref=Genbank:YP_002394916.1,GeneID:7137626;ID=cds310;Name=YP_002394916.1 +NC_011744 S-MART CDS 360320 361246 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394918.1;Dbxref=Genbank:YP_002394918.1,GeneID:7137628;ID=cds312;Name=YP_002394918.1--YP_002394917.1 +NC_011744 S-MART CDS 361344 362552 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394919.1;Dbxref=Genbank:YP_002394919.1,GeneID:7137629;ID=cds313;Name=YP_002394919.1 +NC_011744 S-MART CDS 362826 364181 . + . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394920.1;Dbxref=Genbank:YP_002394920.1,GeneID:7137630;ID=cds314;Name=YP_002394920.1 +NC_011744 S-MART CDS 364346 365917 . + . product=ATP-dependent RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002394921.1;Dbxref=Genbank:YP_002394921.1,GeneID:7137631;ID=cds315;Name=YP_002394921.1 +NC_011744 S-MART ncRNA 366376 366484 . + . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137632;ID=rna1;Name=rna1 +NC_011744 S-MART CDS 366620 368185 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002394922.1;Dbxref=Genbank:YP_002394922.1,GeneID:7138799;ID=cds316;Name=YP_002394922.1 +NC_011744 S-MART CDS 368323 368925 . + . product=malate synthase;transl_table=11;Note=Catalyzes the aldol condensation of glyoxylate with acetyl-CoA to form malate as part of the second step of the glyoxylate bypass and an alternative to the tricarboxylic acid cycle;gbkey=CDS;protein_id=YP_002394923.1;Dbxref=Genbank:YP_002394923.1,GeneID:7137633;ID=cds317;Name=YP_002394923.1 +NC_011744 S-MART CDS 369191 370228 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002394924.1;Dbxref=Genbank:YP_002394924.1,GeneID:7137634;ID=cds318;Name=YP_002394924.1 +NC_011744 S-MART CDS 370524 370754 . - . product=cold shock protein;transl_table=11;gbkey=CDS;protein_id=YP_002394925.1;Dbxref=Genbank:YP_002394925.1,GeneID:7137635;ID=cds319;Name=YP_002394925.1 +NC_011744 S-MART CDS 371098 373622 . - . product=cytosine transporter;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pt : transporter;gbkey=CDS;protein_id=YP_002394928.1;Dbxref=Genbank:YP_002394928.1,GeneID:7137638;ID=cds322;Name=YP_002394928.1--YP_002394927.1--YP_002394926.1 +NC_011744 S-MART CDS 373850 373924 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394929.1;Dbxref=Genbank:YP_002394929.1,GeneID:7137639;ID=cds323;Name=YP_002394929.1 +NC_011744 S-MART ncRNA 373934 374042 . - . ncrna_class=other;product=Qrr;Note=regulation of quorum sensing in Vibrio spp. bound by Hfq;gbkey=ncRNA;Dbxref=GeneID:7137640;ID=rna2;Name=rna2 +NC_011744 S-MART CDS 374356 375923 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394931.1;Dbxref=Genbank:YP_002394931.1,GeneID:7137641;ID=cds325;Name=YP_002394931.1--YP_002394930.1 +NC_011744 S-MART CDS 376058 377065 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394932.1;Dbxref=Genbank:YP_002394932.1,GeneID:7137642;ID=cds326;Name=YP_002394932.1 +NC_011744 S-MART CDS 377072 378717 . - . product=flavin-nucleotide-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394934.1;Dbxref=Genbank:YP_002394934.1,GeneID:7137644;ID=cds328;Name=YP_002394934.1--YP_002394933.1 +NC_011744 S-MART CDS 378808 380265 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002394935.1;Dbxref=Genbank:YP_002394935.1,GeneID:7137645;ID=cds329;Name=YP_002394935.1 +NC_011744 S-MART CDS 380313 381578 . - . product=hypothetical protein;transl_table=11;Note=uncharacterized member of the APC superfamily of amino acid transporters%3B unknown function;gbkey=CDS;protein_id=YP_002394936.1;Dbxref=Genbank:YP_002394936.1,GeneID:7137646;ID=cds330;Name=YP_002394936.1 +NC_011744 S-MART CDS 381822 384039 . + . product=LysE type translocator;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394939.1;Dbxref=Genbank:YP_002394939.1,GeneID:7137649;ID=cds333;Name=YP_002394939.1--YP_002394938.1--YP_002394937.1 +NC_011744 S-MART CDS 384149 385659 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394941.1;Dbxref=Genbank:YP_002394941.1,GeneID:7137651;ID=cds335;Name=YP_002394941.1--YP_002394940.1 +NC_011744 S-MART CDS 385873 388726 . + . product=ferredoxin oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394943.1;Dbxref=Genbank:YP_002394943.1,GeneID:7137653;ID=cds337;Name=YP_002394943.1--YP_002394942.1 +NC_011744 S-MART CDS 388972 390408 . - . product=glyceraldehyde-3-phosphate dehydrogenase;transl_table=11;Note=catalyzes the formation of 3-phospho-D-glyceroyl phosphate from D-glyceraldehyde 3-phosphate%3B involved in growth under gluconeogenic conditions and in glycolytic activity at high ATP concentrations in Corynebacterium%3B NAD and NADP dependent;gbkey=CDS;protein_id=YP_002394944.1;Dbxref=Genbank:YP_002394944.1,GeneID:7137654;ID=cds338;Name=YP_002394944.1 +NC_011744 S-MART CDS 391162 393817 . + . product=sensor protein;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002394946.1;Dbxref=Genbank:YP_002394946.1,GeneID:7137656;ID=cds340;Name=YP_002394946.1--YP_002394945.1 +NC_011744 S-MART CDS 393850 394086 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394947.1;Dbxref=Genbank:YP_002394947.1,GeneID:7137657;ID=cds341;Name=YP_002394947.1 +NC_011744 S-MART CDS 394251 394877 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394948.1;Dbxref=Genbank:YP_002394948.1,GeneID:7137658;ID=cds342;Name=YP_002394948.1 +NC_011744 S-MART CDS 395048 395362 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394949.1;Dbxref=Genbank:YP_002394949.1,GeneID:7137659;ID=cds343;Name=YP_002394949.1 +NC_011744 S-MART CDS 395459 396793 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394952.1;Dbxref=Genbank:YP_002394952.1,GeneID:7137662;ID=cds346;Name=YP_002394952.1--YP_002394951.1--YP_002394950.1 +NC_011744 S-MART CDS 397101 401235 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394956.1;Dbxref=Genbank:YP_002394956.1,GeneID:7137666;ID=cds350;Name=YP_002394956.1--YP_002394955.1--YP_002394954.1--YP_002394953.1 +NC_011744 S-MART CDS 401372 401680 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394957.1;Dbxref=Genbank:YP_002394957.1,GeneID:7137667;ID=cds351;Name=YP_002394957.1 +NC_011744 S-MART CDS 402093 403457 . + . product=chaperone;transl_table=11;gbkey=CDS;protein_id=YP_002394958.1;Dbxref=Genbank:YP_002394958.1,GeneID:7137668;ID=cds352;Name=YP_002394958.1 +NC_011744 S-MART CDS 403968 405026 . + . product=outer membrane protein N;transl_table=11;gbkey=CDS;protein_id=YP_002394959.1;Dbxref=Genbank:YP_002394959.1,GeneID:7137669;ID=cds353;Name=YP_002394959.1 +NC_011744 S-MART CDS 405444 406049 . + . product=Fumarylacetoacetate %28FAA%29 hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002394960.1;Dbxref=Genbank:YP_002394960.1,GeneID:7137670;ID=cds354;Name=YP_002394960.1 +NC_011744 S-MART CDS 406200 406832 . + . product=threonine efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002394961.1;Dbxref=Genbank:YP_002394961.1,GeneID:7137671;ID=cds355;Name=YP_002394961.1 +NC_011744 S-MART CDS 406960 408690 . - . product=phosphomannomutase;transl_table=11;gbkey=CDS;protein_id=YP_002394962.1;Dbxref=Genbank:YP_002394962.1,GeneID:7137672;ID=cds356;Name=YP_002394962.1 +NC_011744 S-MART CDS 409209 419043 . + . product=hypothetical protein;nbElements=11.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394973.1;Dbxref=Genbank:YP_002394973.1,GeneID:7137683;ID=cds367;Name=YP_002394973.1--YP_002394972.1--YP_002394971.1--YP_002394970.1--YP_002394969.1--YP_002394968.1--YP_0 +NC_011744 S-MART CDS 419340 419477 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394974.1;Dbxref=Genbank:YP_002394974.1,GeneID:7137684;ID=cds368;Name=YP_002394974.1 +NC_011744 S-MART CDS 419627 420304 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394975.1;Dbxref=Genbank:YP_002394975.1,GeneID:7137685;ID=cds369;Name=YP_002394975.1 +NC_011744 S-MART CDS 420608 420964 . - . product=transposase;transl_table=11;gbkey=CDS;protein_id=YP_002394976.1;Dbxref=Genbank:YP_002394976.1,GeneID:7137686;ID=cds370;Name=YP_002394976.1 +NC_011744 S-MART CDS 421035 421463 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394977.1;Dbxref=Genbank:YP_002394977.1,GeneID:7137687;ID=cds371;Name=YP_002394977.1 +NC_011744 S-MART CDS 421959 422592 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394979.1;Dbxref=Genbank:YP_002394979.1,GeneID:7137689;ID=cds373;Name=YP_002394979.1--YP_002394978.1 +NC_011744 S-MART CDS 423194 423962 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394981.1;Dbxref=Genbank:YP_002394981.1,GeneID:7137691;ID=cds375;Name=YP_002394981.1--YP_002394980.1 +NC_011744 S-MART CDS 424285 424524 . - . product=transposase;transl_table=11;gbkey=CDS;protein_id=YP_002394982.1;Dbxref=Genbank:YP_002394982.1,GeneID:7137692;ID=cds376;Name=YP_002394982.1 +NC_011744 S-MART CDS 424597 425118 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002394983.1;Dbxref=Genbank:YP_002394983.1,GeneID:7137693;ID=cds377;Name=YP_002394983.1 +NC_011744 S-MART CDS 425805 426857 . + . product=phospho-2-dehydro-3-deoxyheptonate aldolase;transl_table=11;Note=catalyzes the formation of 3-deoxy-D-arabino-hept-2-ulosonate 7 phosphate from phosphoenolpyruvate and D-erythrose 4-phosphate%2C phenylalanine sensitive;gbkey=CDS;protein_id=YP_002394984.1;Dbxref=Genbank:YP_002394984.1,GeneID:7137694;ID=cds378;Name=YP_002394984.1 +NC_011744 S-MART CDS 426970 431237 . - . product=Small-conductance mechanosensitive channel;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394987.1;Dbxref=Genbank:YP_002394987.1,GeneID:7137697;ID=cds381;Name=YP_002394987.1--YP_002394986.1--YP_002394985.1 +NC_011744 S-MART CDS 431422 433473 . + . product=KtrB;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394989.1;Dbxref=Genbank:YP_002394989.1,GeneID:7137699;ID=cds383;Name=YP_002394989.1--YP_002394988.1 +NC_011744 S-MART CDS 433580 434722 . - . product=Methionine sulfoxide reductase;transl_table=11;gbkey=CDS;protein_id=YP_002394990.1;Dbxref=Genbank:YP_002394990.1,GeneID:7137700;ID=cds384;Name=YP_002394990.1 +NC_011744 S-MART CDS 434919 435317 . + . product=OsmC-like protein;transl_table=11;gbkey=CDS;protein_id=YP_002394991.1;Dbxref=Genbank:YP_002394991.1,GeneID:7137701;ID=cds385;Name=YP_002394991.1 +NC_011744 S-MART CDS 435461 436522 . - . product=outer membrane protein OmpA;transl_table=11;gbkey=CDS;protein_id=YP_002394992.1;Dbxref=Genbank:YP_002394992.1,GeneID:7137702;ID=cds386;Name=YP_002394992.1 +NC_011744 S-MART CDS 436874 440325 . - . product=2-aminoethylphosphonate--pyruvate transaminase;nbElements=3.000000;transl_table=11;Note=catalyzes the formation of phosphonoacetaldehyde from 2-aminoethylphosphonate and pyruvate;gbkey=CDS;protein_id=YP_002394995.1;Dbxref=Genbank:YP_002394995.1,GeneID:7137705;ID=cds389;Name=YP_002394995.1--YP_002394994.1--YP_002394993.1 +NC_011744 S-MART CDS 440720 443272 . + . product=ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002394997.1;Dbxref=Genbank:YP_002394997.1,GeneID:7137707;ID=cds391;Name=YP_002394997.1--YP_002394996.1 +NC_011744 S-MART CDS 443500 448153 . + . product=permease of the drug%2Fmetabolite transporter %28DMT%29 superfamily;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395001.1;Dbxref=Genbank:YP_002395001.1,GeneID:7137711;ID=cds395;Name=YP_002395001.1--YP_002395000.1--YP_002394999.1--YP_002394998.1 +NC_011744 S-MART CDS 448354 453436 . + . product=6-phosphogluconate dehydrogenase;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395006.1;Dbxref=Genbank:YP_002395006.1,GeneID:7137716;ID=cds400;Name=YP_002395006.1--YP_002395005.1--YP_002395004.1--YP_002395003.1--YP_002395002.1 +NC_011744 S-MART CDS 453913 454644 . + . product=peptidase E;transl_table=11;Note=alpha-aspartyl dipeptidase%3B catalyzes the hydrolysis of dipeptides with an N-terminal aspartate residue%3B belongs to peptidase S51 family;gbkey=CDS;protein_id=YP_002395007.1;Dbxref=Genbank:YP_002395007.1,GeneID:7137717;ID=cds401;Name=YP_002395007.1 +NC_011744 S-MART CDS 454955 455956 . + . product=HTH-type transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395008.1;Dbxref=Genbank:YP_002395008.1,GeneID:7137718;ID=cds402;Name=YP_002395008.1 +NC_011744 S-MART CDS 456071 456853 . - . product=Siderophore-interacting protein ViuB;transl_table=11;gbkey=CDS;protein_id=YP_002395009.1;Dbxref=Genbank:YP_002395009.1,GeneID:7137719;ID=cds403;Name=YP_002395009.1 +NC_011744 S-MART CDS 457057 458580 . - . product=Dipeptide%2Ftripeptide permease;transl_table=11;gbkey=CDS;protein_id=YP_002395010.1;Dbxref=Genbank:YP_002395010.1,GeneID:7137720;ID=cds404;Name=YP_002395010.1 +NC_011744 S-MART CDS 458945 460315 . - . product=L-serine dehydratase;transl_table=11;gbkey=CDS;protein_id=YP_002395011.1;Dbxref=Genbank:YP_002395011.1,GeneID:7137721;ID=cds405;Name=YP_002395011.1 +NC_011744 S-MART CDS 460691 461569 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395012.1;Dbxref=Genbank:YP_002395012.1,GeneID:7137722;ID=cds406;Name=YP_002395012.1 +NC_011744 S-MART CDS 461764 462018 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395013.1;Dbxref=Genbank:YP_002395013.1,GeneID:7137723;ID=cds407;Name=YP_002395013.1 +NC_011744 S-MART CDS 462389 462907 . + . product=MutT%2FNUDIX protein;transl_table=11;gbkey=CDS;protein_id=YP_002395014.1;Dbxref=Genbank:YP_002395014.1,GeneID:7137724;ID=cds408;Name=YP_002395014.1 +NC_011744 S-MART CDS 463412 466069 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395017.1;Dbxref=Genbank:YP_002395017.1,GeneID:7137727;ID=cds411;Name=YP_002395017.1--YP_002395015.1 +NC_011744 S-MART CDS 465520 465708 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395016.1;Dbxref=Genbank:YP_002395016.1,GeneID:7137726;ID=cds410;Name=YP_002395016.1 +NC_011744 S-MART CDS 466296 472210 . + . product=metalloprotease;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395021.1;Dbxref=Genbank:YP_002395021.1,GeneID:7137731;ID=cds415;Name=YP_002395021.1--YP_002395020.1--YP_002395019.1--YP_002395018.1 +NC_011744 S-MART CDS 472311 473616 . - . product=Glycine cleavage system transcriptional activator %28Gcv operon activator%29;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395023.1;Dbxref=Genbank:YP_002395023.1,GeneID:7137733;ID=cds417;Name=YP_002395023.1--YP_002395022.1 +NC_011744 S-MART CDS 473708 474718 . + . product=drug%2Fmetabolite transporter permease;transl_table=11;gbkey=CDS;protein_id=YP_002395024.1;Dbxref=Genbank:YP_002395024.1,GeneID:7137734;ID=cds418;Name=YP_002395024.1 +NC_011744 S-MART CDS 474756 477779 . - . product=chemotactic transducer-related protein;transl_table=11;gbkey=CDS;protein_id=YP_002395025.1;Dbxref=Genbank:YP_002395025.1,GeneID:7137735;ID=cds419;Name=YP_002395025.1 +NC_011744 S-MART CDS 478058 478804 . + . product=hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002395026.1;Dbxref=Genbank:YP_002395026.1,GeneID:7137736;ID=cds420;Name=YP_002395026.1 +NC_011744 S-MART CDS 478976 479371 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395027.1;Dbxref=Genbank:YP_002395027.1,GeneID:7137737;ID=cds421;Name=YP_002395027.1 +NC_011744 S-MART CDS 479698 481695 . + . product=Iron-regulated membrane protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395029.1;Dbxref=Genbank:YP_002395029.1,GeneID:7137739;ID=cds423;Name=YP_002395029.1--YP_002395028.1 +NC_011744 S-MART CDS 481826 483189 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395031.1;Dbxref=Genbank:YP_002395031.1,GeneID:7137741;ID=cds425;Name=YP_002395031.1--YP_002395030.1 +NC_011744 S-MART CDS 483488 484627 . + . product=Permease of the major facilitator superfamily;transl_table=11;gbkey=CDS;protein_id=YP_002395032.1;Dbxref=Genbank:YP_002395032.1,GeneID:7137742;ID=cds426;Name=YP_002395032.1 +NC_011744 S-MART CDS 484944 487278 . + . product=L-threonine 3-dehydrogenase;nbElements=2.000000;transl_table=11;Note=converts threonine and NAD to 1%2C2-amino-3-oxobutanoate and NADH%3B functions in threonine catabolism;gbkey=CDS;protein_id=YP_002395034.1;Dbxref=Genbank:YP_002395034.1,GeneID:7137744;ID=cds428;Name=YP_002395034.1--YP_002395033.1 +NC_011744 S-MART CDS 487458 488681 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395035.1;Dbxref=Genbank:YP_002395035.1,GeneID:7137745;ID=cds429;Name=YP_002395035.1 +NC_011744 S-MART CDS 488848 489003 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395036.1;Dbxref=Genbank:YP_002395036.1,GeneID:7137746;ID=cds430;Name=YP_002395036.1 +NC_011744 S-MART CDS 489208 491805 . - . product=NAD%28P%29H oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395038.1;Dbxref=Genbank:YP_002395038.1,GeneID:7137748;ID=cds432;Name=YP_002395038.1--YP_002395037.1 +NC_011744 S-MART CDS 492055 493131 . + . product=threonine aldolase;transl_table=11;gbkey=CDS;protein_id=YP_002395039.1;Dbxref=Genbank:YP_002395039.1,GeneID:7137749;ID=cds433;Name=YP_002395039.1 +NC_011744 S-MART CDS 493609 494043 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395040.1;Dbxref=Genbank:YP_002395040.1,GeneID:7137750;ID=cds434;Name=YP_002395040.1 +NC_011744 S-MART CDS 494164 495087 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395041.1;Dbxref=Genbank:YP_002395041.1,GeneID:7137751;ID=cds435;Name=YP_002395041.1 +NC_011744 S-MART CDS 495325 496473 . - . product=alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395042.1;Dbxref=Genbank:YP_002395042.1,GeneID:7137752;ID=cds436;Name=YP_002395042.1 +NC_011744 S-MART CDS 496712 496897 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395043.1;Dbxref=Genbank:YP_002395043.1,GeneID:7137753;ID=cds437;Name=YP_002395043.1 +NC_011744 S-MART CDS 497111 497785 . + . product=nucleotidase;transl_table=11;Note=manganese-dependent 5%27-nucleotidase%3B specific for 5%27-UMP%2C 5%27-dUMP%2C and 5%27-dTMP%3B member of haloacid dehalogenase %28HAD%29-like hydrolase superfamily;gbkey=CDS;protein_id=YP_002395044.1;Dbxref=Genbank:YP_002395044.1,GeneID:7137754;ID=cds438;Name=YP_002395044.1 +NC_011744 S-MART CDS 497965 498897 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395045.1;Dbxref=Genbank:YP_002395045.1,GeneID:7137755;ID=cds439;Name=YP_002395045.1 +NC_011744 S-MART CDS 498928 502047 . - . product=cation efflux system component;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395047.1;Dbxref=Genbank:YP_002395047.1,GeneID:7137757;ID=cds441;Name=YP_002395047.1--YP_002395046.1 +NC_011744 S-MART CDS 502409 502759 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395048.1;Dbxref=Genbank:YP_002395048.1,GeneID:7137758;ID=cds442;Name=YP_002395048.1 +NC_011744 S-MART CDS 502821 503699 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395049.1;Dbxref=Genbank:YP_002395049.1,GeneID:7137759;ID=cds443;Name=YP_002395049.1 +NC_011744 S-MART CDS 503849 504460 . + . product=methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395050.1;Dbxref=Genbank:YP_002395050.1,GeneID:7137760;ID=cds444;Name=YP_002395050.1 +NC_011744 S-MART CDS 504872 507401 . + . product=pyruvate formate-lyase activating enzyme;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395052.1;Dbxref=Genbank:YP_002395052.1,GeneID:7137762;ID=cds446;Name=YP_002395052.1--YP_002395051.1 +NC_011744 S-MART CDS 507467 510462 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395056.1;Dbxref=Genbank:YP_002395056.1,GeneID:7137766;ID=cds450;Name=YP_002395056.1--YP_002395055.1--YP_002395054.1--YP_002395053.1 +NC_011744 S-MART CDS 510815 513001 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395057.1;Dbxref=Genbank:YP_002395057.1,GeneID:7137767;ID=cds451;Name=YP_002395057.1 +NC_011744 S-MART CDS 513179 515736 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395059.1;Dbxref=Genbank:YP_002395059.1,GeneID:7137769;ID=cds453;Name=YP_002395059.1--YP_002395058.1 +NC_011744 S-MART CDS 515923 519015 . - . product=transaldolase B;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395061.1;Dbxref=Genbank:YP_002395061.1,GeneID:7137771;ID=cds455;Name=YP_002395061.1--YP_002395060.1 +NC_011744 S-MART CDS 519415 520407 . + . product=Transcriptional regulator%2C SorC family;transl_table=11;gbkey=CDS;protein_id=YP_002395062.1;Dbxref=Genbank:YP_002395062.1,GeneID:7137772;ID=cds456;Name=YP_002395062.1 +NC_011744 S-MART CDS 520677 523694 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395063.1;Dbxref=Genbank:YP_002395063.1,GeneID:7137773;ID=cds457;Name=YP_002395063.1 +NC_011744 S-MART CDS 524243 525127 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395064.1;Dbxref=Genbank:YP_002395064.1,GeneID:7137774;ID=cds458;Name=YP_002395064.1 +NC_011744 S-MART CDS 525128 525586 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395065.1;Dbxref=Genbank:YP_002395065.1,GeneID:7137775;ID=cds459;Name=YP_002395065.1 +NC_011744 S-MART CDS 525798 536990 . + . product=hypothetical protein;nbElements=13.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395078.1;Dbxref=Genbank:YP_002395078.1,GeneID:7137788;ID=cds472;Name=YP_002395078.1--YP_002395077.1--YP_002395076.1--YP_002395075.1--YP_002395074.1--YP_002395073.1--YP_0 +NC_011744 S-MART CDS 537128 539515 . - . product=signal transduction protein;transl_table=11;gbkey=CDS;protein_id=YP_002395079.1;Dbxref=Genbank:YP_002395079.1,GeneID:7137789;ID=cds473;Name=YP_002395079.1 +NC_011744 S-MART CDS 539867 541156 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395082.1;Dbxref=Genbank:YP_002395082.1,GeneID:7137792;ID=cds476;Name=YP_002395082.1--YP_002395081.1--YP_002395080.1 +NC_011744 S-MART CDS 541314 544200 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395084.1;Dbxref=Genbank:YP_002395084.1,GeneID:7137794;ID=cds478;Name=YP_002395084.1--YP_002395083.1 +NC_011744 S-MART CDS 544457 546454 . - . product=Molybdopterin biosynthesis protein moeA;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395086.1;Dbxref=Genbank:YP_002395086.1,GeneID:7137796;ID=cds480;Name=YP_002395086.1--YP_002395085.1 +NC_011744 S-MART CDS 546671 547324 . + . product=GTP cyclohydrolase I;transl_table=11;Note=involved in the first step of tetrahydrofolate biosynthesis%3B catalyzes the formation of formate and 2-amino-4-hydroxy-6-%28erythro-1%2C2%2C3-trihydroxypropyl%29dihydropteridine triphosphate from GTP and water%3B forms a homopolymer;gbkey=CDS;protein_id=YP_002395087.1;Dbxref=Genbank:YP_002395087.1,GeneID:7137797;ID=cds481;Name=YP_002395087.1 +NC_011744 S-MART CDS 547390 548886 . - . product=dipeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395088.1;Dbxref=Genbank:YP_002395088.1,GeneID:7137798;ID=cds482;Name=YP_002395088.1 +NC_011744 S-MART CDS 549372 550810 . - . product=cold-shock protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395091.1;Dbxref=Genbank:YP_002395091.1,GeneID:7137801;ID=cds485;Name=YP_002395091.1--YP_002395090.1--YP_002395089.1 +NC_011744 S-MART CDS 551259 552344 . - . product=glucose dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395092.1;Dbxref=Genbank:YP_002395092.1,GeneID:7137802;ID=cds486;Name=YP_002395092.1 +NC_011744 S-MART CDS 552642 553835 . + . product=Multidrug resistance protein mdtL;transl_table=11;gbkey=CDS;protein_id=YP_002395093.1;Dbxref=Genbank:YP_002395093.1,GeneID:7137803;ID=cds487;Name=YP_002395093.1 +NC_011744 S-MART CDS 553978 555599 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395095.1;Dbxref=Genbank:YP_002395095.1,GeneID:7137805;ID=cds489;Name=YP_002395095.1--YP_002395094.1 +NC_011744 S-MART CDS 555855 556727 . + . product=Transcription activator;transl_table=11;gbkey=CDS;protein_id=YP_002395096.1;Dbxref=Genbank:YP_002395096.1,GeneID:7137806;ID=cds490;Name=YP_002395096.1 +NC_011744 S-MART CDS 556974 562141 . + . product=Fe3%2B-hydroxamate ABC transporter permease;nbElements=3.000000;transl_table=11;Note=part of the FhuBCD ATP-dependent iron %28III%29 hydroxamate transporter involved in the high-affinity transport of Fe%283%2B%29-ferrichrome;gbkey=CDS;protein_id=YP_002395099.1;Dbxref=Genbank:YP_002395099.1,GeneID:7137809;ID=cds493;Name=YP_002395099.1--YP_002395098.1--YP_002395097.1 +NC_011744 S-MART CDS 562394 565179 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395102.1;Dbxref=Genbank:YP_002395102.1,GeneID:7137812;ID=cds496;Name=YP_002395102.1--YP_002395101.1--YP_002395100.1 +NC_011744 S-MART CDS 565513 566625 . + . product=NADH oxidase;transl_table=11;gbkey=CDS;protein_id=YP_002395103.1;Dbxref=Genbank:YP_002395103.1,GeneID:7137813;ID=cds497;Name=YP_002395103.1 +NC_011744 S-MART CDS 567046 567681 . + . product=Acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395104.1;Dbxref=Genbank:YP_002395104.1,GeneID:7137814;ID=cds498;Name=YP_002395104.1 +NC_011744 S-MART CDS 567834 573035 . + . product=ABC transporter;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395107.1;Dbxref=Genbank:YP_002395107.1,GeneID:7137817;ID=cds501;Name=YP_002395107.1--YP_002395106.1--YP_002395105.1 +NC_011744 S-MART CDS 573132 581666 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395108.1;Dbxref=Genbank:YP_002395108.1,GeneID:7137818;ID=cds502;Name=YP_002395108.1 +NC_011744 S-MART CDS 581891 590044 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395114.1;Dbxref=Genbank:YP_002395114.1,GeneID:7137824;ID=cds508;Name=YP_002395114.1--YP_002395113.1--YP_002395112.1--YP_002395111.1--YP_002395110.1--YP_002395109.1 +NC_011744 S-MART CDS 590206 590463 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395115.1;Dbxref=Genbank:YP_002395115.1,GeneID:7137825;ID=cds509;Name=YP_002395115.1 +NC_011744 S-MART tRNA 590718 590976 . - . product=tRNA-Gly;nbElements=3.000000;gbkey=tRNA;Dbxref=GeneID:7138809;ID=rna4;Name=rna4--rna3--YP_002395116.1 +NC_011744 S-MART CDS 591502 592665 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395117.1;Dbxref=Genbank:YP_002395117.1,GeneID:7138810;ID=cds511;Name=YP_002395117.1 +NC_011744 S-MART CDS 592846 594812 . + . product=acetyltransferase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395121.1;Dbxref=Genbank:YP_002395121.1,GeneID:7137831;ID=cds515;Name=YP_002395121.1--YP_002395120.1--YP_002395119.1--YP_002395118.1 +NC_011744 S-MART CDS 594859 595968 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395122.1;Dbxref=Genbank:YP_002395122.1,GeneID:7137832;ID=cds516;Name=YP_002395122.1 +NC_011744 S-MART CDS 595989 597995 . + . product=Enterobactin receptor;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 12065481%3B Product type rc : receptor;gbkey=CDS;protein_id=YP_002395123.1;Dbxref=Genbank:YP_002395123.1,GeneID:7137833;ID=cds517;Name=YP_002395123.1 +NC_011744 S-MART CDS 598168 599112 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395124.1;Dbxref=Genbank:YP_002395124.1,GeneID:7137834;ID=cds518;Name=YP_002395124.1 +NC_011744 S-MART CDS 599305 600231 . - . product=ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395125.1;Dbxref=Genbank:YP_002395125.1,GeneID:7137835;ID=cds519;Name=YP_002395125.1 +NC_011744 S-MART CDS 600409 602774 . - . product=ABC transporter ATP-binding protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395128.1;Dbxref=Genbank:YP_002395128.1,GeneID:7137838;ID=cds522;Name=YP_002395128.1--YP_002395127.1--YP_002395126.1 +NC_011744 S-MART CDS 603010 604158 . - . product=iron-containing alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395129.1;Dbxref=Genbank:YP_002395129.1,GeneID:7137839;ID=cds523;Name=YP_002395129.1 +NC_011744 S-MART CDS 604352 605236 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395130.1;Dbxref=Genbank:YP_002395130.1,GeneID:7137840;ID=cds524;Name=YP_002395130.1 +NC_011744 S-MART CDS 605901 607148 . + . product=endoribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395131.1;Dbxref=Genbank:YP_002395131.1,GeneID:7137841;ID=cds525;Name=YP_002395131.1 +NC_011744 S-MART CDS 607390 607992 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395133.1;Dbxref=Genbank:YP_002395133.1,GeneID:7137843;ID=cds527;Name=YP_002395133.1--YP_002395132.1 +NC_011744 S-MART CDS 608947 611939 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395135.1;Dbxref=Genbank:YP_002395135.1,GeneID:7137845;ID=cds529;Name=YP_002395135.1--YP_002395134.1 +NC_011744 S-MART CDS 612150 612668 . + . product=acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395136.1;Dbxref=Genbank:YP_002395136.1,GeneID:7137846;ID=cds530;Name=YP_002395136.1 +NC_011744 S-MART CDS 612782 613228 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395137.1;Dbxref=Genbank:YP_002395137.1,GeneID:7137847;ID=cds531;Name=YP_002395137.1 +NC_011744 S-MART CDS 613510 613872 . + . product=translation initiation inhibitor;transl_table=11;gbkey=CDS;protein_id=YP_002395138.1;Dbxref=Genbank:YP_002395138.1,GeneID:7137848;ID=cds532;Name=YP_002395138.1 +NC_011744 S-MART CDS 614016 615650 . - . product=glycine betaine transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395139.1;Dbxref=Genbank:YP_002395139.1,GeneID:7137849;ID=cds533;Name=YP_002395139.1 +NC_011744 S-MART CDS 616053 619211 . + . product=chitinase;transl_table=11;gbkey=CDS;protein_id=YP_002395140.1;Dbxref=Genbank:YP_002395140.1,GeneID:7137850;ID=cds534;Name=YP_002395140.1 +NC_011744 S-MART CDS 619498 620967 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395141.1;Dbxref=Genbank:YP_002395141.1,GeneID:7137851;ID=cds535;Name=YP_002395141.1 +NC_011744 S-MART CDS 621058 621312 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395142.1;Dbxref=Genbank:YP_002395142.1,GeneID:7137852;ID=cds536;Name=YP_002395142.1 +NC_011744 S-MART CDS 621581 622165 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395143.1;Dbxref=Genbank:YP_002395143.1,GeneID:7137853;ID=cds537;Name=YP_002395143.1 +NC_011744 S-MART CDS 622344 623528 . + . product=D-alanyl-D-alanine carboxypeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395144.1;Dbxref=Genbank:YP_002395144.1,GeneID:7137854;ID=cds538;Name=YP_002395144.1 +NC_011744 S-MART CDS 623726 624019 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395145.1;Dbxref=Genbank:YP_002395145.1,GeneID:7137855;ID=cds539;Name=YP_002395145.1 +NC_011744 S-MART CDS 624071 624967 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395146.1;Dbxref=Genbank:YP_002395146.1,GeneID:7137856;ID=cds540;Name=YP_002395146.1 +NC_011744 S-MART CDS 625084 625464 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395147.1;Dbxref=Genbank:YP_002395147.1,GeneID:7137857;ID=cds541;Name=YP_002395147.1 +NC_011744 S-MART CDS 625545 631388 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395154.1;Dbxref=Genbank:YP_002395154.1,GeneID:7137864;ID=cds548;Name=YP_002395154.1--YP_002395153.1--YP_002395152.1--YP_002395151.1--YP_002395150.1--YP_002395149.1--YP_0 +NC_011744 S-MART CDS 631360 631971 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395155.1;Dbxref=Genbank:YP_002395155.1,GeneID:7137865;ID=cds549;Name=YP_002395155.1 +NC_011744 S-MART CDS 632080 634121 . - . product=anaerobic nitric oxide reductase transcriptional regulator;nbElements=2.000000;transl_table=11;Note=Required for the expression of anaerobic nitric oxide %28NO%29 reductase%3B acts as a transcriptional activator for the norVW operon;gbkey=CDS;protein_id=YP_002395157.1;Dbxref=Genbank:YP_002395157.1,GeneID:7137867;ID=cds551;Name=YP_002395157.1--YP_002395156.1 +NC_011744 S-MART CDS 634471 635667 . + . product=nitric oxide dioxygenase;transl_table=11;Note=flavohemoprotein%3B catalyzes the formation of nitrate from nitric oxide%3B can also catalyze the reduction of dihydropteridine;gbkey=CDS;protein_id=YP_002395158.1;Dbxref=Genbank:YP_002395158.1,GeneID:7137868;ID=cds552;Name=YP_002395158.1 +NC_011744 S-MART CDS 635827 636852 . - . product=Tellurite resistance protein;transl_table=11;gbkey=CDS;protein_id=YP_002395159.1;Dbxref=Genbank:YP_002395159.1,GeneID:7137869;ID=cds553;Name=YP_002395159.1 +NC_011744 S-MART CDS 637090 638535 . - . product=chloride channel protein;transl_table=11;Note=Acts as an electrical shunt for an outwardly-directed proton pump that is linked to amino acid decarboxylation;gbkey=CDS;protein_id=YP_002395160.1;Dbxref=Genbank:YP_002395160.1,GeneID:7137870;ID=cds554;Name=YP_002395160.1 +NC_011744 S-MART CDS 639037 640020 . + . product=cobalamin synthesis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395161.1;Dbxref=Genbank:YP_002395161.1,GeneID:7137871;ID=cds555;Name=YP_002395161.1 +NC_011744 S-MART CDS 640203 641489 . + . product=Superfamily II DNA and RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002395162.1;Dbxref=Genbank:YP_002395162.1,GeneID:7137872;ID=cds556;Name=YP_002395162.1 +NC_011744 S-MART CDS 641777 642274 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395163.1;Dbxref=Genbank:YP_002395163.1,GeneID:7137873;ID=cds557;Name=YP_002395163.1 +NC_011744 S-MART CDS 642526 644553 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395164.1;Dbxref=Genbank:YP_002395164.1,GeneID:7137874;ID=cds558;Name=YP_002395164.1 +NC_011744 S-MART CDS 644806 645147 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395165.1;Dbxref=Genbank:YP_002395165.1,GeneID:7137875;ID=cds559;Name=YP_002395165.1 +NC_011744 S-MART CDS 645401 649161 . + . product=two-component sensor histidine kinase;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395170.1;Dbxref=Genbank:YP_002395170.1,GeneID:7137880;ID=cds564;Name=YP_002395170.1--YP_002395169.1--YP_002395168.1--YP_002395167.1--YP_002395166.1 +NC_011744 S-MART CDS 649298 650877 . - . product=Permease of the drug metabolite transporter %28DMT%29 superfamily;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395172.1;Dbxref=Genbank:YP_002395172.1,GeneID:7137882;ID=cds566;Name=YP_002395172.1--YP_002395171.1 +NC_011744 S-MART CDS 650699 650857 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395173.1;Dbxref=Genbank:YP_002395173.1,GeneID:7137883;ID=cds567;Name=YP_002395173.1 +NC_011744 S-MART CDS 651018 651476 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395174.1;Dbxref=Genbank:YP_002395174.1,GeneID:7137884;ID=cds568;Name=YP_002395174.1 +NC_011744 S-MART CDS 651713 651955 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395175.1;Dbxref=Genbank:YP_002395175.1,GeneID:7137885;ID=cds569;Name=YP_002395175.1 +NC_011744 S-MART CDS 652234 652809 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395176.1;Dbxref=Genbank:YP_002395176.1,GeneID:7137886;ID=cds570;Name=YP_002395176.1 +NC_011744 S-MART CDS 652906 653586 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395177.1;Dbxref=Genbank:YP_002395177.1,GeneID:7137887;ID=cds571;Name=YP_002395177.1 +NC_011744 S-MART CDS 654117 658459 . + . product=Polyhydroxyalkanoic acid synthase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395181.1;Dbxref=Genbank:YP_002395181.1,GeneID:7137891;ID=cds575;Name=YP_002395181.1--YP_002395180.1--YP_002395179.1--YP_002395178.1 +NC_011744 S-MART CDS 658717 659679 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395182.1;Dbxref=Genbank:YP_002395182.1,GeneID:7137892;ID=cds576;Name=YP_002395182.1 +NC_011744 S-MART CDS 659861 667587 . - . product=outer membrane transport protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395187.1;Dbxref=Genbank:YP_002395187.1,GeneID:7137897;ID=cds581;Name=YP_002395187.1--YP_002395186.1--YP_002395185.1--YP_002395184.1--YP_002395183.1 +NC_011744 S-MART CDS 667829 669037 . - . product=HD-GYP domain containing protein;transl_table=11;gbkey=CDS;protein_id=YP_002395188.1;Dbxref=Genbank:YP_002395188.1,GeneID:7137898;ID=cds582;Name=YP_002395188.1 +NC_011744 S-MART CDS 669479 674120 . - . product=%28Fe-S%29-binding protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395194.1;Dbxref=Genbank:YP_002395194.1,GeneID:7137904;ID=cds588;Name=YP_002395194.1--YP_002395193.1--YP_002395192.1--YP_002395191.1--YP_002395190.1--YP_002395189.1 +NC_011744 S-MART CDS 674374 676723 . + . product=nitrate%2Fnitrite response regulator protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395196.1;Dbxref=Genbank:YP_002395196.1,GeneID:7137906;ID=cds590;Name=YP_002395196.1--YP_002395195.1 +NC_011744 S-MART CDS 676943 678322 . - . product=C4-dicarboxylate transporter DcuC;transl_table=11;Note=responsible for the transport of C4-dicarboxylates during anaerobic growth;gbkey=CDS;protein_id=YP_002395197.1;Dbxref=Genbank:YP_002395197.1,GeneID:7137907;ID=cds591;Name=YP_002395197.1 +NC_011744 S-MART CDS 678877 679593 . - . product=DNA-binding transcriptional repressor MngR;transl_table=11;Note=regulates the succiny-lCoA synthetase operon;gbkey=CDS;protein_id=YP_002395198.1;Dbxref=Genbank:YP_002395198.1,GeneID:7137908;ID=cds592;Name=YP_002395198.1 +NC_011744 S-MART CDS 679911 681845 . + . product=PTS system 2-O-a-mannosyl-D-glycerate specific transporter subunit IIABC;transl_table=11;Note=involved in the phosphorylation and transport of sugars across the cell membrane%3B protein IIA transfers a phosphoryl group to IIB which then transfers the phosphoryl group to the sugar%3B IIC forms the translocation channel for the sugar uptake;gbkey=CDS;protein_id=YP_002395199.1;Dbxref=Genbank:YP_002395199.1,GeneID:7137909;ID=cds593;Name=YP_002395199.1 +NC_011744 S-MART CDS 682083 687140 . + . product=mannose-6-phosphate isomerase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395202.1;Dbxref=Genbank:YP_002395202.1,GeneID:7137912;ID=cds596;Name=YP_002395202.1--YP_002395201.1--YP_002395200.1 +NC_011744 S-MART CDS 687546 689373 . - . product=acyl-CoA desaturase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395204.1;Dbxref=Genbank:YP_002395204.1,GeneID:7137914;ID=cds598;Name=YP_002395204.1--YP_002395203.1 +NC_011744 S-MART CDS 689399 689944 . + . product=acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395205.1;Dbxref=Genbank:YP_002395205.1,GeneID:7137915;ID=cds599;Name=YP_002395205.1 +NC_011744 S-MART CDS 690130 691161 . - . product=ribosomal biogenesis GTPase;transl_table=11;Note=essential GTPase%3B functions in ribosome assembly%3B binds a unique part of the 23S rRNA%3B interacts with ribosomal protein L25%28Ctc%29;gbkey=CDS;protein_id=YP_002395206.1;Dbxref=Genbank:YP_002395206.1,GeneID:7137916;ID=cds600;Name=YP_002395206.1 +NC_011744 S-MART CDS 691396 692056 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395210.1;Dbxref=Genbank:YP_002395210.1,GeneID:7137920;ID=cds604;Name=YP_002395210.1--YP_002395209.1--YP_002395208.1--YP_002395207.1 +NC_011744 S-MART CDS 692592 694097 . - . product=aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395211.1;Dbxref=Genbank:YP_002395211.1,GeneID:7137921;ID=cds605;Name=YP_002395211.1 +NC_011744 S-MART CDS 694518 695124 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395213.1;Dbxref=Genbank:YP_002395213.1,GeneID:7137923;ID=cds607;Name=YP_002395213.1--YP_002395212.1 +NC_011744 S-MART CDS 696153 697172 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395214.1;Dbxref=Genbank:YP_002395214.1,GeneID:7137924;ID=cds608;Name=YP_002395214.1 +NC_011744 S-MART CDS 697351 698611 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395216.1;Dbxref=Genbank:YP_002395216.1,GeneID:7137926;ID=cds610;Name=YP_002395216.1--YP_002395215.1 +NC_011744 S-MART CDS 699090 699815 . - . product=Transcription activator ToxR;transl_table=11;gbkey=CDS;protein_id=YP_002395217.1;Dbxref=Genbank:YP_002395217.1,GeneID:7137927;ID=cds611;Name=YP_002395217.1 +NC_011744 S-MART CDS 700082 701402 . - . product=thiol peroxidase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395220.1;Dbxref=Genbank:YP_002395220.1,GeneID:7137930;ID=cds614;Name=YP_002395220.1--YP_002395219.1--YP_002395218.1 +NC_011744 S-MART CDS 701981 702466 . + . product=lipoprotein;transl_table=11;gbkey=CDS;protein_id=YP_002395221.1;Dbxref=Genbank:YP_002395221.1,GeneID:7137931;ID=cds615;Name=YP_002395221.1 +NC_011744 S-MART CDS 702643 705370 . + . product=aspartate racemase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395224.1;Dbxref=Genbank:YP_002395224.1,GeneID:7137934;ID=cds618;Name=YP_002395224.1--YP_002395223.1--YP_002395222.1 +NC_011744 S-MART CDS 705792 712546 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395231.1;Dbxref=Genbank:YP_002395231.1,GeneID:7137941;ID=cds625;Name=YP_002395231.1--YP_002395230.1--YP_002395229.1--YP_002395228.1--YP_002395227.1--YP_002395226.1--YP_0 +NC_011744 S-MART CDS 713325 714942 . - . product=MutT%2Fnudix family protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395233.1;Dbxref=Genbank:YP_002395233.1,GeneID:7137943;ID=cds627;Name=YP_002395233.1--YP_002395232.1 +NC_011744 S-MART CDS 715173 718286 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=contains a von Willibrand factor type A domain%3B stimulates the ATPase activity of RavA;gbkey=CDS;protein_id=YP_002395235.1;Dbxref=Genbank:YP_002395235.1,GeneID:7137945;ID=cds629;Name=YP_002395235.1--YP_002395234.1 +NC_011744 S-MART tRNA 718483 718990 . + . product=tRNA-Cys;nbElements=4.000000;gbkey=tRNA;Dbxref=GeneID:7138813;ID=rna8;Name=rna8--rna7--rna6--rna5 +NC_011744 S-MART CDS 719066 719854 . - . product=Lipase-related protein;transl_table=11;gbkey=CDS;protein_id=YP_002395236.1;Dbxref=Genbank:YP_002395236.1,GeneID:7138814;ID=cds630;Name=YP_002395236.1 +NC_011744 S-MART tRNA 720204 720874 . + . product=tRNA-Cys;nbElements=5.000000;gbkey=tRNA;Dbxref=GeneID:7138818;ID=rna13;Name=rna13--rna12--rna11--rna10--rna9 +NC_011744 S-MART CDS 720954 722141 . - . product=lipoprotein;transl_table=11;gbkey=CDS;protein_id=YP_002395237.1;Dbxref=Genbank:YP_002395237.1,GeneID:7138819;ID=cds631;Name=YP_002395237.1 +NC_011744 S-MART CDS 722348 724667 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395239.1;Dbxref=Genbank:YP_002395239.1,GeneID:7137949;ID=cds633;Name=YP_002395239.1--YP_002395238.1 +NC_011744 S-MART CDS 724495 730500 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395244.1;Dbxref=Genbank:YP_002395244.1,GeneID:7137954;ID=cds638;Name=YP_002395244.1--YP_002395243.1--YP_002395242.1--YP_002395241.1--YP_002395240.1 +NC_011744 S-MART CDS 730674 731138 . - . product=Azu1 pseudoazurin %28blue copper protein%29;transl_table=11;gbkey=CDS;protein_id=YP_002395245.1;Dbxref=Genbank:YP_002395245.1,GeneID:7137955;ID=cds639;Name=YP_002395245.1 +NC_011744 S-MART CDS 731582 732379 . + . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395246.1;Dbxref=Genbank:YP_002395246.1,GeneID:7137956;ID=cds640;Name=YP_002395246.1 +NC_011744 S-MART CDS 732547 734338 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395250.1;Dbxref=Genbank:YP_002395250.1,GeneID:7137960;ID=cds644;Name=YP_002395250.1--YP_002395249.1--YP_002395248.1--YP_002395247.1 +NC_011744 S-MART CDS 734620 734799 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395251.1;Dbxref=Genbank:YP_002395251.1,GeneID:7137961;ID=cds645;Name=YP_002395251.1 +NC_011744 S-MART CDS 735583 738480 . + . product=nitrite reductase small subunit;nbElements=2.000000;transl_table=11;Note=involved in reducing nitrite to ammonium to detoxify nitrite accumulation in anaerobic nitrate-respiring cells and regenerate NAD%2B%3B bounds to NirB%2C the cytoplasmic subunit%2C whose expression is induced at high nitrate concentrations;gbkey=CDS;protein_id=YP_002395253.1;Dbxref=Genbank:YP_002395253.1,GeneID:7137963;ID=cds647;Name=YP_002395253.1--YP_002395252.1 +NC_011744 S-MART CDS 738656 739471 . + . product=formate dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395254.1;Dbxref=Genbank:YP_002395254.1,GeneID:7137964;ID=cds648;Name=YP_002395254.1 +NC_011744 S-MART CDS 739788 740564 . + . product=uroporphyrin-III C-methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395255.1;Dbxref=Genbank:YP_002395255.1,GeneID:7137965;ID=cds649;Name=YP_002395255.1 +NC_011744 S-MART CDS 740597 741193 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395256.1;Dbxref=Genbank:YP_002395256.1,GeneID:7137966;ID=cds650;Name=YP_002395256.1 +NC_011744 S-MART CDS 741389 743990 . + . product=two-component system sensor kinase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395259.1;Dbxref=Genbank:YP_002395259.1,GeneID:7137969;ID=cds653;Name=YP_002395259.1--YP_002395258.1--YP_002395257.1 +NC_011744 S-MART CDS 744192 745496 . - . product=Na%2B%2FH%2B-dicarboxylate symporter;transl_table=11;gbkey=CDS;protein_id=YP_002395260.1;Dbxref=Genbank:YP_002395260.1,GeneID:7137970;ID=cds654;Name=YP_002395260.1 +NC_011744 S-MART CDS 746055 748184 . + . product=Ferrichrome-iron receptor;transl_table=11;gbkey=CDS;protein_id=YP_002395261.1;Dbxref=Genbank:YP_002395261.1,GeneID:7137971;ID=cds655;Name=YP_002395261.1 +NC_011744 S-MART CDS 748363 753282 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395267.1;Dbxref=Genbank:YP_002395267.1,GeneID:7137977;ID=cds661;Name=YP_002395267.1--YP_002395266.1--YP_002395265.1--YP_002395264.1--YP_002395263.1--YP_002395262.1 +NC_011744 S-MART CDS 753443 753760 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395268.1;Dbxref=Genbank:YP_002395268.1,GeneID:7137978;ID=cds662;Name=YP_002395268.1 +NC_011744 S-MART CDS 754129 760856 . + . product=metal ABC transporter substrate-binding protein;nbElements=9.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395277.1;Dbxref=Genbank:YP_002395277.1,GeneID:7137987;ID=cds671;Name=YP_002395277.1--YP_002395276.1--YP_002395275.1--YP_002395274.1--YP_002395273.1--YP_002395272.1--YP_0 +NC_011744 S-MART CDS 760983 761213 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395278.1;Dbxref=Genbank:YP_002395278.1,GeneID:7137988;ID=cds672;Name=YP_002395278.1 +NC_011744 S-MART CDS 761311 762224 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395280.1;Dbxref=Genbank:YP_002395280.1,GeneID:7137990;ID=cds674;Name=YP_002395280.1--YP_002395279.1 +NC_011744 S-MART CDS 762344 763741 . - . product=Na%2B-driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395281.1;Dbxref=Genbank:YP_002395281.1,GeneID:7137991;ID=cds675;Name=YP_002395281.1 +NC_011744 S-MART CDS 763792 765180 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395283.1;Dbxref=Genbank:YP_002395283.1,GeneID:7137993;ID=cds677;Name=YP_002395283.1--YP_002395282.1 +NC_011744 S-MART CDS 765352 765687 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395284.1;Dbxref=Genbank:YP_002395284.1,GeneID:7137994;ID=cds678;Name=YP_002395284.1 +NC_011744 S-MART CDS 765840 766991 . - . product=permease;transl_table=11;gbkey=CDS;protein_id=YP_002395285.1;Dbxref=Genbank:YP_002395285.1,GeneID:7137995;ID=cds679;Name=YP_002395285.1 +NC_011744 S-MART CDS 766991 767272 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395286.1;Dbxref=Genbank:YP_002395286.1,GeneID:7137996;ID=cds680;Name=YP_002395286.1 +NC_011744 S-MART CDS 767430 769079 . + . product=choline dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395287.1;Dbxref=Genbank:YP_002395287.1,GeneID:7137997;ID=cds681;Name=YP_002395287.1 +NC_011744 S-MART CDS 769225 769659 . - . product=thioredoxin;transl_table=11;gbkey=CDS;protein_id=YP_002395288.1;Dbxref=Genbank:YP_002395288.1,GeneID:7137998;ID=cds682;Name=YP_002395288.1 +NC_011744 S-MART CDS 769782 772232 . + . product=glycosyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395290.1;Dbxref=Genbank:YP_002395290.1,GeneID:7138000;ID=cds684;Name=YP_002395290.1--YP_002395289.1 +NC_011744 S-MART CDS 772433 773340 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395292.1;Dbxref=Genbank:YP_002395292.1,GeneID:7138002;ID=cds686;Name=YP_002395292.1--YP_002395291.1 +NC_011744 S-MART CDS 773488 774363 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395293.1;Dbxref=Genbank:YP_002395293.1,GeneID:7138003;ID=cds687;Name=YP_002395293.1 +NC_011744 S-MART CDS 774662 776785 . + . product=anaerobic ribonucleoside triphosphate reductase;nbElements=2.000000;transl_table=11;Note=Catalyzes the reduction of nucleoside 5%27-triphosphates to 2%27-deoxynucleoside 5%27-triphosphates;gbkey=CDS;protein_id=YP_002395295.1;Dbxref=Genbank:YP_002395295.1,GeneID:7138005;ID=cds689;Name=YP_002395295.1--YP_002395294.2 +NC_011744 S-MART CDS 776941 777411 . + . product=anaerobic ribonucleotide reductase-activating protein;transl_table=11;Note=activates anaerobic ribonucleoside-triphosphate reductase under anaerobic conditions;gbkey=CDS;protein_id=YP_002395296.1;Dbxref=Genbank:YP_002395296.1,GeneID:7138826;ID=cds690;Name=YP_002395296.1 +NC_011744 S-MART CDS 777526 778953 . - . product=Na%2B-driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395297.1;Dbxref=Genbank:YP_002395297.1,GeneID:7138006;ID=cds691;Name=YP_002395297.1 +NC_011744 S-MART CDS 779044 779883 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395298.1;Dbxref=Genbank:YP_002395298.1,GeneID:7138007;ID=cds692;Name=YP_002395298.1 +NC_011744 S-MART CDS 780127 782018 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395300.1;Dbxref=Genbank:YP_002395300.1,GeneID:7138009;ID=cds694;Name=YP_002395300.1--YP_002395299.1 +NC_011744 S-MART CDS 782335 783918 . + . product=ABC transporter ATP-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395301.1;Dbxref=Genbank:YP_002395301.1,GeneID:7138010;ID=cds695;Name=YP_002395301.1 +NC_011744 S-MART CDS 784159 786045 . - . product=methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395302.1;Dbxref=Genbank:YP_002395302.1,GeneID:7138011;ID=cds696;Name=YP_002395302.1 +NC_011744 S-MART CDS 786336 787386 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395304.1;Dbxref=Genbank:YP_002395304.1,GeneID:7138013;ID=cds698;Name=YP_002395304.1--YP_002395303.1 +NC_011744 S-MART CDS 787649 791742 . + . product=molybdate transporter ATP-binding protein;nbElements=4.000000;transl_table=11;Note=Part of the ABC transporter complex modABC involved in molybdenum import;gbkey=CDS;protein_id=YP_002395308.1;Dbxref=Genbank:YP_002395308.1,GeneID:7138017;ID=cds702;Name=YP_002395308.1--YP_002395307.1--YP_002395306.1--YP_002395305.1 +NC_011744 S-MART CDS 792189 792626 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395309.1;Dbxref=Genbank:YP_002395309.1,GeneID:7138018;ID=cds703;Name=YP_002395309.1 +NC_011744 S-MART CDS 792758 794817 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395311.1;Dbxref=Genbank:YP_002395311.1,GeneID:7138020;ID=cds705;Name=YP_002395311.1--YP_002395310.1 +NC_011744 S-MART CDS 794897 796138 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395312.1;Dbxref=Genbank:YP_002395312.1,GeneID:7138021;ID=cds706;Name=YP_002395312.1 +NC_011744 S-MART CDS 796531 797219 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395314.1;Dbxref=Genbank:YP_002395314.1,GeneID:7138023;ID=cds708;Name=YP_002395314.1--YP_002395313.1 +NC_011744 S-MART CDS 797519 800474 . + . product=pyridine nucleotide transhydrogenase;nbElements=2.000000;transl_table=11;Note=catalyzes reversible transfer of hydride ion equivalent between NAD and NADP%3B membrane-bound proton pump that translocates protons from cytosolic to periplasmic side of the inner membrane%3B forms a tetramer composed of two alpha and 2 beta subunits%3B AB-stereospecific enzyme;gbkey=CDS;protein_id=YP_002395316.1;Dbxref=Genbank:YP_002395316.1,GeneID:7138025;ID=cds710;Name=YP_002395316.1--YP_002395315.1 +NC_011744 S-MART CDS 800590 800664 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395317.1;Dbxref=Genbank:YP_002395317.1,GeneID:7138026;ID=cds711;Name=YP_002395317.1 +NC_011744 S-MART CDS 800800 805192 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395322.1;Dbxref=Genbank:YP_002395322.1,GeneID:7138031;ID=cds716;Name=YP_002395322.1--YP_002395321.1--YP_002395320.1--YP_002395319.1--YP_002395318.1 +NC_011744 S-MART CDS 805664 805798 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395323.1;Dbxref=Genbank:YP_002395323.1,GeneID:7138032;ID=cds717;Name=YP_002395323.1 +NC_011744 S-MART CDS 805957 807273 . - . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395324.1;Dbxref=Genbank:YP_002395324.1,GeneID:7138033;ID=cds718;Name=YP_002395324.1 +NC_011744 S-MART CDS 807681 808154 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395325.1;Dbxref=Genbank:YP_002395325.1,GeneID:7138034;ID=cds719;Name=YP_002395325.1 +NC_011744 S-MART CDS 808421 809114 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395327.1;Dbxref=Genbank:YP_002395327.1,GeneID:7138036;ID=cds721;Name=YP_002395327.1--YP_002395326.1 +NC_011744 S-MART CDS 809209 810177 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395328.1;Dbxref=Genbank:YP_002395328.1,GeneID:7138037;ID=cds722;Name=YP_002395328.1 +NC_011744 S-MART CDS 810377 811372 . - . product=D-alanyl-alanine synthetase A;transl_table=11;Note=D-alanine--D-alanine ligase%3B DdlA%3B DdlB%3B cytoplasmic%3B catalyzes the formation of D-alanyl-D-alanine from two D-alanines in peptidoglycan synthesis%3B there are two forms of this enzyme in Escherichia coli;gbkey=CDS;protein_id=YP_002395329.1;Dbxref=Genbank:YP_002395329.1,GeneID:7138038;ID=cds723;Name=YP_002395329.1 +NC_011744 S-MART CDS 811552 812115 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395330.1;Dbxref=Genbank:YP_002395330.1,GeneID:7138039;ID=cds724;Name=YP_002395330.1 +NC_011744 S-MART CDS 812332 815013 . + . product=acyl-CoA synthetase;transl_table=11;gbkey=CDS;protein_id=YP_002395331.1;Dbxref=Genbank:YP_002395331.1,GeneID:7138040;ID=cds725;Name=YP_002395331.1 +NC_011744 S-MART CDS 815005 815892 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395332.1;Dbxref=Genbank:YP_002395332.1,GeneID:7138041;ID=cds726;Name=YP_002395332.1 +NC_011744 S-MART CDS 815945 818255 . + . product=heme receptor;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395334.1;Dbxref=Genbank:YP_002395334.1,GeneID:7138043;ID=cds728;Name=YP_002395334.1--YP_002395333.1 +NC_011744 S-MART CDS 818680 819693 . - . product=UDP-glucose 4-epimerase;transl_table=11;gbkey=CDS;protein_id=YP_002395335.1;Dbxref=Genbank:YP_002395335.1,GeneID:7138044;ID=cds729;Name=YP_002395335.1 +NC_011744 S-MART CDS 820183 820896 . + . product=LamB%2FYcsF family protein;transl_table=11;gbkey=CDS;protein_id=YP_002395336.1;Dbxref=Genbank:YP_002395336.1,GeneID:7138045;ID=cds730;Name=YP_002395336.1 +NC_011744 S-MART CDS 821073 822780 . + . product=Allophanate hydrolase subunit 2;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395338.1;Dbxref=Genbank:YP_002395338.1,GeneID:7138047;ID=cds732;Name=YP_002395338.1--YP_002395337.1 +NC_011744 S-MART CDS 822927 824381 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395339.1;Dbxref=Genbank:YP_002395339.1,GeneID:7138048;ID=cds733;Name=YP_002395339.1 +NC_011744 S-MART CDS 824914 828028 . - . product=ABC transporter ATP-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395341.1;Dbxref=Genbank:YP_002395341.1,GeneID:7138050;ID=cds735;Name=YP_002395341.1--YP_002395340.1 +NC_011744 S-MART CDS 828027 829925 . + . product=trans-2-enoyl-CoA reductase;nbElements=2.000000;transl_table=11;Note=enzyme from Treponema denticola exhibits NADH-dependent trans-2-enoyl-CoA reductase activity;gbkey=CDS;protein_id=YP_002395343.1;Dbxref=Genbank:YP_002395343.1,GeneID:7138052;ID=cds737;Name=YP_002395343.1--YP_002395342.1 +NC_011744 S-MART CDS 830104 833803 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395345.1;Dbxref=Genbank:YP_002395345.1,GeneID:7138054;ID=cds739;Name=YP_002395345.1--YP_002395344.1 +NC_011744 S-MART CDS 834047 835945 . + . product=cell division protein FtsI;transl_table=11;gbkey=CDS;protein_id=YP_002395346.1;Dbxref=Genbank:YP_002395346.1,GeneID:7138055;ID=cds740;Name=YP_002395346.1 +NC_011744 S-MART CDS 836127 836747 . - . product=molecular chaperone DnaJ;transl_table=11;gbkey=CDS;protein_id=YP_002395347.1;Dbxref=Genbank:YP_002395347.1,GeneID:7138056;ID=cds741;Name=YP_002395347.1 +NC_011744 S-MART CDS 837055 837927 . - . product=isopenicillin N synthase;transl_table=11;gbkey=CDS;protein_id=YP_002395348.1;Dbxref=Genbank:YP_002395348.1,GeneID:7138057;ID=cds742;Name=YP_002395348.1 +NC_011744 S-MART CDS 838091 838702 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395349.1;Dbxref=Genbank:YP_002395349.1,GeneID:7138058;ID=cds743;Name=YP_002395349.1 +NC_011744 S-MART CDS 839056 841686 . - . product=ABC transporter substrate-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395351.1;Dbxref=Genbank:YP_002395351.1,GeneID:7138060;ID=cds745;Name=YP_002395351.1--YP_002395350.1 +NC_011744 S-MART CDS 841841 842573 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395353.1;Dbxref=Genbank:YP_002395353.1,GeneID:7138062;ID=cds747;Name=YP_002395353.1--YP_002395352.1 +NC_011744 S-MART CDS 842758 843546 . + . product=peptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395354.1;Dbxref=Genbank:YP_002395354.1,GeneID:7138063;ID=cds748;Name=YP_002395354.1 +NC_011744 S-MART CDS 843630 844736 . - . product=M50 family membrane-associated zinc metalloprotease;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395355.1;Dbxref=Genbank:YP_002395355.1,GeneID:7138064;ID=cds749;Name=YP_002395355.1 +NC_011744 S-MART CDS 845070 848778 . + . product=lipase;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395357.1;Dbxref=Genbank:YP_002395357.1,GeneID:7138066;ID=cds751;Name=YP_002395357.1--YP_002395356.1 +NC_011744 S-MART CDS 848999 849556 . + . product=alkylphosphonate uptake protein;transl_table=11;gbkey=CDS;protein_id=YP_002395358.1;Dbxref=Genbank:YP_002395358.1,GeneID:7138067;ID=cds752;Name=YP_002395358.1 +NC_011744 S-MART CDS 849634 851842 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395360.1;Dbxref=Genbank:YP_002395360.1,GeneID:7138069;ID=cds754;Name=YP_002395360.1--YP_002395359.1 +NC_011744 S-MART CDS 852000 852188 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395361.1;Dbxref=Genbank:YP_002395361.1,GeneID:7138070;ID=cds755;Name=YP_002395361.1 +NC_011744 S-MART ncRNA 852502 853701 . - . product=yybP-ykoY riboswitch;nbElements=2.000000;ncrna_class=other;gbkey=ncRNA;Dbxref=GeneID:7138072;ID=rna14;Name=rna14--YP_002395362.1 +NC_011744 S-MART CDS 853914 855859 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395365.1;Dbxref=Genbank:YP_002395365.1,GeneID:7138074;ID=cds759;Name=YP_002395365.1--YP_002395364.1--YP_002395363.1 +NC_011744 S-MART CDS 856098 857870 . + . product=ATP-dependent endonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395366.1;Dbxref=Genbank:YP_002395366.1,GeneID:7138075;ID=cds760;Name=YP_002395366.1 +NC_011744 S-MART CDS 858049 858543 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395367.1;Dbxref=Genbank:YP_002395367.1,GeneID:7138076;ID=cds761;Name=YP_002395367.1 +NC_011744 S-MART CDS 859011 859916 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395368.1;Dbxref=Genbank:YP_002395368.1,GeneID:7138077;ID=cds762;Name=YP_002395368.1 +NC_011744 S-MART CDS 860190 861641 . + . product=formate transporter 1;transl_table=11;gbkey=CDS;protein_id=YP_002395369.1;Dbxref=Genbank:YP_002395369.1,GeneID:7138078;ID=cds763;Name=YP_002395369.1 +NC_011744 S-MART CDS 861979 863086 . - . product=cytochrome b561;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395372.1;Dbxref=Genbank:YP_002395372.1,GeneID:7138081;ID=cds766;Name=YP_002395372.1--YP_002395371.1--YP_002395370.1 +NC_011744 S-MART CDS 863271 863528 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395373.1;Dbxref=Genbank:YP_002395373.1,GeneID:7138082;ID=cds767;Name=YP_002395373.1 +NC_011744 S-MART CDS 863806 864733 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395375.1;Dbxref=Genbank:YP_002395375.1,GeneID:7138084;ID=cds769;Name=YP_002395375.1--YP_002395374.1 +NC_011744 S-MART CDS 864958 865749 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395376.1;Dbxref=Genbank:YP_002395376.1,GeneID:7138085;ID=cds770;Name=YP_002395376.1 +NC_011744 S-MART CDS 865987 871186 . - . product=membrane-fusion protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395379.1;Dbxref=Genbank:YP_002395379.1,GeneID:7138088;ID=cds773;Name=YP_002395379.1--YP_002395378.1--YP_002395377.1 +NC_011744 S-MART CDS 871342 872067 . + . product=transcriptional regulator%2C TetR family;transl_table=11;gbkey=CDS;protein_id=YP_002395380.1;Dbxref=Genbank:YP_002395380.1,GeneID:7138089;ID=cds774;Name=YP_002395380.1 +NC_011744 S-MART CDS 872230 874170 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395382.1;Dbxref=Genbank:YP_002395382.1,GeneID:7138091;ID=cds776;Name=YP_002395382.1--YP_002395381.1 +NC_011744 S-MART CDS 874365 874523 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395383.1;Dbxref=Genbank:YP_002395383.1,GeneID:7138092;ID=cds777;Name=YP_002395383.1 +NC_011744 S-MART CDS 874940 877736 . + . product=methyl-accepting chemotaxis protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395385.1;Dbxref=Genbank:YP_002395385.1,GeneID:7138094;ID=cds779;Name=YP_002395385.1--YP_002395384.1 +NC_011744 S-MART CDS 878165 878944 . - . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395386.1;Dbxref=Genbank:YP_002395386.1,GeneID:7138095;ID=cds780;Name=YP_002395386.1 +NC_011744 S-MART CDS 879102 881495 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395388.1;Dbxref=Genbank:YP_002395388.1,GeneID:7138097;ID=cds782;Name=YP_002395388.1--YP_002395387.1 +NC_011744 S-MART CDS 881714 883638 . + . product=inosine-guanosine kinase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395390.1;Dbxref=Genbank:YP_002395390.1,GeneID:7138099;ID=cds784;Name=YP_002395390.1--YP_002395389.1 +NC_011744 S-MART CDS 883933 885681 . + . product=formate--tetrahydrofolate ligase;transl_table=11;Note=catalyzes the formation of 10-formyltetrahydrofolate from formate and tetrahydrofolate;gbkey=CDS;protein_id=YP_002395391.1;Dbxref=Genbank:YP_002395391.1,GeneID:7138100;ID=cds785;Name=YP_002395391.1 +NC_011744 S-MART CDS 885922 887826 . + . product=Similar to sensory box%2FGGDEF family protein;transl_table=11;gbkey=CDS;protein_id=YP_002395392.1;Dbxref=Genbank:YP_002395392.1,GeneID:7138101;ID=cds786;Name=YP_002395392.1 +NC_011744 S-MART CDS 887895 888512 . - . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395393.1;Dbxref=Genbank:YP_002395393.1,GeneID:7138102;ID=cds787;Name=YP_002395393.1 +NC_011744 S-MART CDS 888588 888998 . + . product=Similar to Protein chain release factor B;transl_table=11;gbkey=CDS;protein_id=YP_002395394.1;Dbxref=Genbank:YP_002395394.1,GeneID:7138103;ID=cds788;Name=YP_002395394.1 +NC_011744 S-MART CDS 889175 889498 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395395.1;Dbxref=Genbank:YP_002395395.1,GeneID:7138104;ID=cds789;Name=YP_002395395.1 +NC_011744 S-MART CDS 889691 890029 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395396.1;Dbxref=Genbank:YP_002395396.1,GeneID:7138105;ID=cds790;Name=YP_002395396.1 +NC_011744 S-MART CDS 890115 891200 . - . product=SI family secreted trypsin-like serine protease;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395397.1;Dbxref=Genbank:YP_002395397.1,GeneID:7138106;ID=cds791;Name=YP_002395397.1 +NC_011744 S-MART CDS 891515 892681 . - . product=glycine cleavage system T protein;transl_table=11;gbkey=CDS;protein_id=YP_002395398.1;Dbxref=Genbank:YP_002395398.1,GeneID:7138107;ID=cds792;Name=YP_002395398.1 +NC_011744 S-MART CDS 893119 893742 . - . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395399.1;Dbxref=Genbank:YP_002395399.1,GeneID:7138108;ID=cds793;Name=YP_002395399.1 +NC_011744 S-MART CDS 894183 898887 . + . product=glycine dehydrogenase;nbElements=3.000000;transl_table=11;Note=acts in conjunction with GvcH to form H-protein-S-aminomethyldihydrolipoyllysine from glycine;gbkey=CDS;protein_id=YP_002395402.1;Dbxref=Genbank:YP_002395402.1,GeneID:7138111;ID=cds796;Name=YP_002395402.1--YP_002395401.1--YP_002395400.1 +NC_011744 S-MART CDS 899061 900308 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395404.1;Dbxref=Genbank:YP_002395404.1,GeneID:7138113;ID=cds798;Name=YP_002395404.1--YP_002395403.1 +NC_011744 S-MART CDS 900811 902702 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395408.1;Dbxref=Genbank:YP_002395408.1,GeneID:7138117;ID=cds802;Name=YP_002395408.1--YP_002395407.1--YP_002395406.1--YP_002395405.1 +NC_011744 S-MART CDS 902823 903977 . + . product=transposase of insertion element ISVisp2 %3B IS110 family%2C subgroup IS1111;transl_table=11;Note=Evidence 2b : Function of strongly homologous gene%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002395409.1;Dbxref=Genbank:YP_002395409.1,GeneID:7138118;ID=cds803;Name=YP_002395409.1 +NC_011744 S-MART CDS 904385 904729 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395410.1;Dbxref=Genbank:YP_002395410.1,GeneID:7138119;ID=cds804;Name=YP_002395410.1 +NC_011744 S-MART CDS 904904 905320 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395411.1;Dbxref=Genbank:YP_002395411.1,GeneID:7138120;ID=cds805;Name=YP_002395411.1 +NC_011744 S-MART CDS 905548 905715 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395412.1;Dbxref=Genbank:YP_002395412.1,GeneID:7138121;ID=cds806;Name=YP_002395412.1 +NC_011744 S-MART CDS 905907 906257 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395413.1;Dbxref=Genbank:YP_002395413.1,GeneID:7138122;ID=cds807;Name=YP_002395413.1 +NC_011744 S-MART CDS 906613 908214 . - . product=ABC transporter ATP-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395414.1;Dbxref=Genbank:YP_002395414.1,GeneID:7138123;ID=cds808;Name=YP_002395414.1 +NC_011744 S-MART CDS 908638 910020 . + . product=multidrug resistance protein;transl_table=11;gbkey=CDS;protein_id=YP_002395415.1;Dbxref=Genbank:YP_002395415.1,GeneID:7138124;ID=cds809;Name=YP_002395415.1 +NC_011744 S-MART CDS 910131 911902 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395418.1;Dbxref=Genbank:YP_002395418.1,GeneID:7138127;ID=cds812;Name=YP_002395418.1--YP_002395417.1--YP_002395416.1 +NC_011744 S-MART CDS 912255 913226 . - . product=Lactoylglutathione lyase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395420.1;Dbxref=Genbank:YP_002395420.1,GeneID:7138129;ID=cds814;Name=YP_002395420.1--YP_002395419.1 +NC_011744 S-MART CDS 913393 914454 . - . product=tryptophanyl-tRNA synthetase;transl_table=11;Note=catalyzes a two-step reaction%2C first charging a tryptophan molecule by linking its carboxyl group to the alpha-phosphate of ATP%2C followed by transfer of the aminoacyl-adenylate to its tRNA;gbkey=CDS;protein_id=YP_002395421.1;Dbxref=Genbank:YP_002395421.1,GeneID:7138130;ID=cds815;Name=YP_002395421.1 +NC_011744 S-MART CDS 914705 915505 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395422.1;Dbxref=Genbank:YP_002395422.1,GeneID:7138131;ID=cds816;Name=YP_002395422.1 +NC_011744 S-MART CDS 915759 918681 . - . product=phospholipid-binding protein;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B Product type h : extrachromosomal origin;gbkey=CDS;protein_id=YP_002395425.1;Dbxref=Genbank:YP_002395425.1,GeneID:7138134;ID=cds819;Name=YP_002395425.1--YP_002395424.1--YP_002395423.1 +NC_011744 S-MART CDS 918880 924210 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395429.1;Dbxref=Genbank:YP_002395429.1,GeneID:7138138;ID=cds823;Name=YP_002395429.1--YP_002395428.1--YP_002395427.1--YP_002395426.1 +NC_011744 S-MART CDS 924279 925181 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395430.1;Dbxref=Genbank:YP_002395430.1,GeneID:7138139;ID=cds824;Name=YP_002395430.1 +NC_011744 S-MART CDS 925309 927927 . + . product=Multidrug resistance protein B;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395432.1;Dbxref=Genbank:YP_002395432.1,GeneID:7138141;ID=cds826;Name=YP_002395432.1--YP_002395431.1 +NC_011744 S-MART CDS 928216 930131 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395434.1;Dbxref=Genbank:YP_002395434.1,GeneID:7138143;ID=cds828;Name=YP_002395434.1--YP_002395433.1 +NC_011744 S-MART CDS 930526 931422 . + . product=RpoS-like sigma factor;transl_table=11;gbkey=CDS;protein_id=YP_002395435.1;Dbxref=Genbank:YP_002395435.1,GeneID:7138144;ID=cds829;Name=YP_002395435.1 +NC_011744 S-MART CDS 931608 931961 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395436.1;Dbxref=Genbank:YP_002395436.1,GeneID:7138145;ID=cds830;Name=YP_002395436.1 +NC_011744 S-MART CDS 932163 952555 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395438.1;Dbxref=Genbank:YP_002395438.1,GeneID:7138147;ID=cds832;Name=YP_002395438.1--YP_002395437.1 +NC_011744 S-MART CDS 952752 962294 . + . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395445.1;Dbxref=Genbank:YP_002395445.1,GeneID:7138154;ID=cds839;Name=YP_002395445.1--YP_002395444.1--YP_002395443.1--YP_002395442.1--YP_002395441.1--YP_002395440.1--YP_0 +NC_011744 S-MART CDS 962510 967253 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395448.1;Dbxref=Genbank:YP_002395448.1,GeneID:7138157;ID=cds842;Name=YP_002395448.1--YP_002395447.1--YP_002395446.1 +NC_011744 S-MART CDS 967368 969845 . - . product=arylsulfatase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395450.1;Dbxref=Genbank:YP_002395450.1,GeneID:7138159;ID=cds844;Name=YP_002395450.1--YP_002395449.1 +NC_011744 S-MART CDS 969982 970770 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395451.1;Dbxref=Genbank:YP_002395451.1,GeneID:7138160;ID=cds845;Name=YP_002395451.1 +NC_011744 S-MART CDS 970950 972632 . + . product=alkaline phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002395452.1;Dbxref=Genbank:YP_002395452.1,GeneID:7138161;ID=cds846;Name=YP_002395452.1 +NC_011744 S-MART CDS 972837 980475 . - . product=MoxR-like ATPase;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395459.1;Dbxref=Genbank:YP_002395459.1,GeneID:7138168;ID=cds853;Name=YP_002395459.1--YP_002395458.1--YP_002395457.1--YP_002395456.1--YP_002395455.1--YP_002395454.1--YP_0 +NC_011744 S-MART CDS 980660 983047 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395460.1;Dbxref=Genbank:YP_002395460.1,GeneID:7138169;ID=cds854;Name=YP_002395460.1 +NC_011744 S-MART CDS 983239 984813 . - . product=arylsulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002395461.1;Dbxref=Genbank:YP_002395461.1,GeneID:7138170;ID=cds855;Name=YP_002395461.1 +NC_011744 S-MART CDS 985133 986695 . + . product=arylsulfatase;transl_table=11;gbkey=CDS;protein_id=YP_002395462.1;Dbxref=Genbank:YP_002395462.1,GeneID:7138171;ID=cds856;Name=YP_002395462.1 +NC_011744 S-MART CDS 986985 987638 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395463.1;Dbxref=Genbank:YP_002395463.1,GeneID:7138172;ID=cds857;Name=YP_002395463.1 +NC_011744 S-MART CDS 987744 988238 . - . product=GCN5-related N-acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395464.1;Dbxref=Genbank:YP_002395464.1,GeneID:7138173;ID=cds858;Name=YP_002395464.1 +NC_011744 S-MART CDS 988720 989217 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395465.1;Dbxref=Genbank:YP_002395465.1,GeneID:7138174;ID=cds859;Name=YP_002395465.1 +NC_011744 S-MART CDS 989343 991730 . - . product=epimerase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395469.1;Dbxref=Genbank:YP_002395469.1,GeneID:7138178;ID=cds863;Name=YP_002395469.1--YP_002395468.1--YP_002395467.1--YP_002395466.1 +NC_011744 S-MART CDS 991952 992602 . - . product=transporter%2C LysE family;transl_table=11;gbkey=CDS;protein_id=YP_002395470.1;Dbxref=Genbank:YP_002395470.1,GeneID:7138179;ID=cds864;Name=YP_002395470.1 +NC_011744 S-MART CDS 992973 996440 . + . product=transduction protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395472.1;Dbxref=Genbank:YP_002395472.1,GeneID:7138181;ID=cds866;Name=YP_002395472.1--YP_002395471.1 +NC_011744 S-MART CDS 996495 997997 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395474.1;Dbxref=Genbank:YP_002395474.1,GeneID:7138183;ID=cds868;Name=YP_002395474.1--YP_002395473.1 +NC_011744 S-MART CDS 998364 1000814 . + . product=Cbb3-type cytochrome oxidase%2C cytochrome c subunit;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395477.1;Dbxref=Genbank:YP_002395477.1,GeneID:7138186;ID=cds871;Name=YP_002395477.1--YP_002395476.1--YP_002395475.1 +NC_011744 S-MART CDS 1001606 1002967 . + . product=cytochrome c%2C class I;transl_table=11;gbkey=CDS;protein_id=YP_002395478.1;Dbxref=Genbank:YP_002395478.1,GeneID:7138187;ID=cds872;Name=YP_002395478.1 +NC_011744 S-MART CDS 1003230 1003457 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395479.1;Dbxref=Genbank:YP_002395479.1,GeneID:7138188;ID=cds873;Name=YP_002395479.1 +NC_011744 S-MART CDS 1003721 1003903 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395480.1;Dbxref=Genbank:YP_002395480.1,GeneID:7138189;ID=cds874;Name=YP_002395480.1 +NC_011744 S-MART CDS 1004107 1005399 . - . product=prolyl aminopeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395481.1;Dbxref=Genbank:YP_002395481.1,GeneID:7138190;ID=cds875;Name=YP_002395481.1 +NC_011744 S-MART CDS 1005763 1008308 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395483.1;Dbxref=Genbank:YP_002395483.1,GeneID:7138192;ID=cds877;Name=YP_002395483.1--YP_002395482.1 +NC_011744 S-MART CDS 1008571 1010178 . - . product=glycine betaine transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395484.1;Dbxref=Genbank:YP_002395484.1,GeneID:7138193;ID=cds878;Name=YP_002395484.1 +NC_011744 S-MART CDS 1010410 1011411 . - . product=dipeptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395485.1;Dbxref=Genbank:YP_002395485.1,GeneID:7138194;ID=cds879;Name=YP_002395485.1 +NC_011744 S-MART CDS 1011616 1013079 . - . product=aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395486.1;Dbxref=Genbank:YP_002395486.1,GeneID:7138195;ID=cds880;Name=YP_002395486.1 +NC_011744 S-MART CDS 1013276 1013686 . - . product=endoribonuclease;transl_table=11;gbkey=CDS;protein_id=YP_002395487.1;Dbxref=Genbank:YP_002395487.1,GeneID:7138196;ID=cds881;Name=YP_002395487.1 +NC_011744 S-MART CDS 1013832 1014713 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395488.1;Dbxref=Genbank:YP_002395488.1,GeneID:7138197;ID=cds882;Name=YP_002395488.1 +NC_011744 S-MART CDS 1015526 1022425 . + . product=ATP synthase F0F1 subunit epsilon;nbElements=9.000000;transl_table=11;Note=part of catalytic core of ATP synthase%3B alpha%283%29beta%283%29gamma%281%29delta%281%29epsilon%281%29%3B involved in producing ATP from ADP in the presence of the proton motive force across the membrane;gbkey=CDS;protein_id=YP_002395497.1;Dbxref=Genbank:YP_002395497.1,GeneID:7138206;ID=cds891;Name=YP_002395497.1--YP_002395496.1--YP_002395495.1--YP_002395494.1--YP_002395493.1--YP_002395492.1--YP_0 +NC_011744 S-MART CDS 1022610 1023158 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395498.1;Dbxref=Genbank:YP_002395498.1,GeneID:7138207;ID=cds892;Name=YP_002395498.1 +NC_011744 S-MART CDS 1023422 1024201 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395499.1;Dbxref=Genbank:YP_002395499.1,GeneID:7138208;ID=cds893;Name=YP_002395499.1 +NC_011744 S-MART CDS 1024400 1030193 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395502.1;Dbxref=Genbank:YP_002395502.1,GeneID:7138211;ID=cds896;Name=YP_002395502.1--YP_002395501.1--YP_002395500.1 +NC_011744 S-MART CDS 1030452 1035558 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395508.1;Dbxref=Genbank:YP_002395508.1,GeneID:7138217;ID=cds902;Name=YP_002395508.1--YP_002395507.1--YP_002395506.1--YP_002395505.1--YP_002395504.1--YP_002395503.1 +NC_011744 S-MART CDS 1035708 1036604 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395509.1;Dbxref=Genbank:YP_002395509.1,GeneID:7138218;ID=cds903;Name=YP_002395509.1 +NC_011744 S-MART CDS 1036962 1038869 . + . product=metal-dependent hydrolases;transl_table=11;gbkey=CDS;protein_id=YP_002395510.1;Dbxref=Genbank:YP_002395510.1,GeneID:7138219;ID=cds904;Name=YP_002395510.1 +NC_011744 S-MART CDS 1039828 1041511 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395512.1;Dbxref=Genbank:YP_002395512.1,GeneID:7138221;ID=cds906;Name=YP_002395512.1--YP_002395511.1 +NC_011744 S-MART CDS 1041608 1047317 . - . product=ABC transporter substrate-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395516.1;Dbxref=Genbank:YP_002395516.1,GeneID:7138225;ID=cds910;Name=YP_002395516.1--YP_002395515.1--YP_002395514.1--YP_002395513.1 +NC_011744 S-MART CDS 1047710 1048753 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395517.1;Dbxref=Genbank:YP_002395517.1,GeneID:7138226;ID=cds911;Name=YP_002395517.1 +NC_011744 S-MART CDS 1048904 1049539 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395518.1;Dbxref=Genbank:YP_002395518.1,GeneID:7138227;ID=cds912;Name=YP_002395518.1 +NC_011744 S-MART CDS 1049932 1050246 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395519.1;Dbxref=Genbank:YP_002395519.1,GeneID:7138228;ID=cds913;Name=YP_002395519.1 +NC_011744 S-MART CDS 1050478 1053537 . + . product=ribose ABC transporter permease;nbElements=3.000000;transl_table=11;Note=functions to transport ribose at high affinity%3B forms a complex with RbsA2C2B;gbkey=CDS;protein_id=YP_002395522.1;Dbxref=Genbank:YP_002395522.1,GeneID:7138231;ID=cds916;Name=YP_002395522.1--YP_002395521.1--YP_002395520.1 +NC_011744 S-MART CDS 1053711 1054589 . + . product=D-ribose transporter subunit RbsB;transl_table=11;Note=periplasmic substrate-binding component of the ATP-dependent ribose transport system;gbkey=CDS;protein_id=YP_002395523.1;Dbxref=Genbank:YP_002395523.1,GeneID:7138232;ID=cds917;Name=YP_002395523.1 +NC_011744 S-MART CDS 1054798 1055724 . + . product=ribokinase;transl_table=11;Note=catalyzes the formation of D-ribose 5-phosphate from ribose;gbkey=CDS;protein_id=YP_002395524.1;Dbxref=Genbank:YP_002395524.1,GeneID:7138233;ID=cds918;Name=YP_002395524.1 +NC_011744 S-MART CDS 1055877 1056878 . + . product=Ribose operon repressor;transl_table=11;gbkey=CDS;protein_id=YP_002395525.1;Dbxref=Genbank:YP_002395525.1,GeneID:7138234;ID=cds919;Name=YP_002395525.1 +NC_011744 S-MART CDS 1057002 1057667 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395526.1;Dbxref=Genbank:YP_002395526.1,GeneID:7138235;ID=cds920;Name=YP_002395526.1 +NC_011744 S-MART CDS 1057917 1059515 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395527.1;Dbxref=Genbank:YP_002395527.1,GeneID:7138236;ID=cds921;Name=YP_002395527.1 +NC_011744 S-MART CDS 1059596 1061010 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395529.1;Dbxref=Genbank:YP_002395529.1,GeneID:7138238;ID=cds923;Name=YP_002395529.1--YP_002395528.1 +NC_011744 S-MART CDS 1061438 1061875 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395530.1;Dbxref=Genbank:YP_002395530.1,GeneID:7138239;ID=cds924;Name=YP_002395530.1 +NC_011744 S-MART CDS 1062286 1062711 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395531.1;Dbxref=Genbank:YP_002395531.1,GeneID:7138240;ID=cds925;Name=YP_002395531.1 +NC_011744 S-MART CDS 1062792 1062935 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395532.1;Dbxref=Genbank:YP_002395532.1,GeneID:7138241;ID=cds926;Name=YP_002395532.1 +NC_011744 S-MART CDS 1063028 1064630 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395534.1;Dbxref=Genbank:YP_002395534.1,GeneID:7138243;ID=cds928;Name=YP_002395534.1--YP_002395533.1 +NC_011744 S-MART CDS 1064838 1068624 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395538.1;Dbxref=Genbank:YP_002395538.1,GeneID:7138247;ID=cds932;Name=YP_002395538.1--YP_002395537.1--YP_002395536.1--YP_002395535.1 +NC_011744 S-MART CDS 1068805 1075006 . - . product=hypothetical protein;nbElements=10.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395548.1;Dbxref=Genbank:YP_002395548.1,GeneID:7138257;ID=cds942;Name=YP_002395548.1--YP_002395547.1--YP_002395546.1--YP_002395545.1--YP_002395544.1--YP_002395543.1--YP_0 +NC_011744 S-MART CDS 1075189 1078353 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395552.1;Dbxref=Genbank:YP_002395552.1,GeneID:7138261;ID=cds946;Name=YP_002395552.1--YP_002395551.1--YP_002395550.1--YP_002395549.1 +NC_011744 S-MART CDS 1078538 1079514 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395554.1;Dbxref=Genbank:YP_002395554.1,GeneID:7138263;ID=cds948;Name=YP_002395554.1--YP_002395553.1 +NC_011744 S-MART CDS 1079815 1081574 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395556.1;Dbxref=Genbank:YP_002395556.1,GeneID:7138265;ID=cds950;Name=YP_002395556.1--YP_002395555.1 +NC_011744 S-MART CDS 1081952 1083590 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395559.1;Dbxref=Genbank:YP_002395559.1,GeneID:7138268;ID=cds953;Name=YP_002395559.1--YP_002395558.1--YP_002395557.1 +NC_011744 S-MART CDS 1083767 1084411 . - . product=hypothetical protein;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395560.1;Dbxref=Genbank:YP_002395560.1,GeneID:7138269;ID=cds954;Name=YP_002395560.1 +NC_011744 S-MART CDS 1084799 1092865 . - . product=hypothetical protein;nbElements=9.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395569.1;Dbxref=Genbank:YP_002395569.1,GeneID:7138277;ID=cds963;Name=YP_002395569.1--YP_002395568.1--YP_002395567.1--YP_002395566.1--YP_002395565.1--YP_002395564.1--YP_0 +NC_011744 S-MART CDS 1093545 1098842 . + . product=HTH-type transcriptional regulator;nbElements=3.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 7883720%3B Product type pr : regulator;gbkey=CDS;protein_id=YP_002395572.1;Dbxref=Genbank:YP_002395572.1,GeneID:7138280;ID=cds966;Name=YP_002395572.1--YP_002395571.1--YP_002395570.1 +NC_011744 S-MART CDS 1098871 1107675 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395579.1;Dbxref=Genbank:YP_002395579.1,GeneID:7138286;ID=cds973;Name=YP_002395579.1--YP_002395578.1--YP_002395577.1--YP_002395576.1--YP_002395575.1--YP_002395574.1--YP_0 +NC_011744 S-MART CDS 1108177 1114597 . - . product=Hcp %28Haemolysin co-regulated protein%29;nbElements=6.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 15659065%2C 8557353%3B Product type f : factor;gbkey=CDS;protein_id=YP_002395585.1;Dbxref=Genbank:YP_002395585.1,GeneID:7138292;ID=cds979;Name=YP_002395585.1--YP_002395584.1--YP_002395583.1--YP_002395582.1--YP_002395581.1--YP_002395580.1 +NC_011744 S-MART CDS 1115052 1119360 . + . product=Sigma 54 dependent transcriptional regulator;nbElements=2.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type r : regulator;gbkey=CDS;protein_id=YP_002395587.1;Dbxref=Genbank:YP_002395587.1,GeneID:7138294;ID=cds981;Name=YP_002395587.1--YP_002395586.1 +NC_011744 S-MART CDS 1119421 1127185 . - . product=hypothetical protein;nbElements=5.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395592.1;Dbxref=Genbank:YP_002395592.1,GeneID:7138298;ID=cds986;Name=YP_002395592.1--YP_002395591.1--YP_002395590.1--YP_002395589.1--YP_002395588.1 +NC_011744 S-MART CDS 1127390 1137370 . - . product=hypothetical protein;nbElements=10.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395602.1;Dbxref=Genbank:YP_002395602.1,GeneID:7138308;ID=cds996;Name=YP_002395602.1--YP_002395601.1--YP_002395600.1--YP_002395599.1--YP_002395598.1--YP_002395597.1--YP_0 +NC_011744 S-MART CDS 1138091 1148704 . - . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395603.1;Dbxref=Genbank:YP_002395603.1,GeneID:7138309;ID=cds997;Name=YP_002395603.1 +NC_011744 S-MART CDS 1148963 1149922 . + . product=hypothetical protein;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395604.1;Dbxref=Genbank:YP_002395604.1,GeneID:7138310;ID=cds998;Name=YP_002395604.1 +NC_011744 S-MART CDS 1150345 1152942 . - . product=nitrate reductase large subunit;transl_table=11;gbkey=CDS;protein_id=YP_002395605.1;Dbxref=Genbank:YP_002395605.1,GeneID:7138312;ID=cds999;Name=YP_002395605.1 +NC_011744 S-MART CDS 1153415 1160053 . + . product=Serine-threonine protein kinase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395609.1;Dbxref=Genbank:YP_002395609.1,GeneID:7138316;ID=cds1003;Name=YP_002395609.1--YP_002395608.1--YP_002395607.1--YP_002395606.1 +NC_011744 S-MART CDS 1160129 1161292 . - . product=DNA-binding transcriptional regulator FruR;transl_table=11;Note=binds D-fructose as an inducer%3B involved in regulation of operons for central pathways of carbon metabolism;gbkey=CDS;protein_id=YP_002395610.1;Dbxref=Genbank:YP_002395610.1,GeneID:7138317;ID=cds1004;Name=YP_002395610.1 +NC_011744 S-MART CDS 1161525 1165421 . + . product=Phosphotransferase system%2C fructose-specific IIC component;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395613.1;Dbxref=Genbank:YP_002395613.1,GeneID:7138320;ID=cds1007;Name=YP_002395613.1--YP_002395612.1--YP_002395611.1 +NC_011744 S-MART CDS 1165522 1171829 . - . product=hypothetical protein;nbElements=5.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395618.1;Dbxref=Genbank:YP_002395618.1,GeneID:7138325;ID=cds1012;Name=YP_002395618.1--YP_002395617.1--YP_002395616.1--YP_002395615.1--YP_002395614.1 +NC_011744 S-MART CDS 1171985 1175738 . + . product=hypothetical protein;nbElements=5.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395623.1;Dbxref=Genbank:YP_002395623.1,GeneID:7138330;ID=cds1017;Name=YP_002395623.1--YP_002395622.1--YP_002395621.1--YP_002395620.1--YP_002395619.1 +NC_011744 S-MART CDS 1175849 1176172 . - . product=aromatic ring-cleaving dioxygenase;transl_table=11;gbkey=CDS;protein_id=YP_002395624.1;Dbxref=Genbank:YP_002395624.1,GeneID:7138331;ID=cds1018;Name=YP_002395624.1 +NC_011744 S-MART CDS 1176355 1177212 . - . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395625.1;Dbxref=Genbank:YP_002395625.1,GeneID:7138332;ID=cds1019;Name=YP_002395625.1 +NC_011744 S-MART CDS 1177465 1177785 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395626.1;Dbxref=Genbank:YP_002395626.1,GeneID:7138333;ID=cds1020;Name=YP_002395626.1 +NC_011744 S-MART CDS 1177488 1177832 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395627.1;Dbxref=Genbank:YP_002395627.1,GeneID:7138334;ID=cds1021;Name=YP_002395627.1 +NC_011744 S-MART CDS 1178012 1178392 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395628.1;Dbxref=Genbank:YP_002395628.1,GeneID:7138335;ID=cds1022;Name=YP_002395628.1 +NC_011744 S-MART CDS 1178987 1181946 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395630.1;Dbxref=Genbank:YP_002395630.1,GeneID:7138337;ID=cds1024;Name=YP_002395630.1--YP_002395629.1 +NC_011744 S-MART CDS 1182101 1184455 . + . product=fatty acid cis%2Ftrans isomerase;transl_table=11;gbkey=CDS;protein_id=YP_002395631.1;Dbxref=Genbank:YP_002395631.1,GeneID:7138338;ID=cds1025;Name=YP_002395631.1 +NC_011744 S-MART CDS 1184694 1187726 . - . product=Signal transduction histidine kinase;transl_table=11;gbkey=CDS;protein_id=YP_002395632.1;Dbxref=Genbank:YP_002395632.1,GeneID:7138339;ID=cds1026;Name=YP_002395632.1 +NC_011744 S-MART CDS 1187819 1189363 . + . product=methylglyoxal synthase;nbElements=2.000000;transl_table=11;Note=catalyzes the formation of methylglyoxal from glycerone phosphate;gbkey=CDS;protein_id=YP_002395634.1;Dbxref=Genbank:YP_002395634.1,GeneID:7138341;ID=cds1028;Name=YP_002395634.1--YP_002395633.1 +NC_011744 S-MART CDS 1189691 1191253 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395635.1;Dbxref=Genbank:YP_002395635.1,GeneID:7138342;ID=cds1029;Name=YP_002395635.1 +NC_011744 S-MART CDS 1191462 1191929 . - . product=transcription regulator protein;transl_table=11;gbkey=CDS;protein_id=YP_002395636.1;Dbxref=Genbank:YP_002395636.1,GeneID:7138343;ID=cds1030;Name=YP_002395636.1 +NC_011744 S-MART CDS 1192081 1193043 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395637.1;Dbxref=Genbank:YP_002395637.1,GeneID:7138344;ID=cds1031;Name=YP_002395637.1 +NC_011744 S-MART CDS 1193246 1193389 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395638.1;Dbxref=Genbank:YP_002395638.1,GeneID:7138345;ID=cds1032;Name=YP_002395638.1 +NC_011744 S-MART CDS 1193474 1193665 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395639.1;Dbxref=Genbank:YP_002395639.1,GeneID:7138346;ID=cds1033;Name=YP_002395639.1 +NC_011744 S-MART CDS 1193628 1196734 . + . product=M6 secreted metalloprotease;nbElements=2.000000;transl_table=11;Note=Evidence 3 : Function proposed based on presence of conserved amino acid motif%2C structural feature or limited homology%3B PubMedId : 3050359%2C 9371455%2C 7140755%2C 6421577%2C 12029046%3B Product type pe : enzyme;gbkey=CDS;protein_id=YP_002395641.1;Dbxref=Genbank:YP_002395641.1,GeneID:7138348;ID=cds1035;Name=YP_002395641.1--YP_002395640.1 +NC_011744 S-MART CDS 1196948 1198174 . - . product=permease;transl_table=11;gbkey=CDS;protein_id=YP_002395642.1;Dbxref=Genbank:YP_002395642.1,GeneID:7138349;ID=cds1036;Name=YP_002395642.1 +NC_011744 S-MART CDS 1198432 1199322 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395643.1;Dbxref=Genbank:YP_002395643.1,GeneID:7138350;ID=cds1037;Name=YP_002395643.1 +NC_011744 S-MART CDS 1199417 1205405 . - . product=response regulator receiver:Metal-dependent phosphohydrolase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395645.1;Dbxref=Genbank:YP_002395645.1,GeneID:7138352;ID=cds1039;Name=YP_002395645.1--YP_002395644.1 +NC_011744 S-MART CDS 1205725 1209463 . - . product=enterobactin ABC transporter substrate-binding protein;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 2651410%2C 8388528%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395650.1;Dbxref=Genbank:YP_002395650.1,GeneID:7138357;ID=cds1044;Name=YP_002395650.1--YP_002395649.1--YP_002395648.1--YP_002395647.1--YP_002395646.1 +NC_011744 S-MART CDS 1210829 1211422 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395651.1;Dbxref=Genbank:YP_002395651.1,GeneID:7138358;ID=cds1045;Name=YP_002395651.1 +NC_011744 S-MART CDS 1211676 1215586 . - . product=secretion protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395655.1;Dbxref=Genbank:YP_002395655.1,GeneID:7138362;ID=cds1049;Name=YP_002395655.1--YP_002395654.1--YP_002395653.1--YP_002395652.1 +NC_011744 S-MART CDS 1215746 1216739 . + . product=transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395657.1;Dbxref=Genbank:YP_002395657.1,GeneID:7138364;ID=cds1051;Name=YP_002395657.1--YP_002395656.1 +NC_011744 S-MART CDS 1217046 1217513 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395658.1;Dbxref=Genbank:YP_002395658.1,GeneID:7138365;ID=cds1052;Name=YP_002395658.1 +NC_011744 S-MART CDS 1217709 1218146 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395659.1;Dbxref=Genbank:YP_002395659.1,GeneID:7138366;ID=cds1053;Name=YP_002395659.1 +NC_011744 S-MART CDS 1218285 1219951 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395661.1;Dbxref=Genbank:YP_002395661.1,GeneID:7138368;ID=cds1055;Name=YP_002395661.1--YP_002395660.1 +NC_011744 S-MART CDS 1220080 1220766 . - . product=thiamine-phosphate pyrophosphorylase;transl_table=11;Note=Condenses 4-methyl-5-%28beta-hydroxyethyl%29-thiazole monophosphate and 4-amino-5-hydroxymethyl pyrimidine pyrophosphate to form thiamine monophosphate;gbkey=CDS;protein_id=YP_002395662.1;Dbxref=Genbank:YP_002395662.1,GeneID:7138369;ID=cds1056;Name=YP_002395662.1 +NC_011744 S-MART CDS 1220957 1222900 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395663.1;Dbxref=Genbank:YP_002395663.1,GeneID:7138370;ID=cds1057;Name=YP_002395663.1 +NC_011744 S-MART CDS 1223038 1230181 . - . product=AraC family transcriptional regulator;nbElements=9.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395671.1;Dbxref=Genbank:YP_002395671.1,GeneID:7138378;ID=cds1065;Name=YP_002395671.1--YP_002395670.1--rna15--YP_002395669.1--YP_002395668.1--YP_002395667.1--YP_002395666. +NC_011744 S-MART CDS 1230355 1231404 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395672.1;Dbxref=Genbank:YP_002395672.1,GeneID:7138379;ID=cds1066;Name=YP_002395672.1 +NC_011744 S-MART CDS 1231806 1233284 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395674.1;Dbxref=Genbank:YP_002395674.1,GeneID:7138381;ID=cds1068;Name=YP_002395674.1--YP_002395673.1 +NC_011744 S-MART CDS 1233780 1234454 . + . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395675.1;Dbxref=Genbank:YP_002395675.1,GeneID:7138382;ID=cds1069;Name=YP_002395675.1 +NC_011744 S-MART CDS 1234860 1236490 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395677.1;Dbxref=Genbank:YP_002395677.1,GeneID:7138384;ID=cds1071;Name=YP_002395677.1--YP_002395676.1 +NC_011744 S-MART CDS 1236580 1236819 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395678.1;Dbxref=Genbank:YP_002395678.1,GeneID:7138385;ID=cds1072;Name=YP_002395678.1 +NC_011744 S-MART CDS 1237160 1238719 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395679.1;Dbxref=Genbank:YP_002395679.1,GeneID:7138386;ID=cds1073;Name=YP_002395679.1 +NC_011744 S-MART CDS 1238904 1239575 . - . product=Rha phage protein;transl_table=11;gbkey=CDS;protein_id=YP_002395680.1;Dbxref=Genbank:YP_002395680.1,GeneID:7138387;ID=cds1074;Name=YP_002395680.1 +NC_011744 S-MART CDS 1239985 1243687 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395687.1;Dbxref=Genbank:YP_002395687.1,GeneID:7138394;ID=cds1081;Name=YP_002395687.1--YP_002395686.1--YP_002395685.1--YP_002395684.1--YP_002395683.1--YP_002395681.1 +NC_011744 S-MART CDS 1240399 1240725 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395682.1;Dbxref=Genbank:YP_002395682.1,GeneID:7138389;ID=cds1076;Name=YP_002395682.1 +NC_011744 S-MART CDS 1243775 1244818 . - . product=guanosine 5%27-monophosphate oxidoreductase;transl_table=11;Note=catalyzes the NADPH-dependent deamination of GMP to inosine monophosphate;gbkey=CDS;protein_id=YP_002395688.1;Dbxref=Genbank:YP_002395688.1,GeneID:7138395;ID=cds1082;Name=YP_002395688.1 +NC_011744 S-MART CDS 1245677 1247120 . - . product=Response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395690.1;Dbxref=Genbank:YP_002395690.1,GeneID:7138397;ID=cds1084;Name=YP_002395690.1--YP_002395689.1 +NC_011744 S-MART CDS 1247502 1247753 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395691.1;Dbxref=Genbank:YP_002395691.1,GeneID:7138398;ID=cds1085;Name=YP_002395691.1 +NC_011744 S-MART CDS 1247997 1249349 . - . product=Na%28%2B%29 driven multidrug efflux pump;transl_table=11;gbkey=CDS;protein_id=YP_002395692.1;Dbxref=Genbank:YP_002395692.1,GeneID:7138399;ID=cds1086;Name=YP_002395692.1 +NC_011744 S-MART CDS 1249450 1251402 . + . product=Transporter%2C drug%2Fmetabolite exporter family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395694.1;Dbxref=Genbank:YP_002395694.1,GeneID:7138401;ID=cds1088;Name=YP_002395694.1--YP_002395693.1 +NC_011744 S-MART CDS 1251577 1252032 . - . product=lactoylglutathione lyase;transl_table=11;gbkey=CDS;protein_id=YP_002395695.1;Dbxref=Genbank:YP_002395695.1,GeneID:7138402;ID=cds1089;Name=YP_002395695.1 +NC_011744 S-MART CDS 1252374 1253291 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395697.1;Dbxref=Genbank:YP_002395697.1,GeneID:7138404;ID=cds1091;Name=YP_002395697.1--YP_002395696.1 +NC_011744 S-MART CDS 1253443 1254468 . - . product=Zinc-containing alcohol dehydrogenase superfamily protein;transl_table=11;gbkey=CDS;protein_id=YP_002395698.1;Dbxref=Genbank:YP_002395698.1,GeneID:7138405;ID=cds1092;Name=YP_002395698.1 +NC_011744 S-MART CDS 1254675 1255607 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395699.1;Dbxref=Genbank:YP_002395699.1,GeneID:7138406;ID=cds1093;Name=YP_002395699.1 +NC_011744 S-MART CDS 1255752 1256138 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395700.1;Dbxref=Genbank:YP_002395700.1,GeneID:7138407;ID=cds1094;Name=YP_002395700.1 +NC_011744 S-MART CDS 1256291 1262248 . - . product=Vibrioferrin receptor;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395705.1;Dbxref=Genbank:YP_002395705.1,GeneID:7138412;ID=cds1099;Name=YP_002395705.1--YP_002395704.1--YP_002395703.1--YP_002395702.1--YP_002395701.1 +NC_011744 S-MART CDS 1262438 1264474 . - . product=ferric siderophore receptor;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type t : transporter;gbkey=CDS;protein_id=YP_002395706.1;Dbxref=Genbank:YP_002395706.1,GeneID:7138413;ID=cds1100;Name=YP_002395706.1 +NC_011744 S-MART CDS 1264725 1272000 . + . product=Vibrioferrin biosynthesis protein PvsE;nbElements=5.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B Product type f : factor;gbkey=CDS;protein_id=YP_002395711.1;Dbxref=Genbank:YP_002395711.1,GeneID:7138418;ID=cds1105;Name=YP_002395711.1--YP_002395710.1--YP_002395709.1--YP_002395708.1--YP_002395707.1 +NC_011744 S-MART CDS 1272522 1273160 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395712.1;Dbxref=Genbank:YP_002395712.1,GeneID:7138419;ID=cds1106;Name=YP_002395712.1 +NC_011744 S-MART CDS 1273484 1274677 . - . product=acetate kinase;transl_table=11;Note=AckA utilizes acetate and can acetylate CheY which increases signal strength during flagellar rotation%3B utilizes magnesium and ATP%3B also involved in conversion of acetate to aceyl-CoA;gbkey=CDS;protein_id=YP_002395713.1;Dbxref=Genbank:YP_002395713.1,GeneID:7138420;ID=cds1107;Name=YP_002395713.1 +NC_011744 S-MART CDS 1274895 1275119 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395714.1;Dbxref=Genbank:YP_002395714.1,GeneID:7138421;ID=cds1108;Name=YP_002395714.1 +NC_011744 S-MART CDS 1275408 1277477 . - . product=ATP-dependent RNA helicase;transl_table=11;gbkey=CDS;protein_id=YP_002395715.1;Dbxref=Genbank:YP_002395715.1,GeneID:7138422;ID=cds1109;Name=YP_002395715.1 +NC_011744 S-MART CDS 1277786 1280713 . + . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395717.1;Dbxref=Genbank:YP_002395717.1,GeneID:7138424;ID=cds1111;Name=YP_002395717.1--YP_002395716.1 +NC_011744 S-MART CDS 1280972 1281334 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395718.1;Dbxref=Genbank:YP_002395718.1,GeneID:7138425;ID=cds1112;Name=YP_002395718.1 +NC_011744 S-MART CDS 1281588 1282403 . + . product=ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395719.1;Dbxref=Genbank:YP_002395719.1,GeneID:7138426;ID=cds1113;Name=YP_002395719.1 +NC_011744 S-MART CDS 1282598 1283302 . - . product=acyl dehydratase;transl_table=11;gbkey=CDS;protein_id=YP_002395720.1;Dbxref=Genbank:YP_002395720.1,GeneID:7138427;ID=cds1114;Name=YP_002395720.1 +NC_011744 S-MART CDS 1283617 1287968 . - . product=membrane fusion protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395722.1;Dbxref=Genbank:YP_002395722.1,GeneID:7138429;ID=cds1116;Name=YP_002395722.1--YP_002395721.1 +NC_011744 S-MART CDS 1288177 1288620 . + . product=deoxycytidylate deaminase;transl_table=11;gbkey=CDS;protein_id=YP_002395723.1;Dbxref=Genbank:YP_002395723.1,GeneID:7138430;ID=cds1117;Name=YP_002395723.1 +NC_011744 S-MART CDS 1288736 1291491 . - . product=peptidase T;nbElements=3.000000;transl_table=11;Note=catalyzes the release of the N-terminal amino acid from a tripeptide;gbkey=CDS;protein_id=YP_002395726.1;Dbxref=Genbank:YP_002395726.1,GeneID:7138433;ID=cds1120;Name=YP_002395726.1--YP_002395725.1--YP_002395724.1 +NC_011744 S-MART CDS 1291841 1291987 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395727.1;Dbxref=Genbank:YP_002395727.1,GeneID:7138434;ID=cds1121;Name=YP_002395727.1 +NC_011744 S-MART CDS 1292195 1292341 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395728.1;Dbxref=Genbank:YP_002395728.1,GeneID:7138435;ID=cds1122;Name=YP_002395728.1 +NC_011744 S-MART CDS 1292358 1293410 . + . product=NADPH-dependent aldose reductase;transl_table=11;gbkey=CDS;protein_id=YP_002395729.1;Dbxref=Genbank:YP_002395729.1,GeneID:7138436;ID=cds1123;Name=YP_002395729.1 +NC_011744 S-MART CDS 1293602 1294336 . + . product=rRNA methylase;transl_table=11;gbkey=CDS;protein_id=YP_002395730.1;Dbxref=Genbank:YP_002395730.1,GeneID:7138437;ID=cds1124;Name=YP_002395730.1 +NC_011744 S-MART CDS 1294434 1294757 . - . product=Ferredoxin;transl_table=11;gbkey=CDS;protein_id=YP_002395731.1;Dbxref=Genbank:YP_002395731.1,GeneID:7138438;ID=cds1125;Name=YP_002395731.1 +NC_011744 S-MART CDS 1295012 1296643 . + . product=Uncharacterized FAD-dependent dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395732.1;Dbxref=Genbank:YP_002395732.1,GeneID:7138439;ID=cds1126;Name=YP_002395732.1 +NC_011744 S-MART CDS 1296763 1298226 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395733.1;Dbxref=Genbank:YP_002395733.1,GeneID:7138440;ID=cds1127;Name=YP_002395733.1 +NC_011744 S-MART CDS 1298424 1300868 . - . product=Nitroreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395735.1;Dbxref=Genbank:YP_002395735.1,GeneID:7138442;ID=cds1129;Name=YP_002395735.1--YP_002395734.1 +NC_011744 S-MART CDS 1301316 1303737 . + . product=DNA polymerase III subunit alpha;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395738.1;Dbxref=Genbank:YP_002395738.1,GeneID:7138445;ID=cds1132;Name=YP_002395738.1--YP_002395737.1--YP_002395736.1 +NC_011744 S-MART CDS 1303820 1304656 . - . product=DNA polymerase III subunit alpha;transl_table=11;gbkey=CDS;protein_id=YP_002395739.1;Dbxref=Genbank:YP_002395739.1,GeneID:7138446;ID=cds1133;Name=YP_002395739.1 +NC_011744 S-MART CDS 1304898 1305092 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395740.1;Dbxref=Genbank:YP_002395740.1,GeneID:7138447;ID=cds1134;Name=YP_002395740.1 +NC_011744 S-MART CDS 1305233 1307669 . - . product=Oxidoreductase%2C aldo%2Fketo reductase 2 family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395742.1;Dbxref=Genbank:YP_002395742.1,GeneID:7138449;ID=cds1136;Name=YP_002395742.1--YP_002395741.1 +NC_011744 S-MART CDS 1307887 1308480 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395743.1;Dbxref=Genbank:YP_002395743.1,GeneID:7138450;ID=cds1137;Name=YP_002395743.1 +NC_011744 S-MART CDS 1308702 1310549 . + . product=peptidase;transl_table=11;gbkey=CDS;protein_id=YP_002395744.1;Dbxref=Genbank:YP_002395744.1,GeneID:7138451;ID=cds1138;Name=YP_002395744.1 +NC_011744 S-MART CDS 1310644 1313357 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395747.1;Dbxref=Genbank:YP_002395747.1,GeneID:7138454;ID=cds1141;Name=YP_002395747.1--YP_002395746.1--YP_002395745.1 +NC_011744 S-MART CDS 1313533 1314327 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395748.1;Dbxref=Genbank:YP_002395748.1,GeneID:7138455;ID=cds1142;Name=YP_002395748.1 +NC_011744 S-MART CDS 1314439 1315272 . - . product=recombinase A;transl_table=11;gbkey=CDS;protein_id=YP_002395749.1;Dbxref=Genbank:YP_002395749.1,GeneID:7138456;ID=cds1143;Name=YP_002395749.1 +NC_011744 S-MART CDS 1315467 1317071 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395750.1;Dbxref=Genbank:YP_002395750.1,GeneID:7138457;ID=cds1144;Name=YP_002395750.1 +NC_011744 S-MART CDS 1317324 1317572 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395751.1;Dbxref=Genbank:YP_002395751.1,GeneID:7138458;ID=cds1145;Name=YP_002395751.1 +NC_011744 S-MART CDS 1318149 1318313 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395752.1;Dbxref=Genbank:YP_002395752.1,GeneID:7138459;ID=cds1146;Name=YP_002395752.1 +NC_011744 S-MART CDS 1318446 1321973 . + . product=outer membrane protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395756.1;Dbxref=Genbank:YP_002395756.1,GeneID:7138463;ID=cds1150;Name=YP_002395756.1--YP_002395755.1--YP_002395754.1--YP_002395753.1 +NC_011744 S-MART CDS 1322129 1323394 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395757.1;Dbxref=Genbank:YP_002395757.1,GeneID:7138464;ID=cds1151;Name=YP_002395757.1 +NC_011744 S-MART CDS 1323621 1324172 . + . product=Ribosomal-protein-serine acetyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395758.1;Dbxref=Genbank:YP_002395758.1,GeneID:7138465;ID=cds1152;Name=YP_002395758.1 +NC_011744 S-MART CDS 1324315 1326361 . - . product=Response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395760.1;Dbxref=Genbank:YP_002395760.1,GeneID:7138467;ID=cds1154;Name=YP_002395760.1--YP_002395759.1 +NC_011744 S-MART CDS 1326887 1327444 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395761.1;Dbxref=Genbank:YP_002395761.1,GeneID:7138468;ID=cds1155;Name=YP_002395761.1 +NC_011744 S-MART CDS 1327606 1329549 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395762.1;Dbxref=Genbank:YP_002395762.1,GeneID:7138469;ID=cds1156;Name=YP_002395762.1 +NC_011744 S-MART CDS 1329878 1330042 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395763.1;Dbxref=Genbank:YP_002395763.1,GeneID:7138470;ID=cds1157;Name=YP_002395763.1 +NC_011744 S-MART CDS 1330397 1332139 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395764.1;Dbxref=Genbank:YP_002395764.1,GeneID:7138471;ID=cds1158;Name=YP_002395764.1 +NC_011744 S-MART CDS 1332366 1334445 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395767.1;Dbxref=Genbank:YP_002395767.1,GeneID:7138474;ID=cds1161;Name=YP_002395767.1--YP_002395766.1--YP_002395765.1 +NC_011744 S-MART CDS 1335086 1336894 . + . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395771.1;Dbxref=Genbank:YP_002395771.1,GeneID:7138478;ID=cds1165;Name=YP_002395771.1--YP_002395770.1--YP_002395769.1--YP_002395768.1 +NC_011744 S-MART CDS 1337143 1337580 . + . product=riboflavin biosynthesis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395772.1;Dbxref=Genbank:YP_002395772.1,GeneID:7138479;ID=cds1166;Name=YP_002395772.1 +NC_011744 S-MART CDS 1337598 1338092 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395773.1;Dbxref=Genbank:YP_002395773.1,GeneID:7138480;ID=cds1167;Name=YP_002395773.1 +NC_011744 S-MART CDS 1338365 1340077 . + . product=ribosomal large chain pseudouridine synthase A;transl_table=11;gbkey=CDS;protein_id=YP_002395774.1;Dbxref=Genbank:YP_002395774.1,GeneID:7138481;ID=cds1168;Name=YP_002395774.1 +NC_011744 S-MART CDS 1340204 1340401 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395775.1;Dbxref=Genbank:YP_002395775.1,GeneID:7138482;ID=cds1169;Name=YP_002395775.1 +NC_011744 S-MART CDS 1340280 1340660 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395776.1;Dbxref=Genbank:YP_002395776.1,GeneID:7138483;ID=cds1170;Name=YP_002395776.1 +NC_011744 S-MART CDS 1340984 1343287 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395778.1;Dbxref=Genbank:YP_002395778.1,GeneID:7138485;ID=cds1172;Name=YP_002395778.1--YP_002395777.1 +NC_011744 S-MART CDS 1343308 1344375 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395779.1;Dbxref=Genbank:YP_002395779.1,GeneID:7138486;ID=cds1173;Name=YP_002395779.1 +NC_011744 S-MART CDS 1344533 1345891 . - . product=Na%2B%2FH%2B antiporter;transl_table=11;gbkey=CDS;protein_id=YP_002395780.1;Dbxref=Genbank:YP_002395780.1,GeneID:7138487;ID=cds1174;Name=YP_002395780.1 +NC_011744 S-MART CDS 1346082 1347993 . - . product=beta-lactamase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395782.1;Dbxref=Genbank:YP_002395782.1,GeneID:7138489;ID=cds1176;Name=YP_002395782.1--YP_002395781.1 +NC_011744 S-MART CDS 1348155 1349939 . - . product=transport protein;transl_table=11;gbkey=CDS;protein_id=YP_002395783.1;Dbxref=Genbank:YP_002395783.1,GeneID:7138490;ID=cds1177;Name=YP_002395783.1 +NC_011744 S-MART CDS 1350071 1350241 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395784.1;Dbxref=Genbank:YP_002395784.1,GeneID:7138491;ID=cds1178;Name=YP_002395784.1 +NC_011744 S-MART CDS 1350543 1351909 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395786.1;Dbxref=Genbank:YP_002395786.1,GeneID:7138493;ID=cds1180;Name=YP_002395786.1--YP_002395785.1 +NC_011744 S-MART CDS 1351985 1352779 . - . product=Zn-dependent hydrolase;transl_table=11;gbkey=CDS;protein_id=YP_002395787.1;Dbxref=Genbank:YP_002395787.1,GeneID:7138494;ID=cds1181;Name=YP_002395787.1 +NC_011744 S-MART CDS 1353161 1353763 . + . product=prolyl 4-hydroxylase subunit alpha;transl_table=11;gbkey=CDS;protein_id=YP_002395788.1;Dbxref=Genbank:YP_002395788.1,GeneID:7138495;ID=cds1182;Name=YP_002395788.1 +NC_011744 S-MART CDS 1354039 1355331 . + . product=sugar ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395789.1;Dbxref=Genbank:YP_002395789.1,GeneID:7138496;ID=cds1183;Name=YP_002395789.1 +NC_011744 S-MART CDS 1355408 1355551 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395790.1;Dbxref=Genbank:YP_002395790.1,GeneID:7138497;ID=cds1184;Name=YP_002395790.1 +NC_011744 S-MART CDS 1355502 1359415 . + . product=glycerophosphoryl diester phosphodiesterase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395794.1;Dbxref=Genbank:YP_002395794.1,GeneID:7138501;ID=cds1188;Name=YP_002395794.1--YP_002395793.1--YP_002395792.1--YP_002395791.1 +NC_011744 S-MART CDS 1359575 1360312 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395795.1;Dbxref=Genbank:YP_002395795.1,GeneID:7138502;ID=cds1189;Name=YP_002395795.1 +NC_011744 S-MART CDS 1360418 1361676 . - . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395797.1;Dbxref=Genbank:YP_002395797.1,GeneID:7138504;ID=cds1191;Name=YP_002395797.1--YP_002395796.1 +NC_011744 S-MART CDS 1361888 1362676 . - . product=Glycosyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395798.1;Dbxref=Genbank:YP_002395798.1,GeneID:7138505;ID=cds1192;Name=YP_002395798.1 +NC_011744 S-MART CDS 1363264 1364244 . + . product=oxidoreductase;transl_table=11;gbkey=CDS;protein_id=YP_002395799.1;Dbxref=Genbank:YP_002395799.1,GeneID:7138506;ID=cds1193;Name=YP_002395799.1 +NC_011744 S-MART CDS 1364408 1364569 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395800.1;Dbxref=Genbank:YP_002395800.1,GeneID:7138507;ID=cds1194;Name=YP_002395800.1 +NC_011744 S-MART CDS 1364917 1365549 . + . product=glutaredoxin;transl_table=11;Note=cofactor involved in the reduction of disulfides;gbkey=CDS;protein_id=YP_002395801.1;Dbxref=Genbank:YP_002395801.1,GeneID:7138508;ID=cds1195;Name=YP_002395801.1 +NC_011744 S-MART CDS 1365674 1366507 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395802.1;Dbxref=Genbank:YP_002395802.1,GeneID:7138509;ID=cds1196;Name=YP_002395802.1 +NC_011744 S-MART CDS 1366686 1369058 . + . product=phosphoenolpyruvate synthase;transl_table=11;Note=catalyzes the formation of phosphoenolpyruvate from pyruvate;gbkey=CDS;protein_id=YP_002395803.1;Dbxref=Genbank:YP_002395803.1,GeneID:7138510;ID=cds1197;Name=YP_002395803.1 +NC_011744 S-MART CDS 1369271 1370608 . + . product=Multi antimicrobial extrusion protein MatE;transl_table=11;gbkey=CDS;protein_id=YP_002395804.1;Dbxref=Genbank:YP_002395804.1,GeneID:7138511;ID=cds1198;Name=YP_002395804.1 +NC_011744 S-MART CDS 1371102 1375019 . + . product=coenzyme A disulfide reductase;nbElements=4.000000;transl_table=11;Note=CoADR%3B specific for coenzyme A disulfide%3B requires NADH%3B involved in protecting cells against reactive oxygen species by recycling coenzyme A disulfide which can reduce hydrogen peroxide;gbkey=CDS;protein_id=YP_002395808.1;Dbxref=Genbank:YP_002395808.1,GeneID:7138515;ID=cds1202;Name=YP_002395808.1--YP_002395807.1--YP_002395806.1--YP_002395805.1 +NC_011744 S-MART rRNA 1375211 1378513 . - . product=ribosomal RNA 23S;nbElements=4.000000;gbkey=rRNA;Dbxref=GeneID:7138806;ID=rna19;Name=rna19--rna18--rna17--rna16 +NC_011744 S-MART rRNA 1378932 1381102 . - . product=ribosomal RNA 16S;nbElements=6.000000;gbkey=rRNA;Dbxref=GeneID:7138825;ID=rna25;Name=rna25--rna24--rna23--rna22--rna21--rna20 +NC_011744 S-MART CDS 1381807 1382205 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395809.1;Dbxref=Genbank:YP_002395809.1,GeneID:7138808;ID=cds1203;Name=YP_002395809.1 +NC_011744 S-MART CDS 1382635 1383234 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395810.1;Dbxref=Genbank:YP_002395810.1,GeneID:7138517;ID=cds1204;Name=YP_002395810.1 +NC_011744 S-MART CDS 1383353 1387051 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395813.1;Dbxref=Genbank:YP_002395813.1,GeneID:7138520;ID=cds1207;Name=YP_002395813.1--YP_002395812.1--YP_002395811.1 +NC_011744 S-MART CDS 1387465 1388616 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395814.1;Dbxref=Genbank:YP_002395814.1,GeneID:7138521;ID=cds1208;Name=YP_002395814.1 +NC_011744 S-MART CDS 1387832 1388134 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395815.1;Dbxref=Genbank:YP_002395815.1,GeneID:7138522;ID=cds1209;Name=YP_002395815.1 +NC_011744 S-MART CDS 1388799 1389693 . + . product=RNA polymerase sigma factor SigZ;nbElements=2.000000;transl_table=11;Note=Member of the extracytoplasmic function sigma factors which are active under specific conditions%3B binds with the catalytic core of RNA polymerase to produce the holoenzyme and directs bacterial core RNA polymerase to specific promoter elements to initiate transcription;gbkey=CDS;protein_id=YP_002395817.1;Dbxref=Genbank:YP_002395817.1,GeneID:7138524;ID=cds1211;Name=YP_002395817.1--YP_002395816.1 +NC_011744 S-MART CDS 1389802 1390446 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395818.1;Dbxref=Genbank:YP_002395818.1,GeneID:7138525;ID=cds1212;Name=YP_002395818.1 +NC_011744 S-MART CDS 1390708 1392261 . + . product=MFS transporter;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395820.1;Dbxref=Genbank:YP_002395820.1,GeneID:7138527;ID=cds1214;Name=YP_002395820.1--YP_002395819.1 +NC_011744 S-MART CDS 1392486 1393211 . + . product=permeases;transl_table=11;gbkey=CDS;protein_id=YP_002395821.1;Dbxref=Genbank:YP_002395821.1,GeneID:7138528;ID=cds1215;Name=YP_002395821.1 +NC_011744 S-MART CDS 1393571 1395505 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395822.1;Dbxref=Genbank:YP_002395822.1,GeneID:7138529;ID=cds1216;Name=YP_002395822.1 +NC_011744 S-MART CDS 1395684 1396430 . - . product=membrane-associated phospholipid phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002395823.1;Dbxref=Genbank:YP_002395823.1,GeneID:7138530;ID=cds1217;Name=YP_002395823.1 +NC_011744 S-MART ncRNA 1396814 1396964 . + . product=FMN riboswitch;ncrna_class=other;gbkey=ncRNA;Dbxref=GeneID:7138531;ID=rna26;Name=rna26 +NC_011744 S-MART CDS 1397312 1397968 . + . product=3%2C4-dihydroxy-2-butanone 4-phosphate synthase;transl_table=11;Note=DHBP synthase%3B functions during riboflavin biosynthesis;gbkey=CDS;protein_id=YP_002395824.1;Dbxref=Genbank:YP_002395824.1,GeneID:7138803;ID=cds1218;Name=YP_002395824.1 +NC_011744 S-MART CDS 1398300 1403173 . + . product=ABC transporter ATP-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395829.1;Dbxref=Genbank:YP_002395829.1,GeneID:7138536;ID=cds1223;Name=YP_002395829.1--YP_002395827.1--YP_002395826.1--YP_002395825.1 +NC_011744 S-MART CDS 1400921 1401307 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395828.1;Dbxref=Genbank:YP_002395828.1,GeneID:7138535;ID=cds1222;Name=YP_002395828.1 +NC_011744 S-MART CDS 1403576 1404439 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395830.1;Dbxref=Genbank:YP_002395830.1,GeneID:7138537;ID=cds1224;Name=YP_002395830.1 +NC_011744 S-MART CDS 1404163 1404264 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395831.1;Dbxref=Genbank:YP_002395831.1,GeneID:7138538;ID=cds1225;Name=YP_002395831.1 +NC_011744 S-MART CDS 1404576 1405475 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395832.1;Dbxref=Genbank:YP_002395832.1,GeneID:7138539;ID=cds1226;Name=YP_002395832.1 +NC_011744 S-MART CDS 1405635 1406273 . + . product=NADH-flavin reductase;transl_table=11;gbkey=CDS;protein_id=YP_002395833.1;Dbxref=Genbank:YP_002395833.1,GeneID:7138540;ID=cds1227;Name=YP_002395833.1 +NC_011744 S-MART CDS 1406351 1407979 . - . product=oxidoreductase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395835.1;Dbxref=Genbank:YP_002395835.1,GeneID:7138542;ID=cds1229;Name=YP_002395835.1--YP_002395834.1 +NC_011744 S-MART CDS 1408013 1408351 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395836.1;Dbxref=Genbank:YP_002395836.1,GeneID:7138543;ID=cds1230;Name=YP_002395836.1 +NC_011744 S-MART CDS 1408399 1409310 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395837.1;Dbxref=Genbank:YP_002395837.1,GeneID:7138544;ID=cds1231;Name=YP_002395837.1 +NC_011744 S-MART CDS 1409515 1410234 . + . product=Oxidoreductase%2C short-chain dehydrogenase%2Freductase;transl_table=11;gbkey=CDS;protein_id=YP_002395838.1;Dbxref=Genbank:YP_002395838.1,GeneID:7138545;ID=cds1232;Name=YP_002395838.1 +NC_011744 S-MART CDS 1410452 1411099 . - . product=outer membrane protein W;transl_table=11;Note=receptor for colicin S4;gbkey=CDS;protein_id=YP_002395839.1;Dbxref=Genbank:YP_002395839.1,GeneID:7138546;ID=cds1233;Name=YP_002395839.1 +NC_011744 S-MART CDS 1411500 1412720 . + . product=glucose-1-phosphate adenylyltransferase;transl_table=11;Note=catalyzes the formation of ADP-glucose and diphosphate from ATP and alpha-D-glucose 1-phosphate;gbkey=CDS;protein_id=YP_002395840.1;Dbxref=Genbank:YP_002395840.1,GeneID:7138547;ID=cds1234;Name=YP_002395840.1 +NC_011744 S-MART CDS 1413164 1413520 . + . product=ribosomal subunit interface protein;transl_table=11;gbkey=CDS;protein_id=YP_002395841.1;Dbxref=Genbank:YP_002395841.1,GeneID:7138548;ID=cds1235;Name=YP_002395841.1 +NC_011744 S-MART CDS 1413807 1414866 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395843.1;Dbxref=Genbank:YP_002395843.1,GeneID:7138550;ID=cds1237;Name=YP_002395843.1--YP_002395842.1 +NC_011744 S-MART CDS 1415023 1418583 . - . product=ABC transporter substrate-binding protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395847.1;Dbxref=Genbank:YP_002395847.1,GeneID:7138554;ID=cds1241;Name=YP_002395847.1--YP_002395846.1--YP_002395845.1--YP_002395844.1 +NC_011744 S-MART CDS 1418879 1420120 . - . product=glycerophosphoryl diester phosphodiesterase;transl_table=11;gbkey=CDS;protein_id=YP_002395848.1;Dbxref=Genbank:YP_002395848.1,GeneID:7138555;ID=cds1242;Name=YP_002395848.1 +NC_011744 S-MART CDS 1420375 1423697 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395850.1;Dbxref=Genbank:YP_002395850.1,GeneID:7138557;ID=cds1244;Name=YP_002395850.1--YP_002395849.1 +NC_011744 S-MART CDS 1424117 1424959 . + . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395851.1;Dbxref=Genbank:YP_002395851.1,GeneID:7138558;ID=cds1245;Name=YP_002395851.1 +NC_011744 S-MART CDS 1425300 1426140 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 5 : No homology to any previously reported sequences;gbkey=CDS;protein_id=YP_002395853.1;Dbxref=Genbank:YP_002395853.1,GeneID:7138560;ID=cds1247;Name=YP_002395853.1--YP_002395852.1 +NC_011744 S-MART CDS 1426447 1427217 . + . product=glutamine amidotransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395854.1;Dbxref=Genbank:YP_002395854.1,GeneID:7138561;ID=cds1248;Name=YP_002395854.1 +NC_011744 S-MART CDS 1427257 1431262 . - . product=Lipase%2Facylhydrolase;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395858.1;Dbxref=Genbank:YP_002395858.1,GeneID:7138565;ID=cds1252;Name=YP_002395858.1--YP_002395857.1--YP_002395856.1--YP_002395855.1 +NC_011744 S-MART CDS 1431541 1433601 . + . product=Glycosidase;transl_table=11;gbkey=CDS;protein_id=YP_002395859.1;Dbxref=Genbank:YP_002395859.1,GeneID:7138566;ID=cds1253;Name=YP_002395859.1 +NC_011744 S-MART CDS 1433713 1434225 . - . product=rRNA methyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395860.1;Dbxref=Genbank:YP_002395860.1,GeneID:7138567;ID=cds1254;Name=YP_002395860.1 +NC_011744 S-MART CDS 1434499 1436160 . + . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395861.1;Dbxref=Genbank:YP_002395861.1,GeneID:7138568;ID=cds1255;Name=YP_002395861.1 +NC_011744 S-MART CDS 1436281 1437150 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395862.1;Dbxref=Genbank:YP_002395862.1,GeneID:7138569;ID=cds1256;Name=YP_002395862.1 +NC_011744 S-MART CDS 1437413 1437760 . + . product=acyl-CoA synthetase;transl_table=11;gbkey=CDS;protein_id=YP_002395863.1;Dbxref=Genbank:YP_002395863.1,GeneID:7138570;ID=cds1257;Name=YP_002395863.1 +NC_011744 S-MART CDS 1437953 1439611 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395864.1;Dbxref=Genbank:YP_002395864.1,GeneID:7138571;ID=cds1258;Name=YP_002395864.1 +NC_011744 S-MART CDS 1439849 1440274 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395865.1;Dbxref=Genbank:YP_002395865.1,GeneID:7138572;ID=cds1259;Name=YP_002395865.1 +NC_011744 S-MART CDS 1440540 1441439 . - . product=drug%2Fmetabolite transporter permease;transl_table=11;gbkey=CDS;protein_id=YP_002395866.1;Dbxref=Genbank:YP_002395866.1,GeneID:7138573;ID=cds1260;Name=YP_002395866.1 +NC_011744 S-MART CDS 1441562 1442989 . + . product=transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395867.1;Dbxref=Genbank:YP_002395867.1,GeneID:7138574;ID=cds1261;Name=YP_002395867.1 +NC_011744 S-MART CDS 1443084 1444880 . - . product=transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395869.1;Dbxref=Genbank:YP_002395869.1,GeneID:7138576;ID=cds1263;Name=YP_002395869.1--YP_002395868.1 +NC_011744 S-MART CDS 1445373 1446536 . + . product=tyrosine-specific transport protein;transl_table=11;gbkey=CDS;protein_id=YP_002395870.1;Dbxref=Genbank:YP_002395870.1,GeneID:7138577;ID=cds1264;Name=YP_002395870.1 +NC_011744 S-MART CDS 1446689 1447132 . - . product=MarR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395871.1;Dbxref=Genbank:YP_002395871.1,GeneID:7138578;ID=cds1265;Name=YP_002395871.1 +NC_011744 S-MART CDS 1447254 1447676 . + . product=Osmotically inducible protein C;transl_table=11;gbkey=CDS;protein_id=YP_002395872.1;Dbxref=Genbank:YP_002395872.1,GeneID:7138579;ID=cds1266;Name=YP_002395872.1 +NC_011744 S-MART CDS 1447782 1449785 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395873.1;Dbxref=Genbank:YP_002395873.1,GeneID:7138580;ID=cds1267;Name=YP_002395873.1 +NC_011744 S-MART CDS 1450187 1451071 . + . product=Transcriptional regulator%2C TetR family;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395875.1;Dbxref=Genbank:YP_002395875.1,GeneID:7138582;ID=cds1269;Name=YP_002395875.1--YP_002395874.1 +NC_011744 S-MART CDS 1451183 1453048 . - . product=PTS system fructose-specific transporter subunit IIABC;transl_table=11;gbkey=CDS;protein_id=YP_002395876.1;Dbxref=Genbank:YP_002395876.1,GeneID:7138583;ID=cds1270;Name=YP_002395876.1 +NC_011744 S-MART CDS 1453292 1454375 . + . product=Phosphotransferase system mannitol%2Ffructose-specific IIA domain;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395878.1;Dbxref=Genbank:YP_002395878.1,GeneID:7138585;ID=cds1272;Name=YP_002395878.1--YP_002395877.1 +NC_011744 S-MART CDS 1454439 1455302 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395879.1;Dbxref=Genbank:YP_002395879.1,GeneID:7138586;ID=cds1273;Name=YP_002395879.1 +NC_011744 S-MART CDS 1455657 1457561 . + . product=PTS system fructose-specific transporter subunit IIABC;transl_table=11;gbkey=CDS;protein_id=YP_002395880.1;Dbxref=Genbank:YP_002395880.1,GeneID:7138587;ID=cds1274;Name=YP_002395880.1 +NC_011744 S-MART CDS 1457746 1458909 . + . product=mannose-6-phosphate isomerase;transl_table=11;gbkey=CDS;protein_id=YP_002395881.1;Dbxref=Genbank:YP_002395881.1,GeneID:7138588;ID=cds1275;Name=YP_002395881.1 +NC_011744 S-MART CDS 1459174 1461052 . + . product=PTS system fructose-specific transporter subunit IIBC;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395883.1;Dbxref=Genbank:YP_002395883.1,GeneID:7138590;ID=cds1277;Name=YP_002395883.1--YP_002395882.1 +NC_011744 S-MART CDS 1461160 1462836 . - . product=ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002395884.1;Dbxref=Genbank:YP_002395884.1,GeneID:7138591;ID=cds1278;Name=YP_002395884.1 +NC_011744 S-MART CDS 1462960 1463670 . + . product=murein peptide amidase A;transl_table=11;gbkey=CDS;protein_id=YP_002395885.1;Dbxref=Genbank:YP_002395885.1,GeneID:7138592;ID=cds1279;Name=YP_002395885.1 +NC_011744 S-MART CDS 1463824 1465293 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395886.1;Dbxref=Genbank:YP_002395886.1,GeneID:7138593;ID=cds1280;Name=YP_002395886.1 +NC_011744 S-MART CDS 1465782 1466930 . + . product=alcohol dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395887.1;Dbxref=Genbank:YP_002395887.1,GeneID:7138594;ID=cds1281;Name=YP_002395887.1 +NC_011744 S-MART CDS 1467088 1467927 . + . product=esterase;transl_table=11;gbkey=CDS;protein_id=YP_002395888.1;Dbxref=Genbank:YP_002395888.1,GeneID:7138595;ID=cds1282;Name=YP_002395888.1 +NC_011744 S-MART CDS 1468090 1468969 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395890.1;Dbxref=Genbank:YP_002395890.1,GeneID:7138597;ID=cds1284;Name=YP_002395890.1--YP_002395889.1 +NC_011744 S-MART CDS 1469206 1469946 . + . product=mutT domain protein-like;transl_table=11;gbkey=CDS;protein_id=YP_002395891.1;Dbxref=Genbank:YP_002395891.1,GeneID:7138598;ID=cds1285;Name=YP_002395891.1 +NC_011744 S-MART CDS 1470064 1470687 . - . product=homoserine%2Fhomoserine lactone efflux protein;transl_table=11;gbkey=CDS;protein_id=YP_002395892.1;Dbxref=Genbank:YP_002395892.1,GeneID:7138599;ID=cds1286;Name=YP_002395892.1 +NC_011744 S-MART CDS 1470805 1471716 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395893.1;Dbxref=Genbank:YP_002395893.1,GeneID:7138600;ID=cds1287;Name=YP_002395893.1 +NC_011744 S-MART CDS 1471790 1473310 . - . product=NAD-dependent aldehyde dehydrogenase;transl_table=11;gbkey=CDS;protein_id=YP_002395894.1;Dbxref=Genbank:YP_002395894.1,GeneID:7138601;ID=cds1288;Name=YP_002395894.1 +NC_011744 S-MART CDS 1473552 1475425 . + . product=Fis family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395896.1;Dbxref=Genbank:YP_002395896.1,GeneID:7138603;ID=cds1290;Name=YP_002395896.1--YP_002395895.1 +NC_011744 S-MART CDS 1475833 1478073 . + . product=methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002395897.1;Dbxref=Genbank:YP_002395897.1,GeneID:7138604;ID=cds1291;Name=YP_002395897.1 +NC_011744 S-MART CDS 1478211 1479062 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395898.1;Dbxref=Genbank:YP_002395898.1,GeneID:7138605;ID=cds1292;Name=YP_002395898.1 +NC_011744 S-MART CDS 1479200 1479847 . + . product=glutathione S-transferase;transl_table=11;gbkey=CDS;protein_id=YP_002395899.1;Dbxref=Genbank:YP_002395899.1,GeneID:7138606;ID=cds1293;Name=YP_002395899.1 +NC_011744 S-MART CDS 1479924 1480773 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395901.1;Dbxref=Genbank:YP_002395901.1,GeneID:7138608;ID=cds1295;Name=YP_002395901.1--YP_002395900.1 +NC_011744 S-MART CDS 1480964 1482406 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395902.1;Dbxref=Genbank:YP_002395902.1,GeneID:7138609;ID=cds1296;Name=YP_002395902.1 +NC_011744 S-MART CDS 1482615 1483073 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395903.1;Dbxref=Genbank:YP_002395903.1,GeneID:7138610;ID=cds1297;Name=YP_002395903.1 +NC_011744 S-MART CDS 1483259 1485253 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395906.1;Dbxref=Genbank:YP_002395906.1,GeneID:7138613;ID=cds1300;Name=YP_002395906.1--YP_002395905.1--YP_002395904.1 +NC_011744 S-MART CDS 1485444 1485704 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395907.1;Dbxref=Genbank:YP_002395907.1,GeneID:7138614;ID=cds1301;Name=YP_002395907.1 +NC_011744 S-MART CDS 1485732 1487564 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395908.1;Dbxref=Genbank:YP_002395908.1,GeneID:7138615;ID=cds1302;Name=YP_002395908.1 +NC_011744 S-MART CDS 1487855 1489189 . - . product=anaerobic C4-dicarboxylate transporter;transl_table=11;Note=functions in anaerobic transport of C4-dicarboxylate compounds such as fumarate%3B similar to DcuA%3B DcuA and DcuB function as independent and mutually redundant C4-dicarboxylate %28aspartate%2C malate%2C fumarate and succinate%29 transporters;gbkey=CDS;protein_id=YP_002395909.1;Dbxref=Genbank:YP_002395909.1,GeneID:7138616;ID=cds1303;Name=YP_002395909.1 +NC_011744 S-MART CDS 1489595 1490254 . + . product=phosphohexomutase;transl_table=11;gbkey=CDS;protein_id=YP_002395910.1;Dbxref=Genbank:YP_002395910.1,GeneID:7138617;ID=cds1304;Name=YP_002395910.1 +NC_011744 S-MART CDS 1490465 1491661 . + . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395912.1;Dbxref=Genbank:YP_002395912.1,GeneID:7138619;ID=cds1306;Name=YP_002395912.1--YP_002395911.1 +NC_011744 S-MART CDS 1491817 1492503 . + . product=DNA-3-methyladenine glycosylase;transl_table=11;gbkey=CDS;protein_id=YP_002395913.1;Dbxref=Genbank:YP_002395913.1,GeneID:7138620;ID=cds1307;Name=YP_002395913.1 +NC_011744 S-MART CDS 1492762 1493904 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395915.1;Dbxref=Genbank:YP_002395915.1,GeneID:7138622;ID=cds1309;Name=YP_002395915.1--YP_002395914.1 +NC_011744 S-MART CDS 1494104 1494520 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395916.1;Dbxref=Genbank:YP_002395916.1,GeneID:7138623;ID=cds1310;Name=YP_002395916.1 +NC_011744 S-MART CDS 1494720 1495373 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395917.1;Dbxref=Genbank:YP_002395917.1,GeneID:7138624;ID=cds1311;Name=YP_002395917.1 +NC_011744 S-MART CDS 1495584 1496496 . - . product=Transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395919.1;Dbxref=Genbank:YP_002395919.1,GeneID:7138626;ID=cds1313;Name=YP_002395919.1--YP_002395918.1 +NC_011744 S-MART CDS 1496621 1497514 . + . product=Permease of the drug-metabolite transporter %28DMT%29 superfamily;transl_table=11;gbkey=CDS;protein_id=YP_002395920.1;Dbxref=Genbank:YP_002395920.1,GeneID:7138627;ID=cds1314;Name=YP_002395920.1 +NC_011744 S-MART CDS 1497610 1498893 . - . product=transmembrane transport proteins;transl_table=11;gbkey=CDS;protein_id=YP_002395921.1;Dbxref=Genbank:YP_002395921.1,GeneID:7138628;ID=cds1315;Name=YP_002395921.1 +NC_011744 S-MART CDS 1498985 1500721 . + . product=ABC transporter substrate-bindnig protein;transl_table=11;gbkey=CDS;protein_id=YP_002395922.1;Dbxref=Genbank:YP_002395922.1,GeneID:7138629;ID=cds1316;Name=YP_002395922.1 +NC_011744 S-MART CDS 1500830 1501533 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395924.1;Dbxref=Genbank:YP_002395924.1,GeneID:7138631;ID=cds1318;Name=YP_002395924.1--YP_002395923.1 +NC_011744 S-MART CDS 1501648 1502550 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395925.1;Dbxref=Genbank:YP_002395925.1,GeneID:7138632;ID=cds1319;Name=YP_002395925.1 +NC_011744 S-MART CDS 1502816 1503733 . + . product=Permease of the drug%2Fmetabolite transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395926.1;Dbxref=Genbank:YP_002395926.1,GeneID:7138633;ID=cds1320;Name=YP_002395926.1 +NC_011744 S-MART CDS 1503909 1504016 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395927.1;Dbxref=Genbank:YP_002395927.1,GeneID:7138634;ID=cds1321;Name=YP_002395927.1 +NC_011744 S-MART CDS 1503996 1506286 . + . product=Na%2B driven multidrug efflux pump;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395929.1;Dbxref=Genbank:YP_002395929.1,GeneID:7138636;ID=cds1323;Name=YP_002395929.1--YP_002395928.1 +NC_011744 S-MART CDS 1506389 1509041 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395933.1;Dbxref=Genbank:YP_002395933.1,GeneID:7138640;ID=cds1327;Name=YP_002395933.1--YP_002395932.1--YP_002395931.1--YP_002395930.1 +NC_011744 S-MART CDS 1509351 1510097 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395934.1;Dbxref=Genbank:YP_002395934.1,GeneID:7138641;ID=cds1328;Name=YP_002395934.1 +NC_011744 S-MART CDS 1510283 1512643 . - . product=ATP-dependent protease LA-related;transl_table=11;gbkey=CDS;protein_id=YP_002395935.1;Dbxref=Genbank:YP_002395935.1,GeneID:7138642;ID=cds1329;Name=YP_002395935.1 +NC_011744 S-MART CDS 1512884 1515019 . + . product=ABC transporter ATP-binding protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395937.1;Dbxref=Genbank:YP_002395937.1,GeneID:7138644;ID=cds1331;Name=YP_002395937.1--YP_002395936.1 +NC_011744 S-MART CDS 1515440 1517185 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;Note=Evidence 4 : Homologs of previously reported genes of unknown function;gbkey=CDS;protein_id=YP_002395939.1;Dbxref=Genbank:YP_002395939.1,GeneID:7138646;ID=cds1333;Name=YP_002395939.1--YP_002395938.1 +NC_011744 S-MART CDS 1516917 1517189 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395940.1;Dbxref=Genbank:YP_002395940.1,GeneID:7138647;ID=cds1334;Name=YP_002395940.1 +NC_011744 S-MART CDS 1517772 1518491 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395941.1;Dbxref=Genbank:YP_002395941.1,GeneID:7138648;ID=cds1335;Name=YP_002395941.1 +NC_011744 S-MART CDS 1518717 1523186 . - . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395944.1;Dbxref=Genbank:YP_002395944.1,GeneID:7138651;ID=cds1338;Name=YP_002395944.1--YP_002395943.1--YP_002395942.1 +NC_011744 S-MART CDS 1523140 1524087 . + . product=galactose mutarotase;transl_table=11;gbkey=CDS;protein_id=YP_002395945.1;Dbxref=Genbank:YP_002395945.1,GeneID:7138652;ID=cds1339;Name=YP_002395945.1 +NC_011744 S-MART CDS 1524161 1533348 . - . product=Transcriptional regulator;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395952.1;Dbxref=Genbank:YP_002395952.1,GeneID:7138659;ID=cds1346;Name=YP_002395952.1--YP_002395951.1--YP_002395950.1--YP_002395949.1--YP_002395948.1--YP_002395947.1--YP_0 +NC_011744 S-MART CDS 1533954 1535294 . - . product=maltoporin ABC transporter;transl_table=11;gbkey=CDS;protein_id=YP_002395953.1;Dbxref=Genbank:YP_002395953.1,GeneID:7138660;ID=cds1347;Name=YP_002395953.1 +NC_011744 S-MART CDS 1535471 1535671 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395954.1;Dbxref=Genbank:YP_002395954.1,GeneID:7138661;ID=cds1348;Name=YP_002395954.1 +NC_011744 S-MART CDS 1535668 1538657 . - . product=LysR family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395956.1;Dbxref=Genbank:YP_002395956.1,GeneID:7138663;ID=cds1350;Name=YP_002395956.1--YP_002395955.1 +NC_011744 S-MART CDS 1538905 1540599 . + . product=L-lactate permease;transl_table=11;gbkey=CDS;protein_id=YP_002395957.1;Dbxref=Genbank:YP_002395957.1,GeneID:7138664;ID=cds1351;Name=YP_002395957.1 +NC_011744 S-MART CDS 1540898 1542046 . + . product=L-lactate dehydrogenase;transl_table=11;Note=flavin mononucleotide-dependent dehydrogenase%3B functions in aerobic respiration and also has a role in anaerobic nitrate respiration;gbkey=CDS;protein_id=YP_002395958.1;Dbxref=Genbank:YP_002395958.1,GeneID:7138665;ID=cds1352;Name=YP_002395958.1 +NC_011744 S-MART CDS 1542475 1545714 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395960.1;Dbxref=Genbank:YP_002395960.1,GeneID:7138667;ID=cds1354;Name=YP_002395960.1--YP_002395959.1 +NC_011744 S-MART CDS 1545470 1546605 . - . product=AraC family transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395962.1;Dbxref=Genbank:YP_002395962.1,GeneID:7138669;ID=cds1356;Name=YP_002395962.1--YP_002395961.1 +NC_011744 S-MART CDS 1546721 1547869 . + . product=Transcriptional regulatory protein;transl_table=11;gbkey=CDS;protein_id=YP_002395963.1;Dbxref=Genbank:YP_002395963.1,GeneID:7138670;ID=cds1357;Name=YP_002395963.1 +NC_011744 S-MART CDS 1548184 1549173 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395964.1;Dbxref=Genbank:YP_002395964.1,GeneID:7138671;ID=cds1358;Name=YP_002395964.1 +NC_011744 S-MART CDS 1549641 1550528 . + . product=acetyltransferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395966.1;Dbxref=Genbank:YP_002395966.1,GeneID:7138673;ID=cds1360;Name=YP_002395966.1--YP_002395965.1 +NC_011744 S-MART CDS 1550545 1553912 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395968.1;Dbxref=Genbank:YP_002395968.1,GeneID:7138675;ID=cds1362;Name=YP_002395968.1--YP_002395967.1 +NC_011744 S-MART CDS 1554214 1555437 . + . product=diguanylate cyclase;transl_table=11;gbkey=CDS;protein_id=YP_002395969.1;Dbxref=Genbank:YP_002395969.1,GeneID:7138676;ID=cds1363;Name=YP_002395969.1 +NC_011744 S-MART CDS 1555434 1555766 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395970.1;Dbxref=Genbank:YP_002395970.1,GeneID:7138677;ID=cds1364;Name=YP_002395970.1 +NC_011744 S-MART CDS 1555874 1556746 . + . product=pirin;transl_table=11;gbkey=CDS;protein_id=YP_002395971.1;Dbxref=Genbank:YP_002395971.1,GeneID:7138678;ID=cds1365;Name=YP_002395971.1 +NC_011744 S-MART CDS 1556978 1557259 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395972.1;Dbxref=Genbank:YP_002395972.1,GeneID:7138679;ID=cds1366;Name=YP_002395972.1 +NC_011744 S-MART CDS 1557643 1558107 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395973.1;Dbxref=Genbank:YP_002395973.1,GeneID:7138680;ID=cds1367;Name=YP_002395973.1 +NC_011744 S-MART CDS 1558509 1561049 . + . product=chitinase;transl_table=11;gbkey=CDS;protein_id=YP_002395974.1;Dbxref=Genbank:YP_002395974.1,GeneID:7138681;ID=cds1368;Name=YP_002395974.1 +NC_011744 S-MART CDS 1561183 1562055 . - . product=hydrolase or acyltransferase;transl_table=11;gbkey=CDS;protein_id=YP_002395975.1;Dbxref=Genbank:YP_002395975.1,GeneID:7138682;ID=cds1369;Name=YP_002395975.1 +NC_011744 S-MART CDS 1562226 1562348 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395976.1;Dbxref=Genbank:YP_002395976.1,GeneID:7138683;ID=cds1370;Name=YP_002395976.1 +NC_011744 S-MART CDS 1562271 1562864 . - . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395977.1;Dbxref=Genbank:YP_002395977.1,GeneID:7138684;ID=cds1371;Name=YP_002395977.1 +NC_011744 S-MART CDS 1563025 1565145 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395979.1;Dbxref=Genbank:YP_002395979.1,GeneID:7138686;ID=cds1373;Name=YP_002395979.1--YP_002395978.1 +NC_011744 S-MART CDS 1565304 1566143 . - . product=AraC family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395980.1;Dbxref=Genbank:YP_002395980.1,GeneID:7138687;ID=cds1374;Name=YP_002395980.1 +NC_011744 S-MART CDS 1566254 1566730 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395981.1;Dbxref=Genbank:YP_002395981.1,GeneID:7138688;ID=cds1375;Name=YP_002395981.1 +NC_011744 S-MART CDS 1566976 1567611 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395982.1;Dbxref=Genbank:YP_002395982.1,GeneID:7138689;ID=cds1376;Name=YP_002395982.1 +NC_011744 S-MART CDS 1567670 1568595 . - . product=glutathione S-transferase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395984.1;Dbxref=Genbank:YP_002395984.1,GeneID:7138691;ID=cds1378;Name=YP_002395984.1--YP_002395983.1 +NC_011744 S-MART ncRNA 1568849 1569184 . + . ncrna_class=other;product=CsrB;Note=regulatory RNA bound by CsrA;gbkey=ncRNA;Dbxref=GeneID:7138692;ID=rna27;Name=rna27 +NC_011744 S-MART CDS 1569243 1570447 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395986.1;Dbxref=Genbank:YP_002395986.1,GeneID:7138693;ID=cds1380;Name=YP_002395986.1--YP_002395985.1 +NC_011744 S-MART CDS 1570873 1572312 . + . product=Na%2B%2FH%2B antiporter NhaD;transl_table=11;gbkey=CDS;protein_id=YP_002395987.1;Dbxref=Genbank:YP_002395987.1,GeneID:7138694;ID=cds1381;Name=YP_002395987.1 +NC_011744 S-MART CDS 1572314 1572697 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395988.1;Dbxref=Genbank:YP_002395988.1,GeneID:7138695;ID=cds1382;Name=YP_002395988.1 +NC_011744 S-MART CDS 1572896 1574837 . - . product=3-methyladenine DNA glycosylase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395990.1;Dbxref=Genbank:YP_002395990.1,GeneID:7138697;ID=cds1384;Name=YP_002395990.1--YP_002395989.1 +NC_011744 S-MART CDS 1575074 1575277 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395991.1;Dbxref=Genbank:YP_002395991.1,GeneID:7138698;ID=cds1385;Name=YP_002395991.1 +NC_011744 S-MART CDS 1575488 1576381 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002395992.1;Dbxref=Genbank:YP_002395992.1,GeneID:7138699;ID=cds1386;Name=YP_002395992.1 +NC_011744 S-MART CDS 1576535 1576888 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395993.1;Dbxref=Genbank:YP_002395993.1,GeneID:7138700;ID=cds1387;Name=YP_002395993.1 +NC_011744 S-MART CDS 1577357 1578157 . + . product=glucosamine-6-phosphate deaminase;transl_table=11;Note=catalyzes the reversible formation of fructose 6-phosphate from glucosamine 6-phosphate;gbkey=CDS;protein_id=YP_002395994.1;Dbxref=Genbank:YP_002395994.1,GeneID:7138701;ID=cds1388;Name=YP_002395994.1 +NC_011744 S-MART CDS 1578534 1579400 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002395995.1;Dbxref=Genbank:YP_002395995.1,GeneID:7138702;ID=cds1389;Name=YP_002395995.1 +NC_011744 S-MART CDS 1579724 1580618 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002395997.1;Dbxref=Genbank:YP_002395997.1,GeneID:7138704;ID=cds1391;Name=YP_002395997.1--YP_002395996.1 +NC_011744 S-MART CDS 1580865 1583707 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396000.1;Dbxref=Genbank:YP_002396000.1,GeneID:7138707;ID=cds1394;Name=YP_002396000.1--YP_002395999.1--YP_002395998.1 +NC_011744 S-MART CDS 1583744 1584970 . - . product=Sodium%2Fglutamate symporter;transl_table=11;gbkey=CDS;protein_id=YP_002396001.1;Dbxref=Genbank:YP_002396001.1,GeneID:7138708;ID=cds1395;Name=YP_002396001.1 +NC_011744 S-MART CDS 1585287 1585643 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396002.1;Dbxref=Genbank:YP_002396002.1,GeneID:7138709;ID=cds1396;Name=YP_002396002.1 +NC_011744 S-MART CDS 1585831 1589052 . - . product=O-antigen ligase;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396004.1;Dbxref=Genbank:YP_002396004.1,GeneID:7138711;ID=cds1398;Name=YP_002396004.1--YP_002396003.1 +NC_011744 S-MART CDS 1589312 1589704 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396005.1;Dbxref=Genbank:YP_002396005.1,GeneID:7138712;ID=cds1399;Name=YP_002396005.1 +NC_011744 S-MART CDS 1589995 1600872 . + . product=hypothetical protein;nbElements=13.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396018.1;Dbxref=Genbank:YP_002396018.1,GeneID:7138725;ID=cds1412;Name=YP_002396018.1--YP_002396017.1--YP_002396016.1--YP_002396015.1--YP_002396014.1--YP_002396013.1--YP_0 +NC_011744 S-MART CDS 1600869 1601141 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396019.1;Dbxref=Genbank:YP_002396019.1,GeneID:7138726;ID=cds1413;Name=YP_002396019.1 +NC_011744 S-MART CDS 1601203 1601466 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396020.1;Dbxref=Genbank:YP_002396020.1,GeneID:7138727;ID=cds1414;Name=YP_002396020.1 +NC_011744 S-MART CDS 1601705 1602732 . + . product=RNA-binding proteins;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396022.1;Dbxref=Genbank:YP_002396022.1,GeneID:7138729;ID=cds1416;Name=YP_002396022.1--YP_002396021.1 +NC_011744 S-MART CDS 1602866 1603210 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396023.1;Dbxref=Genbank:YP_002396023.1,GeneID:7138730;ID=cds1417;Name=YP_002396023.1 +NC_011744 S-MART CDS 1603005 1603073 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396024.1;Dbxref=Genbank:YP_002396024.1,GeneID:7138731;ID=cds1418;Name=YP_002396024.1 +NC_011744 S-MART CDS 1603433 1605788 . - . product=hypothetical protein;nbElements=4.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396028.1;Dbxref=Genbank:YP_002396028.1,GeneID:7138735;ID=cds1422;Name=YP_002396028.1--YP_002396027.1--YP_002396026.1--YP_002396025.1 +NC_011744 S-MART CDS 1605920 1607398 . + . product=PTS permease for N-acetylglucosamine and glucose;transl_table=11;gbkey=CDS;protein_id=YP_002396029.1;Dbxref=Genbank:YP_002396029.1,GeneID:7138736;ID=cds1423;Name=YP_002396029.1 +NC_011744 S-MART CDS 1607784 1608212 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396030.1;Dbxref=Genbank:YP_002396030.1,GeneID:7138737;ID=cds1424;Name=YP_002396030.1 +NC_011744 S-MART CDS 1608380 1608862 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396032.1;Dbxref=Genbank:YP_002396032.1,GeneID:7138739;ID=cds1426;Name=YP_002396032.1--YP_002396031.1 +NC_011744 S-MART CDS 1609169 1611113 . - . product=DNA-binding response regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396034.1;Dbxref=Genbank:YP_002396034.1,GeneID:7138741;ID=cds1428;Name=YP_002396034.1--YP_002396033.1 +NC_011744 S-MART CDS 1611320 1612255 . - . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396035.1;Dbxref=Genbank:YP_002396035.1,GeneID:7138742;ID=cds1429;Name=YP_002396035.1 +NC_011744 S-MART CDS 1612372 1615488 . + . product=NADH:flavin oxidoreductase;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396038.1;Dbxref=Genbank:YP_002396038.1,GeneID:7138745;ID=cds1432;Name=YP_002396038.1--YP_002396037.1--YP_002396036.1 +NC_011744 S-MART CDS 1615785 1616651 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396039.1;Dbxref=Genbank:YP_002396039.1,GeneID:7138746;ID=cds1433;Name=YP_002396039.1 +NC_011744 S-MART CDS 1616884 1619609 . - . product=Protein export;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396041.1;Dbxref=Genbank:YP_002396041.1,GeneID:7138748;ID=cds1435;Name=YP_002396041.1--YP_002396040.1 +NC_011744 S-MART CDS 1619882 1620406 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396042.1;Dbxref=Genbank:YP_002396042.1,GeneID:7138749;ID=cds1436;Name=YP_002396042.1 +NC_011744 S-MART CDS 1620650 1623430 . - . product=Zn-dependent protease;transl_table=11;gbkey=CDS;protein_id=YP_002396043.1;Dbxref=Genbank:YP_002396043.1,GeneID:7138750;ID=cds1437;Name=YP_002396043.1 +NC_011744 S-MART CDS 1623757 1626519 . - . product=zinc protease;transl_table=11;gbkey=CDS;protein_id=YP_002396044.1;Dbxref=Genbank:YP_002396044.1,GeneID:7138751;ID=cds1438;Name=YP_002396044.1 +NC_011744 S-MART CDS 1626732 1633492 . - . product=hypothetical protein;nbElements=7.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396051.1;Dbxref=Genbank:YP_002396051.1,GeneID:7138758;ID=cds1445;Name=YP_002396051.1--YP_002396050.1--YP_002396049.1--YP_002396048.1--YP_002396047.1--YP_002396046.1--YP_0 +NC_011744 S-MART CDS 1633846 1634775 . + . product=LysR family transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396052.1;Dbxref=Genbank:YP_002396052.1,GeneID:7138759;ID=cds1446;Name=YP_002396052.1 +NC_011744 S-MART CDS 1634996 1637844 . + . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396055.1;Dbxref=Genbank:YP_002396055.1,GeneID:7138762;ID=cds1449;Name=YP_002396055.1--YP_002396053.1 +NC_011744 S-MART CDS 1636980 1637186 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396054.1;Dbxref=Genbank:YP_002396054.1,GeneID:7138761;ID=cds1448;Name=YP_002396054.1 +NC_011744 S-MART CDS 1637949 1638386 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396056.1;Dbxref=Genbank:YP_002396056.1,GeneID:7138763;ID=cds1450;Name=YP_002396056.1 +NC_011744 S-MART CDS 1638514 1639428 . + . product=Transcriptional regulator;transl_table=11;gbkey=CDS;protein_id=YP_002396057.1;Dbxref=Genbank:YP_002396057.1,GeneID:7138764;ID=cds1451;Name=YP_002396057.1 +NC_011744 S-MART CDS 1639627 1641237 . - . product=Methyl-accepting chemotaxis protein;transl_table=11;gbkey=CDS;protein_id=YP_002396058.1;Dbxref=Genbank:YP_002396058.1,GeneID:7138765;ID=cds1452;Name=YP_002396058.1 +NC_011744 S-MART CDS 1641680 1643497 . - . product=Transcriptional regulator;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396060.1;Dbxref=Genbank:YP_002396060.1,GeneID:7138767;ID=cds1454;Name=YP_002396060.1--YP_002396059.1 +NC_011744 S-MART CDS 1643555 1643806 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396061.1;Dbxref=Genbank:YP_002396061.1,GeneID:7138768;ID=cds1455;Name=YP_002396061.1 +NC_011744 S-MART CDS 1643986 1645065 . - . product=hypothetical protein;nbElements=2.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396063.1;Dbxref=Genbank:YP_002396063.1,GeneID:7138770;ID=cds1457;Name=YP_002396063.1--YP_002396062.1 +NC_011744 S-MART CDS 1645252 1646514 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396064.1;Dbxref=Genbank:YP_002396064.1,GeneID:7138771;ID=cds1458;Name=YP_002396064.1 +NC_011744 S-MART CDS 1646662 1649029 . - . product=phenylalanine 4-monooxygenase;nbElements=3.000000;transl_table=11;Note=phenylalanine 4-hydroxylase%3B phenylalanine 4-hydroxylase%3B catalyzes the formation of 4a-hydroxytetrahydrobiopterin and tyrosine from phenylalanine and tetrahydrobiopterin;gbkey=CDS;protein_id=YP_002396067.1;Dbxref=Genbank:YP_002396067.1,GeneID:7138774;ID=cds1461;Name=YP_002396067.1--YP_002396066.1--YP_002396065.1 +NC_011744 S-MART CDS 1649229 1651280 . + . product=acetoacetyl-CoA synthetase;transl_table=11;Note=AcsA%3B in Sinorhizobium meliloti this enzyme is required for acetoacetate activation%3B similar to acetyl-CoA synthase;gbkey=CDS;protein_id=YP_002396068.1;Dbxref=Genbank:YP_002396068.1,GeneID:7138775;ID=cds1462;Name=YP_002396068.1 +NC_011744 S-MART CDS 1651672 1657718 . + . product=hypothetical protein;nbElements=6.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396074.1;Dbxref=Genbank:YP_002396074.1,GeneID:7138781;ID=cds1468;Name=YP_002396074.1--YP_002396073.1--YP_002396072.1--YP_002396071.1--YP_002396070.1--YP_002396069.1 +NC_011744 S-MART CDS 1658632 1659561 . + . product=carbamate kinase;transl_table=11;Note=reversible synthesis of carbamate and ATP from carbamoyl phosphate and ADP;gbkey=CDS;protein_id=YP_002396075.1;Dbxref=Genbank:YP_002396075.1,GeneID:7138782;ID=cds1469;Name=YP_002396075.1 +NC_011744 S-MART CDS 1659797 1663769 . - . product=4-hydroxyphenylpyruvate dioxygenase;nbElements=4.000000;transl_table=11;Note=Evidence 2a : Function of homologous gene experimentally demonstrated in another organism%3B PubMedId : 8112844%3B Product type e : enzyme;gbkey=CDS;protein_id=YP_002396079.1;Dbxref=Genbank:YP_002396079.1,GeneID:7138786;ID=cds1473;Name=YP_002396079.1--YP_002396078.1--YP_002396077.1--YP_002396076.1 +NC_011744 S-MART CDS 1663853 1664035 . + . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396080.1;Dbxref=Genbank:YP_002396080.1,GeneID:7138787;ID=cds1474;Name=YP_002396080.1 +NC_011744 S-MART CDS 1664130 1664789 . - . product=phosphoserine phosphatase;transl_table=11;gbkey=CDS;protein_id=YP_002396081.1;Dbxref=Genbank:YP_002396081.1,GeneID:7138788;ID=cds1475;Name=YP_002396081.1 +NC_011744 S-MART CDS 1665142 1667568 . - . product=two-component sensor;transl_table=11;gbkey=CDS;protein_id=YP_002396082.1;Dbxref=Genbank:YP_002396082.1,GeneID:7138789;ID=cds1476;Name=YP_002396082.1 +NC_011744 S-MART CDS 1667657 1668415 . + . product=amino acid ABC transporter substrate-binding protein;transl_table=11;gbkey=CDS;protein_id=YP_002396083.1;Dbxref=Genbank:YP_002396083.1,GeneID:7138790;ID=cds1477;Name=YP_002396083.1 +NC_011744 S-MART CDS 1668625 1669185 . - . product=GTP cyclohydrolase II;transl_table=11;gbkey=CDS;protein_id=YP_002396084.1;Dbxref=Genbank:YP_002396084.1,GeneID:7138791;ID=cds1478;Name=YP_002396084.1 +NC_011744 S-MART CDS 1669376 1669699 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396085.1;Dbxref=Genbank:YP_002396085.1,GeneID:7138792;ID=cds1479;Name=YP_002396085.1 +NC_011744 S-MART CDS 1669923 1672240 . + . product=hypothetical protein;nbElements=3.000000;transl_table=11;gbkey=CDS;protein_id=YP_002396088.1;Dbxref=Genbank:YP_002396088.1,GeneID:7138795;ID=cds1482;Name=YP_002396088.1--YP_002396087.1--YP_002396086.1 +NC_011744 S-MART CDS 1672182 1672271 . - . product=hypothetical protein;transl_table=11;gbkey=CDS;protein_id=YP_002396089.1;Dbxref=Genbank:YP_002396089.1,GeneID:7138796;ID=cds1483;Name=YP_002396089.1 +NC_011744 S-MART CDS 1672683 1674662 . - . product=RctB protein;transl_table=11;gbkey=CDS;protein_id=YP_002396090.1;Dbxref=Genbank:YP_002396090.1,GeneID:7138797;ID=cds1484;Name=YP_002396090.1